Changeset 95645 in vbox for trunk/src/VBox/Main/include/ConsoleImpl.h
- Timestamp:
- Jul 14, 2022 10:33:14 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152289
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r95639 r95645 174 174 AudioVideoRec *i_recordingGetAudioDrv(void) const { return mRecording.mAudioRec; } 175 175 # endif 176 RecordingContext *i_recordingGetContext(void) const { return mRecording.mpCtx; }176 RecordingContext *i_recordingGetContext(void) { return &mRecording.mCtx; } 177 177 # ifdef VBOX_WITH_AUDIO_RECORDING 178 178 HRESULT i_recordingSendAudio(const void *pvData, size_t cbData, uint64_t uDurationMs); … … 1156 1156 { 1157 1157 Recording() 1158 : mpCtx(NULL)1159 1158 # ifdef VBOX_WITH_AUDIO_RECORDING 1160 ,mAudioRec(NULL)1159 : mAudioRec(NULL) 1161 1160 # endif 1162 1161 { } 1163 1162 1164 1163 /** The recording context. */ 1165 RecordingContext *mpCtx;1164 RecordingContext mCtx; 1166 1165 # ifdef VBOX_WITH_AUDIO_RECORDING 1167 1166 /** Pointer to capturing audio backend. */
Note:
See TracChangeset
for help on using the changeset viewer.