Changeset 674
- Timestamp:
- 12/17/09 17:36:44 (2 years ago)
- Files:
-
- sweep/trunk/src/driver.h (modified) (1 diff)
- sweep/trunk/src/driver_alsa.c (modified) (2 diffs)
- sweep/trunk/src/driver_oss.c (modified) (2 diffs)
- sweep/trunk/src/driver_pulseaudio.c (modified) (2 diffs)
- sweep/trunk/src/driver_solaris.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sweep/trunk/src/driver.h
r472 r674 40 40 41 41 struct _sw_driver { 42 const char * name; 42 43 GList * (*get_names) (void); 43 44 sw_handle * (*open) (int cueing, int flags); sweep/trunk/src/driver_alsa.c
r485 r674 447 447 448 448 static sw_driver _driver_alsa = { 449 "ALSA", 449 450 alsa_get_names, 450 451 alsa_device_open, … … 466 467 467 468 static sw_driver _driver_alsa = { 468 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 469 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 469 470 }; 470 471 sweep/trunk/src/driver_oss.c
r472 r674 434 434 435 435 static sw_driver _driver_oss = { 436 "OSS", 436 437 oss_get_names, 437 438 open_dev_dsp, … … 453 454 454 455 static sw_driver _driver_oss = { 455 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 456 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 456 457 }; 457 458 sweep/trunk/src/driver_pulseaudio.c
r664 r674 213 213 214 214 static sw_driver _driver_pulseaudio = { 215 "PulseAudio", 215 216 pulse_get_names, 216 217 pulse_open, … … 232 233 233 234 static sw_driver _driver_pulseaudio = { 234 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 235 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 235 236 }; 236 237 sweep/trunk/src/driver_solaris.c
r472 r674 116 116 117 117 static sw_driver _driver_solaris = { 118 "Solaris", 118 119 NULL, /* config */ 119 120 open_dev_audio, … … 133 134 134 135 static sw_driver _driver_solaris = { 135 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 136 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 136 137 }; 137 138
