removed api reference warning 76/89976/1 accepted/tizen/3.0/ivi/20161011.055338 accepted/tizen/3.0/mobile/20161015.032647 accepted/tizen/3.0/tv/20161016.003433 accepted/tizen/3.0/wearable/20161015.080338 accepted/tizen/common/20160928.163942 accepted/tizen/ivi/20160930.040750 accepted/tizen/mobile/20160930.040427 accepted/tizen/tv/20160930.040559 accepted/tizen/wearable/20160930.040657 submit/tizen/20160928.043825 submit/tizen_3.0_ivi/20161010.000005 submit/tizen_3.0_mobile/20161015.000001 submit/tizen_3.0_tv/20161015.000000 submit/tizen_3.0_wearable/20161015.000000
authorSejun Park <sejun79.park@samsung.com>
Wed, 28 Sep 2016 02:31:47 +0000 (11:31 +0900)
committerSejun Park <sejun79.park@samsung.com>
Wed, 28 Sep 2016 02:31:47 +0000 (11:31 +0900)
Change-Id: Ic5d56e99f1755d3d128bad95058d3f6441bb73d1

include/media_packet.h
include/media_packet_pool.h

index 50cfac38a0a2710f971a0ca4fdc1c22fe09c8f1b..027ffc008d06ea9c64bc00ecbe7965037a2098d9 100755 (executable)
@@ -325,6 +325,7 @@ int media_packet_create_from_tbm_surface(media_format_h fmt, tbm_surface_h surfa
  * @remarks The @c packet must be released by using media_packet_destroy().
  * @param[in]   fmt       The allocated #media_format_h by caller
  * @param[in]   mem_ptr   The memory pointer which is created by external module
+ * @param[in]   size      The buffer size value to set
  * @param[in]   fcb       The media_packet_finalize_cb() to register
  * @param[in]   fcb_data  The user data to be passed to the media_packet_finalize_cb() function
  * @param[out]  packet  A new handle for media packet
@@ -865,7 +866,7 @@ int media_packet_get_number_of_video_planes(media_packet_h packet, uint32_t * nu
  *
  * @param[in]  packet   The media packet handle
  * @param[in]  plane_idx   The plane index value
- * @param[out] stride_w  the stride value from tbm_surface
+ * @param[out] stride_width  the stride value from tbm_surface
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -885,7 +886,7 @@ int media_packet_get_video_stride_width(media_packet_h packet, int plane_idx, in
  *
  * @param[in]  packet   The media packet handle
  * @param[in]  plane_idx   The plane index value
- * @param[out] stride_h  The stride height value from tbm_surface
+ * @param[out] stride_height  The stride height value from tbm_surface
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
index d93a29fab5f7ead21a99a33e34494de1c12a5b0f..00d61bc9e9f251a3cec5a3cb6db8f1209ba65ecb 100755 (executable)
@@ -77,8 +77,8 @@ int media_packet_pool_set_media_format(media_packet_pool_h pool, media_format_h
 /**
  * @brief      Sets the media packet pool size.
  * @details    Sets the number of packets to allocate with given parameters.
- *          The media packet pool will be allocated with #min_buffers when media_pacet_pool_allocate() is called.
- *          When there are no media packets available, it will be increased to #max_buffers of given parameter.
+ *          The media packet pool will be allocated with @a min_buffers when media_pacet_pool_allocate() is called.
+ *          When there are no media packets available, it will be increased to @a max_buffers of given parameter.
  *
  * @since_tizen 3.0
  *
@@ -118,7 +118,7 @@ int media_packet_pool_get_size(media_packet_pool_h pool, int *min_buffers, int *
 
 /**
  * @brief      Allocates the media packet pool.
- * @details It will allocate media packets with #min_buffers which given to media_packet_pool_set_size().
+ * @details It will allocate media packets with @a min_buffers which given to media_packet_pool_set_size().
  *
  * @since_tizen 3.0
  *
@@ -142,7 +142,7 @@ int media_packet_pool_allocate(media_packet_pool_h pool);
 /**
  * @brief      Acquires a media packet from the media packet pool.
  * @details    It will take a media packet from the queue and block until media packet is released into the pool agaian.
- *                     When there are no media packets available, it will be increased to #max_buffers of given parameter.
+ *                     When there are no media packets available, it will be increased to @a max_buffers of given parameter.
  *
  * @since_tizen 3.0
  *