Update the header for doxygen
authorJungYumin <y_m.jung@samsung.com>
Mon, 18 Mar 2013 06:34:07 +0000 (15:34 +0900)
committerJungYumin <y_m.jung@samsung.com>
Mon, 18 Mar 2013 06:34:07 +0000 (15:34 +0900)
Change-Id: Id6de93f018e75d2a4e4b4011d4cdf2482a89d549
Signed-off-by: JungYumin <y_m.jung@samsung.com>
inc/FMediaImageTypes.h

index 7ea9ea8..ca09fe1 100644 (file)
@@ -19,7 +19,7 @@
  * @file               FMediaImageTypes.h
  * @brief              This is the header file for the common types of the Image class.
  *
- * This header file contains the declarations of the enumerations for the Image class.
+ * This header file contains the declarations of the enumerations of the Image class.
  */
 
 #ifndef _FMEDIA_IMAGE_TYPES_H_
@@ -29,9 +29,9 @@ namespace Tizen { namespace Media
 {
 
 /**
- *   @enum     ImageFormat
+ * @enum       ImageFormat
  *
- *     Defines the image formats.
+ * Defines the image formats.
  *
  * @since      2.0
  */
@@ -64,7 +64,7 @@ enum ImageRotationType
 /**
  * @enum ImageFlipType
  *
- * Defines the type of flip.
+ * Defines the types of flip.
  *
  * @since      2.0
  */
@@ -94,25 +94,25 @@ enum MediaPixelFormat
        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,               /**< @since 2.0 The NV21 format */
-       MEDIA_PIXEL_FORMAT_YUV444P,         /**< @since 2.0 The YUV444 Planar format  */
-       MEDIA_PIXEL_FORMAT_YUYV422,         /**< @since 2.0 The YUYV422 format */
-       MEDIA_PIXEL_FORMAT_UYVY422,         /**< @since 2.0 The UYVY422 format */
-       MEDIA_PIXEL_FORMAT_GRAY,             /**< @since 2.0 The gray pixel 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 */
 };
 
 /**
  * @enum ImageScalingMethod
  *
- * Defines the image sacling method.
+ * Defines the image scaling method.
  *
  * @since  2.1
  */
 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 */
 };
 
 /**