Changeset 75344 in vbox for trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
- Timestamp:
- Nov 9, 2018 9:17:06 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r75341 r75344 63 63 #endif 64 64 #ifdef VBOX_WITH_AUDIO_VIDEOREC 65 # include "DrvAudio VideoRec.h"65 # include "DrvAudioRec.h" 66 66 #endif 67 67 #include "Nvram.h" … … 84 84 85 85 #ifdef VBOX_WITH_VIDEOREC 86 # include " VideoRec.h"86 # include "Recording.h" 87 87 #endif 88 88 … … 5621 5621 if (RT_BOOL(fEnable) != fIsEnabled) 5622 5622 { 5623 LogRel((" VideoRec: %s\n", fEnable ? "Enabling" : "Disabling"));5623 LogRel(("Recording: %s\n", fEnable ? "Enabling" : "Disabling")); 5624 5624 5625 5625 pDisplay->i_videoRecInvalidate(); … … 5657 5657 5658 5658 if (RT_FAILURE(vrc)) 5659 LogRel((" VideoRec: %s failed with %Rrc\n", fEnable ? "Enabling" : "Disabling", vrc));5659 LogRel(("Recording: %s failed with %Rrc\n", fEnable ? "Enabling" : "Disabling", vrc)); 5660 5660 } 5661 5661 else /* Should not happen. */ … … 7009 7009 return VINF_SUCCESS; 7010 7010 7011 LogRel((" VideoRec: Starting ...\n"));7011 LogRel(("Recording: Starting ...\n")); 7012 7012 7013 7013 int rc = Capture.mpVideoRecCtx->Start(); … … 7019 7019 7020 7020 if (RT_FAILURE(rc)) 7021 LogRel((" VideoRec: Failed to start video recording (%Rrc)\n", rc));7021 LogRel(("Recording: Failed to start video recording (%Rrc)\n", rc)); 7022 7022 7023 7023 LogFlowFuncLeaveRC(rc); … … 7034 7034 return VINF_SUCCESS; 7035 7035 7036 LogRel((" VideoRec: Stopping ...\n"));7036 LogRel(("Recording: Stopping ...\n")); 7037 7037 7038 7038 int rc = Capture.mpVideoRecCtx->Stop(); … … 7049 7049 ComAssertComRC(hrc); 7050 7050 7051 LogRel((" VideoRec: Stopped\n"));7051 LogRel(("Recording: Stopped\n")); 7052 7052 } 7053 7053 else 7054 LogRel((" VideoRec: Failed to stop video recording (%Rrc)\n", rc));7054 LogRel(("Recording: Failed to stop video recording (%Rrc)\n", rc)); 7055 7055 7056 7056 LogFlowFuncLeaveRC(rc); … … 10162 10162 } 10163 10163 else 10164 LogRel((" VideoRec: Failed with %Rrc on VM power up\n", vrc2));10164 LogRel(("Recording: Failed with %Rrc on VM power up\n", vrc2)); 10165 10165 10166 10166 /** Note: Do not use vrc here, as starting the video recording isn't critical to
Note:
See TracChangeset
for help on using the changeset viewer.