[ACR-1347][2] modify API reference about buffering time function 49/202449/1
authorEunhye Choi <eunhae1.choi@samsung.com>
Thu, 28 Mar 2019 11:32:41 +0000 (20:32 +0900)
committerEunhye Choi <eunhae1.choi@samsung.com>
Thu, 28 Mar 2019 11:32:43 +0000 (20:32 +0900)
- apply the additional feedback of ACR-1347 during doc review
- original commit : I03beabed7d10ee0de810f1555dd0159180c69bee

Change-Id: I2a60e2276c7d0f323c434c5eecd835c3a086f255

include/player.h

index b5c1e54..e6884bf 100644 (file)
@@ -2424,14 +2424,16 @@ int player_pitch_get_value(player_h player, float *value);
  * @since_tizen 4.0
  * @param[in] player        The handle to the media player
  * @param[in] prebuffer_ms  The time duration of buffering data that must be prerolled to start playback. \n
- *                          At least 1000 milliseconds is recommended to ensure the normal buffering operation except 0 or -1. \n
- *                           0 : use platform default value which could be different depending on the streaming type and network status (default) \n
- *                          -1 : use current value (since 5.5) \n
+ *                          The value should be more than 1000 milliseconds to ensure the normal buffering. \n
+ *                          There are, however, two exceptions: \n
+ *                           0: Indicate to use platform default value depending on the streaming type and network status (default) \n
+ *                          -1: Indicate to use current value (since 5.5)
  * @param[in] rebuffer_ms   The time duration of buffering data that must be prerolled to resume playback
  *                          if player is paused for buffering internally. \n
- *                          At least 1000 milliseconds is recommended to ensure the normal buffering operation except 0 or -1. \n
- *                           0 : use platform default value which could be different depending on the streaming type and network status (default) \n
- *                          -1 : use current value (since 5.5)\n
+ *                          The value should be more than 1000 milliseconds to ensure the normal buffering. \n
+ *                          There are, however, two exceptions: \n
+ *                           0: Indicate to use platform default value depending on the streaming type and network status (default) \n
+ *                          -1: Indicate to use current value (since 5.5)
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #PLAYER_ERROR_NONE Successful
@@ -2467,9 +2469,9 @@ int player_set_streaming_buffering_time(player_h player, int prebuffer_ms, int r
  * @param[out] prebuffer_ms  The time duration of buffering data that must be prerolled to start playback
  * @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
- *                           @c 0 means platform default value which could be different depending on the streaming type and network status.
- *                           If the player state is #PLAYER_STATE_PLAYING or #PLAYER_STATE_PAUSED,
- *                           this function will return correct time value instead of @c 0. (since 5.5)
+ *                           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)
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #PLAYER_ERROR_NONE Successful