- Timestamp:
- Nov 16, 2018 5:14:58 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126685
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r75495 r75527 148 148 int i_recordingStart(util::AutoWriteLock *pAutoLock = NULL); 149 149 int i_recordingStop(util::AutoWriteLock *pAutoLock = NULL); 150 # ifdef VBOX_WITH_AUDIO_RECORDING 150 151 AudioVideoRec *i_recordingGetAudioDrv(void) const { return Recording.mAudioRec; } 152 # endif 151 153 RecordingContext *i_recordingGetContext(void) const { return Recording.mpCtx; } 154 # ifdef VBOX_WITH_AUDIO_RECORDING 152 155 HRESULT i_recordingSendAudio(const void *pvData, size_t cbData, uint64_t uDurationMs); 156 # endif 153 157 #endif 154 158 … … 1039 1043 Recording() 1040 1044 : mpCtx(NULL) 1041 , mAudioRec(NULL) { } 1045 # ifdef VBOX_WITH_AUDIO_RECORDING 1046 , mAudioRec(NULL) 1047 # endif 1048 { } 1042 1049 1043 1050 /** The recording context. */ -
trunk/src/VBox/Main/src-client/Recording.cpp
r75499 r75527 655 655 return rc; 656 656 #else 657 RT_NOREF(p Ctx, pvData, cbData, msTimestamp);657 RT_NOREF(pvData, cbData, msTimestamp); 658 658 return VINF_SUCCESS; 659 659 #endif
Note:
See TracChangeset
for help on using the changeset viewer.