Changeset 47498 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jul 31, 2013 5:36:16 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/solaudio.c
r44528 r47498 140 140 * otherwise else we fallback to default. 141 141 */ 142 c onst char *pszAudioDev = RTEnvDupEx(RTENV_DEFAULT, "AUDIODEV");142 char *pszAudioDev = RTEnvDupEx(RTENV_DEFAULT, "AUDIODEV"); 143 143 if (!pszAudioDev) 144 144 pszAudioDev = RTStrDup("/dev/audio"); … … 408 408 solaudioVoiceOut *pSol = (solaudioVoiceOut *) hw; 409 409 int csLive, csDecr, csSamples, csToWrite, csAvail; 410 size_t cbAvail, cbToWrite, cbWritten; 410 size_t cbAvail, cbToWrite; 411 ssize_t cbWritten; 411 412 uint8_t *pu8Dst; 412 413 st_sample_t *psSrc;
Note:
See TracChangeset
for help on using the changeset viewer.