From 9f24e70cfbca0d2b7cf6a8e9c29fa25cd22bb13e Mon Sep 17 00:00:00 2001 From: Eunhye Choi Date: Mon, 1 Apr 2019 13:39:36 +0900 Subject: [PATCH] [ACR-1347][3] modify API reference about buffering time function Change-Id: I7af2bf27a89308292dba0b5ba613d342d67b91d7 --- include/player.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/include/player.h b/include/player.h index e6884bf..f0d6e6d 100644 --- a/include/player.h +++ b/include/player.h @@ -2467,11 +2467,16 @@ int player_set_streaming_buffering_time(player_h player, int prebuffer_ms, int r * @since_tizen 4.0 * @param[in] player The handle to the media player * @param[out] prebuffer_ms The time duration of buffering data that must be prerolled to start playback + * If the user did not set any value by calling player_set_streaming_buffering_time() function (or if the value was set to 0), + * the value is @c 0 which means platform default value depending on the streaming type and network status. \n + * The value is set to time duration instead of @c 0 + * if the player state is one of: #PLAYER_STATE_READY, #PLAYER_STATE_PLAYING or #PLAYER_STATE_PAUSED. (since 5.5) * @param[out] rebuffer_ms The time duration of buffering data that must be prerolled to resume playback * if player is paused for buffering internally. \n - * The value has @c 0 which means platform default value depending on the streaming type and network status. - * The value has the time value instead of @c 0 - * if the player state is #PLAYER_STATE_PLAYING or #PLAYER_STATE_PAUSED. (since 5.5) + * If the user did not set any value by calling player_set_streaming_buffering_time() function (or if the value was set to 0), + * the value is @c 0 which means platform default value depending on the streaming type and network status. \n + * The value is set to time duration instead of @c 0 + * if the player state is one of: #PLAYER_STATE_READY, #PLAYER_STATE_PLAYING or #PLAYER_STATE_PAUSED. (since 5.5) * @return @c 0 on success, * otherwise a negative error value * @retval #PLAYER_ERROR_NONE Successful -- 2.7.4