~audio-recorder/audio-recorder/trunk

« back to all changes in this revision

Viewing changes to src/audio-sources.h

  • Committer: Osmo Antero
  • Date: 2015-02-06 14:13:34 UTC
  • Revision ID: osmoma@gmail.com-20150206141334-ifaeqyan4ygxo49g
Updated README and INSTALL files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    COMM_PROGRAM = 0x20,
31
31
 
32
32
    // User-defined group of devices. User can record from several inputs (eg. record from several microphones when singing karaoke).
33
 
    USER_DEFINED = 0x40   
 
33
    USER_DEFINED = 0x40
34
34
};
35
35
 
36
36
typedef struct {
44
44
    gchar *description;
45
45
 
46
46
    // Icon name for this device or source type
47
 
    gchar *icon_name;     
 
47
    gchar *icon_name;
48
48
} DeviceItem;
49
49
 
50
50
DeviceItem *device_item_create(gchar *id, gchar *description);
58
58
    COL_DEVICE_TYPE,
59
59
 
60
60
    // Device id or DBus id for media players/skype, hidden column
61
 
    COL_DEVICE_ID,  
 
61
    COL_DEVICE_ID,
62
62
 
63
63
    // Icon for device or media players/skype, visible
64
 
    COL_DEVICE_ICON, 
 
64
    COL_DEVICE_ICON,
65
65
 
66
66
    // Description device or media players/skype, visible column
67
67
    COL_DEVICE_DESCR,
68
68
 
69
69
    // Number of columns in the combobox
70
 
    N_DEVICE_COLUMNS  
 
70
    N_DEVICE_COLUMNS
71
71
};
72
72
 
73
73
gboolean filter_for_sink_dev(DeviceItem *item);