Changeset 70036 in vbox
- Timestamp:
- Dec 8, 2017 4:52:18 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119573
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r70035 r70036 5518 5518 5519 5519 const PVIDEORECCFG pCfg = pDisplay->i_videoRecGetConfig(); 5520 # ifdef VBOX_WITH_AUDIO_VIDEOREC 5520 5521 const unsigned uLUN = pCfg->Audio.uLUN; /* Get the currently configured LUN. */ 5521 5522 # else 5523 const unsigned uLUN = 0; 5524 # endif 5522 5525 int vrc = VMR3ReqCallWaitU(ptrVM.rawUVM(), VMCPUID_ANY /*idDstCpu*/, 5523 5526 (PFNRT)Display::i_videoRecConfigure, 4, 5524 pDisplay, pCfg, true /* fAttachDetach */, & pCfg->Audio.uLUN);5527 pDisplay, pCfg, true /* fAttachDetach */, &uLUN); 5525 5528 if (RT_SUCCESS(vrc)) 5526 5529 { 5527 5530 /* Make sure to acquire the lock again after we're done running in EMT. */ 5528 5531 alock.acquire(); 5529 5530 /* We don't support dynamic LUNs for this stuff yet. */5531 Assert(uLUN == pCfg->Audio.uLUN);5532 5532 5533 5533 if (!mDisplay->i_videoRecStarted()) -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r70035 r70036 2645 2645 } /* while */ 2646 2646 2647 unsigned uLUN = *puLUN; 2648 2647 2649 #ifdef VBOX_WITH_AUDIO_VIDEOREC 2648 2650 ComPtr<IAudioAdapter> audioAdapter; … … 2651 2653 2652 2654 unsigned uInstance = 0; 2653 unsigned uLUN = *puLUN;2654 2655 2655 2656 Utf8Str strAudioDev = pThis->mParent->i_getAudioAdapterDeviceName(audioAdapter);
Note:
See TracChangeset
for help on using the changeset viewer.