Index: /trunk/src/VBox/Main/idl/VirtualBox.xidl
===================================================================
--- /trunk/src/VBox/Main/idl/VirtualBox.xidl	(revision 75488)
+++ /trunk/src/VBox/Main/idl/VirtualBox.xidl	(revision 75489)
@@ -4798,6 +4798,6 @@
 
   <enum
-    name="RecordVideoRateControlMode"
-    uuid="11F99274-835F-4F2C-86A5-F8DF8999C21A"
+    name="RecordingVideoRateControlMode"
+    uuid="D4EFB692-9F98-4112-88D3-A16FBE2BF6A8"
     >
     <desc>
@@ -4815,5 +4815,5 @@
   <interface
     name="IRecordingScreenSettings" extends="$unknown"
-    uuid="41E56E39-C36D-440E-867B-FB80C4CE6FAA"
+    uuid="B036627B-9922-4056-8A95-94C60D3BA48A"
     wsmap="managed"
     >
@@ -4972,5 +4972,5 @@
     </attribute>
 
-    <attribute name="videoRateControlMode" type="RecordVideoRateControlMode">
+    <attribute name="videoRateControlMode" type="RecordingVideoRateControlMode">
       <desc>
         Determines the rate control mode. This setting cannot be changed
Index: /trunk/src/VBox/Main/include/RecordingScreenSettingsImpl.h
===================================================================
--- /trunk/src/VBox/Main/include/RecordingScreenSettingsImpl.h	(revision 75488)
+++ /trunk/src/VBox/Main/include/RecordingScreenSettingsImpl.h	(revision 75489)
@@ -95,6 +95,6 @@
     HRESULT getVideoRate(ULONG *aVideoRate);
     HRESULT setVideoRate(ULONG aVideoRate);
-    HRESULT getVideoRateControlMode(RecordVideoRateControlMode_T *aMode);
-    HRESULT setVideoRateControlMode(RecordVideoRateControlMode_T aMode);
+    HRESULT getVideoRateControlMode(RecordingVideoRateControlMode_T *aMode);
+    HRESULT setVideoRateControlMode(RecordingVideoRateControlMode_T aMode);
     HRESULT getVideoFPS(ULONG *aVideoFPS);
     HRESULT setVideoFPS(ULONG aVideoFPS);
Index: /trunk/src/VBox/Main/src-server/RecordingScreenSettingsImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/RecordingScreenSettingsImpl.cpp	(revision 75488)
+++ /trunk/src/VBox/Main/src-server/RecordingScreenSettingsImpl.cpp	(revision 75489)
@@ -717,17 +717,17 @@
 }
 
-HRESULT RecordingScreenSettings::getVideoRateControlMode(RecordVideoRateControlMode_T *aMode)
-{
-    AutoCaller autoCaller(this);
-    if (FAILED(autoCaller.rc())) return autoCaller.rc();
-
-    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
-
-    *aMode = RecordVideoRateControlMode_CBR; /** @todo Implement VBR. */
-
-    return S_OK;
-}
-
-HRESULT RecordingScreenSettings::setVideoRateControlMode(RecordVideoRateControlMode_T aMode)
+HRESULT RecordingScreenSettings::getVideoRateControlMode(RecordingVideoRateControlMode_T *aMode)
+{
+    AutoCaller autoCaller(this);
+    if (FAILED(autoCaller.rc())) return autoCaller.rc();
+
+    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
+
+    *aMode = RecordingVideoRateControlMode_CBR; /** @todo Implement VBR. */
+
+    return S_OK;
+}
+
+HRESULT RecordingScreenSettings::setVideoRateControlMode(RecordingVideoRateControlMode_T aMode)
 {
     AutoCaller autoCaller(this);
