Changeset 70036 in vbox for trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
- Timestamp:
- Dec 8, 2017 4:52:18 PM (7 years ago)
- File:
-
- 1 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())
Note:
See TracChangeset
for help on using the changeset viewer.