Changeset 96179 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 12, 2022 2:43:31 PM (2 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/RecordingStream.h
r96176 r96179 134 134 protected: 135 135 136 static intcodecWriteDataCallback(PRECORDINGCODEC pCodec, const void *pvData, size_t cbData, void *pvUser);136 static DECLCALLBACK(int) codecWriteDataCallback(PRECORDINGCODEC pCodec, const void *pvData, size_t cbData, void *pvUser); 137 137 138 138 protected: -
trunk/src/VBox/Main/src-client/RecordingCodec.cpp
r96177 r96179 19 19 #include "LoggingNew.h" 20 20 21 #include <VBox/com/string.h> 21 22 #include <VBox/err.h> 22 23 #include <VBox/vmm/pdmaudioifs.h> … … 100 101 101 102 /** @copydoc RECORDINGCODECOPS::pfnParseOptions */ 102 static DECLCALLBACK(int) recordingCodecVPXParseOptions(PRECORDINGCODEC pCodec, const Utf8Str &strOptions)103 static DECLCALLBACK(int) recordingCodecVPXParseOptions(PRECORDINGCODEC pCodec, const com::Utf8Str &strOptions) 103 104 { 104 105 size_t pos = 0; … … 548 549 AssertReturn(pCodec->Parms.enmType == RECORDINGCODECTYPE_AUDIO, VERR_INVALID_PARAMETER); 549 550 550 Utf8Str strCodec;551 com::Utf8Str strCodec; 551 552 settings::RecordingScreenSettings::audioCodecToString(pCodec->Parms.enmAudioCodec, strCodec); 552 553 LogRel(("Recording: Initializing audio codec '%s'\n", strCodec.c_str())); … … 606 607 const PRECORDINGCODECCALLBACKS pCallbacks, const settings::RecordingScreenSettings &Settings) 607 608 { 608 Utf8Str strTemp;609 com::Utf8Str strTemp; 609 610 settings::RecordingScreenSettings::videoCodecToString(pCodec->Parms.enmVideoCodec, strTemp); 610 611 LogRel(("Recording: Initializing video codec '%s'\n", strTemp.c_str())); … … 654 655 * @param strOptions Options string to parse. 655 656 */ 656 static DECLCALLBACK(int) recordingCodecAudioParseOptions(PRECORDINGCODEC pCodec, const Utf8Str &strOptions)657 static DECLCALLBACK(int) recordingCodecAudioParseOptions(PRECORDINGCODEC pCodec, const com::Utf8Str &strOptions) 657 658 { 658 659 AssertReturn(pCodec->Parms.enmType == RECORDINGCODECTYPE_AUDIO, VERR_INVALID_PARAMETER);
Note:
See TracChangeset
for help on using the changeset viewer.