Changeset 54811 in vbox
- Timestamp:
- Mar 17, 2015 1:11:38 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp
r54491 r54811 836 836 snd_pcm_sframes_t cRead; 837 837 838 while (cbToRead) 838 while ( cbToRead 839 && RT_SUCCESS(rc)) 839 840 { 840 841 cToRead = RT_MIN(AUDIOMIXBUF_B2S(&pHstStrmIn->MixBuf, cbToRead), … … 854 855 855 856 case -EAGAIN: 857 /* 858 * Don't set error here because EAGAIN means there are no ffurther rames 859 * available at the moment, try later. As we might have read some frames 860 * already the need to be processed. 861 */ 862 cbToRead = 0; 856 863 break; 857 864
Note:
See TracChangeset
for help on using the changeset viewer.