Changeset 81740 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 7, 2019 5:24:31 PM (5 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r81739 r81740 11288 11288 </attribute> 11289 11289 11290 <attribute name="supportedRecordingV ideoScalingMethods" type="RecordingVideoScalingMethod" safearray="yes" readonly="yes">11290 <attribute name="supportedRecordingVSMethods" type="RecordingVideoScalingMethod" safearray="yes" readonly="yes"> 11291 11291 <desc> 11292 11292 Returns an array of officially supported values for enum <link to="RecordingVideoScalingMethod"/>, … … 11295 11295 </attribute> 11296 11296 11297 <attribute name="supportedRecordingV ideoRateControlModes" type="RecordingVideoRateControlMode" safearray="yes" readonly="yes">11297 <attribute name="supportedRecordingVRCModes" type="RecordingVideoRateControlMode" safearray="yes" readonly="yes"> 11298 11298 <desc> 11299 11299 Returns an array of officially supported values for enum <link to="RecordingVideoRateControlMode"/>, -
trunk/src/VBox/Main/include/SystemPropertiesImpl.h
r81739 r81740 124 124 HRESULT getSupportedRecordingAudioCodecs(std::vector<RecordingAudioCodec_T> &aSupportedRecordingAudioCodecs); 125 125 HRESULT getSupportedRecordingVideoCodecs(std::vector<RecordingVideoCodec_T> &aSupportedRecordingVideoCodecs); 126 HRESULT getSupportedRecordingV ideoScalingMethods(std::vector<RecordingVideoScalingMethod_T> &aSupportedRecordingVideoScalingMethods);127 HRESULT getSupportedRecordingV ideoRateControlModes(std::vector<RecordingVideoRateControlMode_T> &aSupportedRecordingVideoRateControlModes);126 HRESULT getSupportedRecordingVSMethods(std::vector<RecordingVideoScalingMethod_T> &aSupportedRecordingVideoScalingMethods); 127 HRESULT getSupportedRecordingVRCModes(std::vector<RecordingVideoRateControlMode_T> &aSupportedRecordingVideoRateControlModes); 128 128 HRESULT getSupportedGraphicsControllerTypes(std::vector<GraphicsControllerType_T> &aSupportedGraphicsControllerTypes); 129 129 HRESULT getSupportedCloneOptions(std::vector<CloneOptions_T> &aSupportedCloneOptions); -
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r81739 r81740 1247 1247 } 1248 1248 1249 HRESULT SystemProperties::getSupportedRecordingV ideoScalingMethods(std::vector<RecordingVideoScalingMethod_T> &aSupportedRecordingVideoScalingMethods)1249 HRESULT SystemProperties::getSupportedRecordingVSMethods(std::vector<RecordingVideoScalingMethod_T> &aSupportedRecordingVideoScalingMethods) 1250 1250 { 1251 1251 static const RecordingVideoScalingMethod_T aRecordingVideoScalingMethods[] = … … 1263 1263 } 1264 1264 1265 HRESULT SystemProperties::getSupportedRecordingV ideoRateControlModes(std::vector<RecordingVideoRateControlMode_T> &aSupportedRecordingVideoRateControlModes)1265 HRESULT SystemProperties::getSupportedRecordingVRCModes(std::vector<RecordingVideoRateControlMode_T> &aSupportedRecordingVideoRateControlModes) 1266 1266 { 1267 1267 static const RecordingVideoRateControlMode_T aRecordingVideoRateControlModes[] =
Note:
See TracChangeset
for help on using the changeset viewer.