Index: /trunk/src/VBox/Main/include/RecordingUtils.h
===================================================================
--- /trunk/src/VBox/Main/include/RecordingUtils.h	(revision 75392)
+++ /trunk/src/VBox/Main/include/RecordingUtils.h	(revision 75393)
@@ -198,7 +198,7 @@
 };
 
-int recordingRGBToYUV(uint32_t uPixelFormat,
-                      uint8_t *paDst, uint32_t uDstWidth, uint32_t uDstHeight,
-                      uint8_t *paSrc, uint32_t uSrcWidth, uint32_t uSrcHeight);
+int RecordingUtilsRGBToYUV(uint32_t uPixelFormat,
+                           uint8_t *paDst, uint32_t uDstWidth, uint32_t uDstHeight,
+                           uint8_t *paSrc, uint32_t uSrcWidth, uint32_t uSrcHeight);
 
 #endif /* ____H_RECORDING_UTILS */
Index: /trunk/src/VBox/Main/src-client/RecordingStream.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/RecordingStream.cpp	(revision 75392)
+++ /trunk/src/VBox/Main/src-client/RecordingStream.cpp	(revision 75393)
@@ -349,9 +349,9 @@
                 PRECORDINGVIDEOFRAME pVideoFrame  = (PRECORDINGVIDEOFRAME)pBlock->pvData;
 
-                rc = recordingRGBToYUV(pVideoFrame->uPixelFormat,
-                                       /* Destination */
-                                       this->Video.Codec.VPX.pu8YuvBuf, pVideoFrame->uWidth, pVideoFrame->uHeight,
-                                       /* Source */
-                                       pVideoFrame->pu8RGBBuf, this->ScreenSettings.Video.ulWidth, this->ScreenSettings.Video.ulHeight);
+                rc = RecordingUtilsRGBToYUV(pVideoFrame->uPixelFormat,
+                                            /* Destination */
+                                            this->Video.Codec.VPX.pu8YuvBuf, pVideoFrame->uWidth, pVideoFrame->uHeight,
+                                            /* Source */
+                                            pVideoFrame->pu8RGBBuf, this->ScreenSettings.Video.ulWidth, this->ScreenSettings.Video.ulHeight);
                 if (RT_SUCCESS(rc))
                 {
Index: /trunk/src/VBox/Main/src-client/RecordingUtils.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/RecordingUtils.cpp	(revision 75392)
+++ /trunk/src/VBox/Main/src-client/RecordingUtils.cpp	(revision 75393)
@@ -31,5 +31,5 @@
  * Convert an image to YUV420p format.
  *
- * @return true on success, false on failure.
+ * @return \c true on success, \c false on failure.
  * @param  aDstBuf              The destination image buffer.
  * @param  aDstWidth            Width (in pixel) of destination buffer.
@@ -40,6 +40,6 @@
  */
 template <class T>
-inline bool videoRecColorConvWriteYUV420p(uint8_t *aDstBuf, unsigned aDstWidth, unsigned aDstHeight,
-                                          uint8_t *aSrcBuf, unsigned aSrcWidth, unsigned aSrcHeight)
+inline bool recordingUtilsColorConvWriteYUV420p(uint8_t *aDstBuf, unsigned aDstWidth, unsigned aDstHeight,
+                                                uint8_t *aSrcBuf, unsigned aSrcWidth, unsigned aSrcHeight)
 {
     RT_NOREF(aDstWidth, aDstHeight);
@@ -103,15 +103,16 @@
 
 /**
- * Convert an image to RGB24 format
- * @returns true on success, false on failure
- * @param aWidth    width of image
- * @param aHeight   height of image
- * @param aDestBuf  an allocated memory buffer large enough to hold the
- *                  destination image (i.e. width * height * 12bits)
- * @param aSrcBuf   the source image as an array of bytes
+ * Convert an image to RGB24 format.
+ *
+ * @returns true on success, false on failure.
+ * @param aWidth    Width of image.
+ * @param aHeight   Height of image.
+ * @param aDestBuf  An allocated memory buffer large enough to hold the
+ *                  destination image (i.e. width * height * 12bits).
+ * @param aSrcBuf   The source image as an array of bytes.
  */
 template <class T>
-inline bool videoRecColorConvWriteRGB24(unsigned aWidth, unsigned aHeight,
-                                        uint8_t *aDestBuf, uint8_t *aSrcBuf)
+inline bool RecordingUtilsColorConvWriteRGB24(unsigned aWidth, unsigned aHeight,
+                                              uint8_t *aDestBuf, uint8_t *aSrcBuf)
 {
     enum { PIX_SIZE = 3 };
@@ -147,23 +148,23 @@
  * @param   uSrcHeight          Height (Y, in pixels) of source buffer.
  */
-int recordingRGBToYUV(uint32_t uPixelFormat,
-                     uint8_t *paDst, uint32_t uDstWidth, uint32_t uDstHeight,
-                     uint8_t *paSrc, uint32_t uSrcWidth, uint32_t uSrcHeight)
+int RecordingUtilsRGBToYUV(uint32_t uPixelFormat,
+                           uint8_t *paDst, uint32_t uDstWidth, uint32_t uDstHeight,
+                           uint8_t *paSrc, uint32_t uSrcWidth, uint32_t uSrcHeight)
 {
     switch (uPixelFormat)
     {
         case RECORDINGPIXELFMT_RGB32:
-            if (!videoRecColorConvWriteYUV420p<ColorConvBGRA32Iter>(paDst, uDstWidth, uDstHeight,
-                                                            paSrc, uSrcWidth, uSrcHeight))
+            if (!recordingUtilsColorConvWriteYUV420p<ColorConvBGRA32Iter>(paDst, uDstWidth, uDstHeight,
+                                                                          paSrc, uSrcWidth, uSrcHeight))
                 return VERR_INVALID_PARAMETER;
             break;
         case RECORDINGPIXELFMT_RGB24:
-            if (!videoRecColorConvWriteYUV420p<ColorConvBGR24Iter>(paDst, uDstWidth, uDstHeight,
-                                                           paSrc, uSrcWidth, uSrcHeight))
+            if (!recordingUtilsColorConvWriteYUV420p<ColorConvBGR24Iter>(paDst, uDstWidth, uDstHeight,
+                                                                         paSrc, uSrcWidth, uSrcHeight))
                 return VERR_INVALID_PARAMETER;
             break;
         case RECORDINGPIXELFMT_RGB565:
-            if (!videoRecColorConvWriteYUV420p<ColorConvBGR565Iter>(paDst, uDstWidth, uDstHeight,
-                                                            paSrc, uSrcWidth, uSrcHeight))
+            if (!recordingUtilsColorConvWriteYUV420p<ColorConvBGR565Iter>(paDst, uDstWidth, uDstHeight,
+                                                                          paSrc, uSrcWidth, uSrcHeight))
                 return VERR_INVALID_PARAMETER;
             break;
