Changeset 96176 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 12, 2022 2:20:09 PM (2 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/RecordingInternals.h
r96175 r96176 444 444 typedef std::list<RecordingBlock *> RecordingBlockList; 445 445 446 #ifdef VBOX_WITH_AUDIO_RECORDING447 446 int recordingCodecCreateAudio(PRECORDINGCODEC pCodec, RecordingAudioCodec_T enmAudioCodec); 448 #endif449 447 int recordingCodecCreateVideo(PRECORDINGCODEC pCodec, RecordingVideoCodec_T enmVideoCodec); 450 448 int recordingCodecInit(const PRECORDINGCODEC pCodec, const PRECORDINGCODECCALLBACKS pCallbacks, const settings::RecordingScreenSettings &Settings); -
trunk/src/VBox/Main/include/RecordingStream.h
r96175 r96176 126 126 uint16_t GetID(void) const { return this->uScreenID; }; 127 127 #ifdef VBOX_WITH_AUDIO_RECORDING 128 constPRECORDINGCODEC GetAudioCodec(void) { return &this->CodecAudio; };128 PRECORDINGCODEC GetAudioCodec(void) { return &this->CodecAudio; }; 129 129 #endif 130 constPRECORDINGCODEC GetVideoCodec(void) { return &this->CodecVideo; };130 PRECORDINGCODEC GetVideoCodec(void) { return &this->CodecVideo; }; 131 131 bool IsLimitReached(uint64_t msTimestamp) const; 132 132 bool IsReady(void) const; … … 195 195 uint64_t tsStartMs; 196 196 197 #ifdef VBOX_WITH_AUDIO_RECORDING198 197 /** Audio codec instance data to use. */ 199 198 RECORDINGCODEC CodecAudio; 200 #endif201 199 /** Video codec instance data to use. */ 202 200 RECORDINGCODEC CodecVideo;
Note:
See TracChangeset
for help on using the changeset viewer.