Changeset 6067 in vbox
- Timestamp:
- Dec 14, 2007 4:24:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/audio.c
r6064 r6067 1492 1492 HWVoiceIn *hwi = NULL; 1493 1493 1494 while ((hwo = audio_pcm_hw_find_any_enabled_out (s, hwo))) { 1494 /* VBox change: audio_pcm_hw_find_any_enabled_out => audio_pcm_hw_find_any_out */ 1495 while ((hwo = audio_pcm_hw_find_any_out (s, hwo))) { 1495 1496 SWVoiceCap *sc; 1496 1497 … … 1508 1509 } 1509 1510 1510 while ((hwi = audio_pcm_hw_find_any_enabled_in (s, hwi))) { 1511 /* VBox change: audio_pcm_hw_find_any_enabled_in => audio_pcm_hw_find_any_in */ 1512 while ((hwi = audio_pcm_hw_find_any_in (s, hwi))) { 1511 1513 hwi->pcm_ops->ctl_in (hwi, VOICE_DISABLE); 1512 1514 hwi->pcm_ops->fini_in (hwi);
Note:
See TracChangeset
for help on using the changeset viewer.