Changeset 96141 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 11, 2022 3:37:19 PM (2 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/RecordingScreenSettingsImpl.h
r95741 r96141 91 91 HRESULT getAudioDeadline(RecordingCodecDeadline_T *aDeadline); 92 92 HRESULT setAudioDeadline(RecordingCodecDeadline_T aDeadline); 93 HRESULT getAudioRateControlMode(RecordingRateControlMode_T *aMode); 94 HRESULT setAudioRateControlMode(RecordingRateControlMode_T aMode); 93 95 HRESULT getAudioHz(ULONG *aHz); 94 96 HRESULT setAudioHz(ULONG aHz); … … 108 110 HRESULT getVideoRate(ULONG *aVideoRate); 109 111 HRESULT setVideoRate(ULONG aVideoRate); 110 HRESULT getVideoRateControlMode(Recording VideoRateControlMode_T *aMode);111 HRESULT setVideoRateControlMode(Recording VideoRateControlMode_T aMode);112 HRESULT getVideoRateControlMode(RecordingRateControlMode_T *aMode); 113 HRESULT setVideoRateControlMode(RecordingRateControlMode_T aMode); 112 114 HRESULT getVideoFPS(ULONG *aVideoFPS); 113 115 HRESULT setVideoFPS(ULONG aVideoFPS); 114 HRESULT getVideoScalingM ethod(RecordingVideoScalingMethod_T *aMode);115 HRESULT setVideoScalingM ethod(RecordingVideoScalingMethod_T aMode);116 HRESULT getVideoScalingMode(RecordingVideoScalingMode_T *aMode); 117 HRESULT setVideoScalingMode(RecordingVideoScalingMode_T aMode); 116 118 117 119 private: -
trunk/src/VBox/Main/include/SystemPropertiesImpl.h
r95741 r96141 129 129 HRESULT getSupportedRecordingAudioCodecs(std::vector<RecordingAudioCodec_T> &aSupportedRecordingAudioCodecs) RT_OVERRIDE; 130 130 HRESULT getSupportedRecordingVideoCodecs(std::vector<RecordingVideoCodec_T> &aSupportedRecordingVideoCodecs) RT_OVERRIDE; 131 HRESULT getSupportedRecordingVSMethods(std::vector<RecordingVideoScalingMethod_T> &aSupportedRecordingVideoScalingMethods) RT_OVERRIDE; 132 HRESULT getSupportedRecordingVRCModes(std::vector<RecordingVideoRateControlMode_T> &aSupportedRecordingVideoRateControlModes) RT_OVERRIDE; 131 HRESULT getSupportedRecordingVSModes(std::vector<RecordingVideoScalingMode_T> &aSupportedRecordingVideoScalingModes) RT_OVERRIDE; 132 HRESULT getSupportedRecordingARCModes(std::vector<RecordingRateControlMode_T> &aSupportedRecordingAudioRateControlModes) RT_OVERRIDE; 133 HRESULT getSupportedRecordingVRCModes(std::vector<RecordingRateControlMode_T> &aSupportedRecordingVideoRateControlModes) RT_OVERRIDE; 133 134 HRESULT getSupportedGraphicsControllerTypes(std::vector<GraphicsControllerType_T> &aSupportedGraphicsControllerTypes) RT_OVERRIDE; 134 135 HRESULT getSupportedCloneOptions(std::vector<CloneOptions_T> &aSupportedCloneOptions) RT_OVERRIDE;
Note:
See TracChangeset
for help on using the changeset viewer.