int media_packet_set_format(media_packet_h packet, media_format_h fmt);
/**
- * @brief Sets PTS of media packet.
+ * @brief Sets presentation timestamp(pts) of media packet.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @param[in] packet The media packet handle
- * @param[in] pts The PTS value to set
+ * @param[in] pts The pts in nanoseconds to set
*
* @return @c 0 on success,
* otherwise a negative error value
int media_packet_set_pts(media_packet_h packet, uint64_t pts);
/**
- * @brief Sets DTS of media packet handle.
+ * @brief Sets decoding timestamp(dts) of media packet handle.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @param[in] packet The media packet handle
- * @param[in] dts The DTS value to set
+ * @param[in] dts The dts in nanoseconds to set
*
* @return @c 0 on success,
* otherwise a negative error value
int media_packet_set_dts(media_packet_h packet, uint64_t dts);
/**
- * @brief Sets PTS of media packet.
+ * @brief Sets duration of media packet.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @param[in] packet The media packet handle
- * @param[in] duration The duration value to set
+ * @param[in] duration The duration in nanoseconds to set
*
* @return @c 0 on success,
* otherwise a negative error value
int media_packet_set_buffer_size(media_packet_h packet, uint64_t size);
/**
- * @brief Gets PTS of media packet.
+ * @brief Gets presentation timestamp(pts) of media packet.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @param[in] packet The media packet handle
- * @param[out] pts The PTS value to get
+ * @param[out] pts The pts in nanoseconds to get
*
* @return @c 0 on success,
* otherwise a negative error value
int media_packet_get_pts(media_packet_h packet, uint64_t * pts);
/**
- * @brief Gets DTS of media packet.
+ * @brief Gets decoding timestamp(dts) of media packet.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @param[in] packet The media packet handle
- * @param[out] dts The DTS value to get
+ * @param[out] dts The dts in nanoseconds to get
*
* @return @c 0 on success,
* otherwise a negative error value
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @param[in] packet The media packet handle
- * @param[out] duration The duration value to get
+ * @param[out] duration The duration in nanoseconds to get
*
* @return @c 0 on success,
* otherwise a negative error value