Changeset 77814 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Mar 20, 2019 6:38:04 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r77370 r77814 10139 10139 &pVM, NULL); 10140 10140 alock.acquire(); 10141 10142 #ifdef VBOX_WITH_AUDIO_VRDE10143 /* Attach the VRDE audio driver. */10144 IVRDEServer *pVRDEServer = pConsole->i_getVRDEServer();10145 if (pVRDEServer)10146 {10147 BOOL fVRDEEnabled = FALSE;10148 rc = pVRDEServer->COMGETTER(Enabled)(&fVRDEEnabled);10149 AssertComRCReturnVoid(rc);10150 10151 if ( fVRDEEnabled10152 && pConsole->mAudioVRDE)10153 pConsole->mAudioVRDE->doAttachDriverViaEmt(pConsole->mpUVM, &alock);10154 }10155 #endif10156 10157 /* Enable client connections to the VRDP server. */10158 pConsole->i_consoleVRDPServer()->EnableConnections();10159 10160 #ifdef VBOX_WITH_RECORDING10161 ComPtr<IRecordingSettings> recordingSettings;10162 rc = pConsole->mMachine->COMGETTER(RecordingSettings)(recordingSettings.asOutParam());10163 AssertComRCReturnVoid(rc);10164 10165 BOOL fRecordingEnabled;10166 rc = recordingSettings->COMGETTER(Enabled)(&fRecordingEnabled);10167 AssertComRCReturnVoid(rc);10168 10169 if (fRecordingEnabled)10170 {10171 int vrc2 = pConsole->i_recordingEnable(fRecordingEnabled, &alock);10172 if (RT_SUCCESS(vrc2))10173 {10174 fireRecordingChangedEvent(pConsole->mEventSource);10175 }10176 else10177 LogRel(("Recording: Failed with %Rrc on VM power up\n", vrc2));10178 10179 /** Note: Do not use vrc here, as starting the video recording isn't critical to10180 * powering up the VM. */10181 }10182 #endif10183 10184 10141 if (RT_SUCCESS(vrc)) 10185 10142 { … … 10241 10198 } 10242 10199 10200 #ifdef VBOX_WITH_AUDIO_VRDE 10201 /* 10202 * Attach the VRDE audio driver. 10203 */ 10204 if (pConsole->i_getVRDEServer()) 10205 { 10206 BOOL fVRDEEnabled = FALSE; 10207 rc = pConsole->i_getVRDEServer()->COMGETTER(Enabled)(&fVRDEEnabled); 10208 AssertComRCBreak(rc, RT_NOTHING); 10209 10210 if ( fVRDEEnabled 10211 && pConsole->mAudioVRDE) 10212 pConsole->mAudioVRDE->doAttachDriverViaEmt(pConsole->mpUVM, &alock); 10213 } 10214 #endif 10215 10216 /* 10217 * Enable client connections to the VRDP server. 10218 */ 10219 pConsole->i_consoleVRDPServer()->EnableConnections(); 10220 10221 #ifdef VBOX_WITH_RECORDING 10222 /* 10223 * Enable recording if configured. 10224 */ 10225 BOOL fRecordingEnabled = FALSE; 10226 { 10227 ComPtr<IRecordingSettings> ptrRecordingSettings; 10228 rc = pConsole->mMachine->COMGETTER(RecordingSettings)(ptrRecordingSettings.asOutParam()); 10229 AssertComRCBreak(rc, RT_NOTHING); 10230 10231 rc = ptrRecordingSettings->COMGETTER(Enabled)(&fRecordingEnabled); 10232 AssertComRCBreak(rc, RT_NOTHING); 10233 } 10234 if (fRecordingEnabled) 10235 { 10236 vrc = pConsole->i_recordingEnable(fRecordingEnabled, &alock); 10237 if (RT_SUCCESS(vrc)) 10238 fireRecordingChangedEvent(pConsole->mEventSource); 10239 else 10240 { 10241 LogRel(("Recording: Failed with %Rrc on VM power up\n", vrc)); 10242 vrc = VINF_SUCCESS; /* do not fail with broken recording */ 10243 } 10244 } 10245 #endif 10246 10243 10247 /* release the lock before a lengthy operation */ 10244 10248 alock.release(); … … 10254 10258 } 10255 10259 10256 /* Load saved state? */ 10260 /* 10261 * Load saved state? 10262 */ 10257 10263 if (pTask->mSavedStateFile.length()) 10258 10264 { … … 10263 10269 Console::i_stateProgressCallback, 10264 10270 static_cast<IProgress *>(pTask->mProgress)); 10265 10266 10271 if (RT_SUCCESS(vrc)) 10267 10272 {
Note:
See TracChangeset
for help on using the changeset viewer.