Fixed incorrect enumeration doxygen
authorJungYumin <y_m.jung@samsung.com>
Thu, 18 Apr 2013 05:44:16 +0000 (14:44 +0900)
committerJungYumin <y_m.jung@samsung.com>
Thu, 18 Apr 2013 05:44:16 +0000 (14:44 +0900)
Change-Id: I6373f3eb97dab4857e5bf56b7ae11f5c617051f8
Signed-off-by: JungYumin <y_m.jung@samsung.com>
inc/FMediaImageTypes.h

index ca09fe1..57d7e7c 100644 (file)
@@ -55,10 +55,10 @@ enum ImageFormat
  */
 enum ImageRotationType
 {
-       IMAGE_ROTATION_0 = 0x00,            /**< The no-rotation */
-       IMAGE_ROTATION_90,                  /**< The 90 degree rotation in clockwise direction */
-       IMAGE_ROTATION_180,                 /**< The 180 degree rotation in clockwise direction */
-       IMAGE_ROTATION_270,                 /**< The 270 degree rotation in clockwise direction */
+       IMAGE_ROTATION_0 = 0x00,    /**< The no-rotation */
+       IMAGE_ROTATION_90,          /**< The 90 degree rotation in clockwise direction */
+       IMAGE_ROTATION_180,         /**< The 180 degree rotation in clockwise direction */
+       IMAGE_ROTATION_270,         /**< The 270 degree rotation in clockwise direction */
 };
 
 /**
@@ -70,9 +70,9 @@ enum ImageRotationType
  */
 enum ImageFlipType
 {
-       IMAGE_FLIP_NONE = 0x00,             /**< The no-flip type */
-       IMAGE_FLIP_HORIZONTAL,              /**< The horizontal flip */
-       IMAGE_FLIP_VERTICAL,                /**< The vertical flip */
+       IMAGE_FLIP_NONE = 0x00,     /**< The no-flip type */
+       IMAGE_FLIP_HORIZONTAL,      /**< The horizontal flip */
+       IMAGE_FLIP_VERTICAL,        /**< The vertical flip */
 };
 
 /**
@@ -84,21 +84,21 @@ enum ImageFlipType
  */
 enum MediaPixelFormat
 {
-       MEDIA_PIXEL_FORMAT_NONE = 0x0000,       // The undefined pixel format
-       MEDIA_PIXEL_FORMAT_RGB565LE = 0x0001,       /**< The RGB565 little-endian format */
-       MEDIA_PIXEL_FORMAT_RGB565BE,            /**< The RGB565 big-endian format */
-       MEDIA_PIXEL_FORMAT_RGB888 = 0x0100,     /**< The RGB888 format */
-       MEDIA_PIXEL_FORMAT_BGR888,          /**< The BGR888 format */
-       MEDIA_PIXEL_FORMAT_RGBA8888,            /**< The RGBA8888 format */
-       MEDIA_PIXEL_FORMAT_BGRA8888,            /**< The BGRA8888 format */
-       MEDIA_PIXEL_FORMAT_YUV420P = 0x0200,        /**< The YUV420 Planar format */
-       MEDIA_PIXEL_FORMAT_NV12,            /**< The NV12 format */
-       MEDIA_PIXEL_FORMAT_NV12_TILE,           /**< The NV12 tiled format */
-       MEDIA_PIXEL_FORMAT_NV21,               /**< The NV21 format @b Since: @b 2.0 */
-       MEDIA_PIXEL_FORMAT_YUV444P,         /**< The YUV444 Planar format @b Since: @b 2.0 */
-       MEDIA_PIXEL_FORMAT_YUYV422,         /**< The YUYV422 format @b Since: @b 2.0 */
-       MEDIA_PIXEL_FORMAT_UYVY422,         /**< The UYVY422 format @b Since: @b 2.0 */
-       MEDIA_PIXEL_FORMAT_GRAY,             /**< The gray pixel format @b Since: @b 2.0 */
+       MEDIA_PIXEL_FORMAT_NONE = 0x0000,     // The undefined pixel format
+       MEDIA_PIXEL_FORMAT_RGB565LE = 0x0001, /**< The RGB565 little-endian format */
+       MEDIA_PIXEL_FORMAT_RGB565BE,          /**< The RGB565 big-endian format */
+       MEDIA_PIXEL_FORMAT_RGB888 = 0x0100,   /**< The RGB888 format */
+       MEDIA_PIXEL_FORMAT_BGR888,            /**< The BGR888 format */
+       MEDIA_PIXEL_FORMAT_RGBA8888,          /**< The RGBA8888 format */
+       MEDIA_PIXEL_FORMAT_BGRA8888,          /**< The BGRA8888 format */
+       MEDIA_PIXEL_FORMAT_YUV420P = 0x0200,  /**< The YUV420 Planar format */
+       MEDIA_PIXEL_FORMAT_NV12,              /**< The NV12 format */
+       MEDIA_PIXEL_FORMAT_NV12_TILE,         /**< The NV12 tiled format */
+       MEDIA_PIXEL_FORMAT_NV21,              /**< The NV21 format @b Since: @b 2.0 */
+       MEDIA_PIXEL_FORMAT_YUV444P,           /**< The YUV444 Planar format @b Since: @b 2.0 */
+       MEDIA_PIXEL_FORMAT_YUYV422,           /**< The YUYV422 format @b Since: @b 2.0 */
+       MEDIA_PIXEL_FORMAT_UYVY422,           /**< The UYVY422 format @b Since: @b 2.0 */
+       MEDIA_PIXEL_FORMAT_GRAY,              /**< The gray pixel format @b Since: @b 2.0 */
 };
 
 /**
@@ -110,9 +110,9 @@ enum MediaPixelFormat
  */
 enum ImageScalingMethod
 {
-       IMAGE_SCALING_METHOD_FAST_BILINEAR, /** Fast bilinear interpolation method */
-       IMAGE_SCALING_METHOD_BILINEAR,            /** Bilinear interpolation method */
-       IMAGE_SCALING_METHOD_BICUBIC,              /** Bicubic interpolation method */
+       IMAGE_SCALING_METHOD_FAST_BILINEAR,   /**< Fast bilinear interpolation method */
+       IMAGE_SCALING_METHOD_BILINEAR,        /**< Bilinear interpolation method */
+       IMAGE_SCALING_METHOD_BICUBIC,         /**< Bicubic interpolation method */
 };
 
 /**
@@ -124,14 +124,14 @@ enum ImageScalingMethod
  */
 enum ExifOrientation
 {
-       EXIF_ORIENTATION_TOP_LEFT = 0x01,        /**< The row #0 is top, column #0 is left     */
-       EXIF_ORIENTATION_TOP_RIGHT,       /**< The row #0 is top, column #0 is right    */
-       EXIF_ORIENTATION_BOTTOM_RIGHT,    /**< The row #0 is bottom, column #0 is right */
-       EXIF_ORIENTATION_BOTTOM_LEFT,     /**< The row #0 is bottom, column #0 is left  */
-       EXIF_ORIENTATION_LEFT_TOP,        /**< The row #0 is left, column #0 is top     */
-       EXIF_ORIENTATION_RIGHT_TOP,       /**< The row #0 is right, column #0 is top    */
-       EXIF_ORIENTATION_RIGHT_BOTTOM,    /**< The row #0 is right, column #0 is bottom */
-       EXIF_ORIENTATION_LEFT_BOTTOM,     /**< The row #0 is left, column #0 is bottom  */
+       EXIF_ORIENTATION_TOP_LEFT = 0x01,     /**< The row #0 is top, column #0 is left     */
+       EXIF_ORIENTATION_TOP_RIGHT,           /**< The row #0 is top, column #0 is right    */
+       EXIF_ORIENTATION_BOTTOM_RIGHT,        /**< The row #0 is bottom, column #0 is right */
+       EXIF_ORIENTATION_BOTTOM_LEFT,         /**< The row #0 is bottom, column #0 is left  */
+       EXIF_ORIENTATION_LEFT_TOP,            /**< The row #0 is left, column #0 is top     */
+       EXIF_ORIENTATION_RIGHT_TOP,           /**< The row #0 is right, column #0 is top    */
+       EXIF_ORIENTATION_RIGHT_BOTTOM,        /**< The row #0 is right, column #0 is bottom */
+       EXIF_ORIENTATION_LEFT_BOTTOM,         /**< The row #0 is left, column #0 is bottom  */
 };
 
 };