From 03c103d2cbf802664f8ad4a9d0982231c41570f5 Mon Sep 17 00:00:00 2001 From: Sejun Park Date: Wed, 28 Sep 2016 11:31:47 +0900 Subject: [PATCH] removed api reference warning Change-Id: Ic5d56e99f1755d3d128bad95058d3f6441bb73d1 --- include/media_packet.h | 5 +++-- include/media_packet_pool.h | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/include/media_packet.h b/include/media_packet.h index 50cfac3..027ffc0 100755 --- a/include/media_packet.h +++ b/include/media_packet.h @@ -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 diff --git a/include/media_packet_pool.h b/include/media_packet_pool.h index d93a29f..00d61bc 100755 --- a/include/media_packet_pool.h +++ b/include/media_packet_pool.h @@ -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 * -- 2.34.1