Changeset 54399 in vbox
- Timestamp:
- Feb 23, 2015 7:10:54 PM (10 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixBuffer.cpp
r54230 r54399 38 38 # include <VBox/log.h> 39 39 #else 40 # define AUDMIXBUF_LOG(x) 40 # define AUDMIXBUF_LOG(x) do {} while (0) 41 41 #endif 42 42 -
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r54230 r54399 287 287 288 288 default: 289 LogFlowFunc(("Bad value tag for option `%s' - %d\n", 290 opt->name, opt->tag));289 LogFlowFunc(("Bad value tag for option `%s' - %d\n", opt->name, opt->tag)); 290 fUseDefault = false; 291 291 break; 292 292 } -
trunk/src/VBox/Devices/Audio/DrvHostOSSAudio.cpp
r54388 r54399 359 359 #endif 360 360 361 int rc, mask; 361 int rc = VINF_SUCCESS; 362 int mask; 362 363 switch (enmStreamCmd) 363 364 { … … 370 371 if (ioctl(pThisStrmOut->hFile, SNDCTL_DSP_SETTRIGGER, &mask) < 0) 371 372 { 372 LogRel(("OSS: Failed to enable output stream: %s\n", 373 strerror(errno))); 373 LogRel(("OSS: Failed to enable output stream: %s\n", strerror(errno))); 374 374 rc = RTErrConvertFromErrno(errno); 375 375 } … … 383 383 if (ioctl(pThisStrmOut->hFile, SNDCTL_DSP_SETTRIGGER, &mask) < 0) 384 384 { 385 LogRel(("OSS: Failed to disable output stream: %s\n", 386 strerror(errno))); 385 LogRel(("OSS: Failed to disable output stream: %s\n", strerror(errno))); 387 386 rc = RTErrConvertFromErrno(errno); 388 387 } … … 781 780 POSSAUDIOSTREAMOUT pThisStrmOut = (POSSAUDIOSTREAMOUT)pHstStrmOut; 782 781 783 int rc ;782 int rc = VINF_SUCCESS; 784 783 uint32_t cbReadTotal = 0; 785 784 count_info cntinfo;
Note:
See TracChangeset
for help on using the changeset viewer.