Changeset 96141 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Aug 11, 2022 3:37:19 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152947
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r95748 r96141 5869 5869 5870 5870 <enum 5871 name="RecordingVideoScalingM ethod"5872 uuid=" 5576D890-48EE-449A-A81B-B776233598B7"5871 name="RecordingVideoScalingMode" 5872 uuid="0dd1127d-4f62-4b82-beee-91086a9f1d24" 5873 5873 > 5874 5874 <desc> … … 5877 5877 5878 5878 <const name="None" value="0"> 5879 <desc>No scaling performed.</desc> 5879 <desc>No scaling performed. 5880 The image wil be cropped when the source is bigger than the target size.</desc> 5880 5881 </const> 5881 5882 <const name="NearestNeighbor" value="1"> … … 5894 5895 5895 5896 <enum 5896 name="Recording VideoRateControlMode"5897 uuid=" D4EFB692-9F98-4112-88D3-A16FBE2BF6A8"5897 name="RecordingRateControlMode" 5898 uuid="d07a33ac-b4ea-4917-942d-c03be14fbe2f" 5898 5899 > 5899 5900 <desc> 5900 5901 Recording video rate control mode enumeration. 5902 <note>Not all codecs may support all rate control modes.</note> 5901 5903 </desc> 5902 5904 5903 <const name="CBR" value="0"> 5904 <desc>Constant bit rate (CBR).</desc> 5905 </const> 5906 <const name="VBR" value="1"> 5907 <desc>Variable bit rate (VBR). Not yet implemented.</desc> 5905 <const name="ABR" value="0"> 5906 <desc>Average bit rate (ABR). Constrained to a certain size.</desc> 5907 </const> 5908 <const name="CBR" value="1"> 5909 <desc>Constant bit rate (CBR). Constrained to a certain size.</desc> 5910 </const> 5911 <const name="VBR" value="2"> 5912 <desc>Variable bit rate (VBR). Constrained to a certain quality.</desc> 5908 5913 </const> 5909 5914 </enum> … … 5911 5916 <interface 5912 5917 name="IRecordingScreenSettings" extends="$unknown" 5913 uuid=" 92eb5328-c0b3-4ad2-ae25-75b12c52871f"5918 uuid="2377f7d2-1971-40ff-8e39-e61089bb3a22" 5914 5919 wsmap="managed" 5915 5920 rest="managed" … … 6030 6035 </attribute> 6031 6036 6037 <attribute name="audioRateControlMode" type="RecordingRateControlMode"> 6038 <desc> 6039 Determines the audio rate control mode. This setting cannot be changed 6040 while recording is enabled. 6041 </desc> 6042 </attribute> 6043 6032 6044 <attribute name="audioDeadline" type="RecordingCodecDeadline" default="Default"> 6033 6045 <desc> … … 6100 6112 </attribute> 6101 6113 6102 <attribute name="videoRateControlMode" type="Recording VideoRateControlMode">6103 <desc> 6104 Determines the rate control mode. This setting cannot be changed6114 <attribute name="videoRateControlMode" type="RecordingRateControlMode"> 6115 <desc> 6116 Determines the video rate control mode. This setting cannot be changed 6105 6117 while recording is enabled. 6106 6118 </desc> … … 6116 6128 </attribute> 6117 6129 6118 <attribute name="videoScalingM ethod" type="RecordingVideoScalingMethod">6119 <desc> 6120 Determines the video scaling m ethodto use.6130 <attribute name="videoScalingMode" type="RecordingVideoScalingMode"> 6131 <desc> 6132 Determines the video scaling mode to use. 6121 6133 This setting cannot be changed while recording is enabled. 6122 6134 </desc> … … 12392 12404 name="ISystemProperties" 12393 12405 extends="$unknown" 12394 uuid=" 3624830f-4ac4-404f-bc58-cf20ed8836b0"12406 uuid="068decf8-335d-4ec5-8265-ccfd910c4f9d" 12395 12407 wsmap="managed" 12396 12408 rest="managed" … … 12829 12841 </attribute> 12830 12842 12831 <attribute name="supportedRecordingVSM ethods" type="RecordingVideoScalingMethod" safearray="yes" readonly="yes">12832 <desc> 12833 Returns an array of officially supported values for enum <link to="RecordingVideoScalingM ethod"/>,12843 <attribute name="supportedRecordingVSModes" type="RecordingVideoScalingMode" safearray="yes" readonly="yes"> 12844 <desc> 12845 Returns an array of officially supported values for enum <link to="RecordingVideoScalingMode"/>, 12834 12846 in the sense of what is e.g. worth offering in the VirtualBox GUI. 12835 12847 </desc> 12836 12848 </attribute> 12837 12849 12838 <attribute name="supportedRecordingVRCModes" type="RecordingVideoRateControlMode" safearray="yes" readonly="yes"> 12839 <desc> 12840 Returns an array of officially supported values for enum <link to="RecordingVideoRateControlMode"/>, 12850 <attribute name="supportedRecordingARCModes" type="RecordingRateControlMode" safearray="yes" readonly="yes"> 12851 <desc> 12852 Returns an array of officially supported audio codec values for enum <link to="RecordingVideoRateControlMode"/>, 12853 in the sense of what is e.g. worth offering in the VirtualBox GUI. 12854 </desc> 12855 </attribute> 12856 12857 <attribute name="supportedRecordingVRCModes" type="RecordingRateControlMode" safearray="yes" readonly="yes"> 12858 <desc> 12859 Returns an array of officially supported video codec values for enum <link to="RecordingVideoRateControlMode"/>, 12841 12860 in the sense of what is e.g. worth offering in the VirtualBox GUI. 12842 12861 </desc>
Note:
See TracChangeset
for help on using the changeset viewer.