Changeset 68736 in vbox for trunk/src/VBox/Main/src-client/DrvAudioVideoRec.cpp
- Timestamp:
- Sep 13, 2017 9:23:52 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DrvAudioVideoRec.cpp
r68734 r68736 322 322 } 323 323 324 int rc ;324 int rc = VINF_SUCCESS; 325 325 326 326 try … … 331 331 { 332 332 pSink->Con.Main.pConsole = pThis->pConsole; 333 334 rc = VINF_SUCCESS;335 333 break; 336 334 } … … 344 342 char szFile[RTPATH_MAX]; 345 343 if (RTStrPrintf(szFile, sizeof(szFile), "%s%s", 346 VBOX_AUDIO_DEBUG_DUMP_PCM_DATA_PATH, "DrvAudioVideoRec.webm" /** @todo Make this configurable. */))344 VBOX_AUDIO_DEBUG_DUMP_PCM_DATA_PATH, "DrvAudioVideoRec.webm")) 347 345 { 348 346 /** @todo Add sink name / number to file name. */ … … 384 382 } 385 383 } 386 #ifdef VBOX_AUDIO_DEBUG_DUMP_PCM_DATA /* Fixes "unreachable code" in MSVC. */387 384 catch (std::bad_alloc) 388 385 { 389 386 rc = VERR_NO_MEMORY; 390 387 } 391 #endif392 388 393 389 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.