Fix Native API Reference doc error
[platform/core/api/video-util.git] / include / video_util_type.h
old mode 100755 (executable)
new mode 100644 (file)
index 3ee1c8c..982a49c
@@ -39,6 +39,7 @@ extern "C" {
 */
 
 /**
+ * @deprecated Deprecated since 5.0
  * @ingroup CAPI_MEDIA_VIDEO_UTIL_MODULE
  * @brief Enumeration for errors of a video util.
  * @since_tizen 2.3
@@ -55,6 +56,7 @@ typedef enum {
 } video_util_error_e;
 
 /**
+ * @deprecated Deprecated since 5.0
  * @ingroup CAPI_MEDIA_VIDEO_UTIL_MODULE
  * @brief Enumeration for video codec.
  * @since_tizen 2.3
@@ -67,6 +69,7 @@ typedef enum {
 } video_util_video_codec_e;
 
 /**
+ * @deprecated Deprecated since 5.0
  * @ingroup CAPI_MEDIA_VIDEO_UTIL_MODULE
  * @brief Enumeration for audio codec.
  * @since_tizen 2.3
@@ -78,6 +81,7 @@ typedef enum {
 } video_util_audio_codec_e;
 
 /**
+ * @deprecated Deprecated since 5.0
  * @ingroup CAPI_MEDIA_VIDEO_UTIL_MODULE
  * @brief Enumeration for formats of a media.
  * @since_tizen 2.3
@@ -85,10 +89,11 @@ typedef enum {
 typedef enum {
        VIDEO_UTIL_FILE_FORMAT_3GP = 0,         /**< 3GP */
        VIDEO_UTIL_FILE_FORMAT_MP4,             /**< MP4 */
-       VIDEO_UTIL_FILE_FORMAT_MAX              /**< MAX */
+       VIDEO_UTIL_FILE_FORMAT_MAX
 } video_util_file_format_e;
 
 /**
+ * @deprecated Deprecated since 5.0
  * @ingroup CAPI_MEDIA_VIDEO_UTIL_MODULE
  * @brief Video util handle.
  * @since_tizen 2.3
@@ -96,6 +101,7 @@ typedef enum {
 typedef struct video_util_s *video_util_h;
 
 /**
+ * @deprecated Deprecated since 5.0
  * @ingroup CAPI_MEDIA_VIDEO_UTIL_MODULE
  * @brief Called regularly during the video transcoding.
  * @since_tizen 2.3
@@ -113,6 +119,7 @@ typedef struct video_util_s *video_util_h;
 typedef void (*video_util_transcoding_progress_cb)(unsigned long current_position, unsigned long duration, void *user_data);
 
 /**
+ * @deprecated Deprecated since 5.0
  * @ingroup CAPI_MEDIA_VIDEO_UTIL_MODULE
  * @brief Called when transcoding is finished just before storing in the file.
  * @since_tizen 2.3
@@ -125,6 +132,7 @@ typedef void (*video_util_transcoding_progress_cb)(unsigned long current_positio
 typedef void (*video_util_transcoding_completed_cb)(video_util_error_e error_code, void *user_data);
 
 /**
+ * @deprecated Deprecated since 5.0
  * @brief Called iteratively to notify you about the supported file formats.
  * @since_tizen 2.3
  *
@@ -139,10 +147,11 @@ typedef void (*video_util_transcoding_completed_cb)(video_util_error_e error_cod
 typedef bool (*video_util_supported_file_format_cb)(video_util_file_format_e format, void *user_data);
 
 /**
+ * @deprecated Deprecated since 5.0
  * @brief Called iteratively to notify you of supported video codec.
  * @since_tizen 2.3
  *
- * @param[in] format The codec of video
+ * @param[in] codec The codec of video
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -153,10 +162,11 @@ typedef bool (*video_util_supported_file_format_cb)(video_util_file_format_e for
 typedef bool (*video_util_supported_video_encoder_cb)(video_util_video_codec_e codec, void *user_data);
 
 /**
+ * @deprecated Deprecated since 5.0
  * @brief Called iteratively to notify you about the supported audio codec.
  * @since_tizen 2.3
  *
- * @param[in] format The codec of audio
+ * @param[in] codec The codec of audio
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,