Add AVRCP control volume up / down method
[platform/core/connectivity/bluetooth-frwk.git] / include / bluetooth-media-control.h
index df3dc68..d1932cd 100644 (file)
@@ -40,6 +40,11 @@ typedef enum {
 } media_player_property_type;
 
 typedef enum {
+       DELAY = 0x01,
+       VOLUME
+} media_transport_property_type;
+
+typedef enum {
        EQUALIZER_OFF = 0x01,
        EQUALIZER_ON,
        EQUALIZER_INVALID,
@@ -86,7 +91,9 @@ typedef enum {
        PRESS_FAST_FORWARD,
        RELEASE_FAST_FORWARD,
        PRESS_REWIND,
-       RELEASE_REWIND
+       RELEASE_REWIND,
+       VOLUME_UP,
+       VOLUME_DOWN
 } media_player_control_cmd;
 
 typedef struct {
@@ -96,7 +103,7 @@ typedef struct {
        const char *genre;
        unsigned int total_tracks;
        unsigned int number;
-       int64_t duration;
+       unsigned int duration;
 } media_metadata_attributes_t;
 
 typedef struct {
@@ -166,7 +173,7 @@ int bluetooth_media_player_deinit(void);
  * @param[in]   setting - The music player properties
  *
  * @remark       None
- * @see         None
+ * @see        None
  */
 int bluetooth_media_player_set_properties(
                        media_player_settings_t *setting);
@@ -187,7 +194,7 @@ int bluetooth_media_player_set_properties(
  *                      value - Value of the property which is changed
  *
  * @remark       None
- * @see         None
+ * @see        None
  */
 int bluetooth_media_player_change_property(
                        media_player_property_type type,
@@ -204,10 +211,10 @@ int bluetooth_media_player_change_property(
  *              BT_MEDIA_CONTROL_ERROR - Error \n
  *
  * @exception   None
- * @param[in]    metadata -Meida attributes
+ * @param[in]  metadata -Meida attributes
  *
  * @remark       None
- * @see         None
+ * @see        None
  */
 int bluetooth_media_player_change_track(
                        media_metadata_attributes_t *metadata);
@@ -243,7 +250,7 @@ int bluetooth_media_control_init(media_cb_func_ptr callback_ptr,
  * @remark      None
  *
  */
- int bluetooth_media_control_deinit(void);
+int bluetooth_media_control_deinit(void);
 
 /**
  * @brief      The function bluetooth_media_control_connect is called to establish an AVRCP
@@ -289,7 +296,7 @@ int bluetooth_media_target_disconnect(bluetooth_device_address_t *remote_address
  * @brief      The function bluetooth_media_control_command is called to send
  *     the  AVRCP Control command like Play, Pause, FF, Rewind to the target device.
  *
- * @param[in]  type    media_player_control_cmd.
+ * @param[in]  type    media_player_control_cmd.
  * @return     int     Zero on Success or reason for error if any.
  *
  */
@@ -309,9 +316,9 @@ int bluetooth_media_control_command(media_player_control_cmd type);
  * @param[in]   setting - The music control properties
  *
  * @remark       None
- * @see         None
+ * @see        None
  */
- int bluetooth_media_control_set_property(media_player_property_type type, unsigned int value);
+int bluetooth_media_control_set_property(media_player_property_type type, unsigned int value);
 
 /**
  * @fn int bluetooth_media_control_get_property(media_player_property_type type, unsigned int *value)
@@ -327,11 +334,29 @@ int bluetooth_media_control_command(media_player_control_cmd type);
  * @param[in]   setting - The music control properties
  *
  * @remark       None
- * @see         None
+ * @see        None
  */
 int bluetooth_media_control_get_property(media_player_property_type type, unsigned int *value);
 
 /**
+ * @fn int bluetooth_media_transport_set_property(media_transport_property_type type, unsigned int value)
+ * @brief Notifies the remote bluetooth target with change in audio transport settings
+ *
+ * This function is a asynchronous call.
+ * No event for this api.
+ *
+ * @return  BT_MEDIA_TRANSPORT_SUCCESS  - Success \n
+ *              BT_MEDIA_TRANSPORT_ERROR - Error \n
+ *
+ * @exception   None
+ * @param[in]   setting - The audio transport properties
+ *
+ * @remark       None
+ * @see        None
+ */
+int bluetooth_media_transport_set_property(media_transport_property_type type, unsigned int value);
+
+/**
  * @fn int bluetooth_media_control_get_track_info(media_metadata_attributes_t *metadata)
  * @brief reads the track metadata from the remote target player.
  *
@@ -345,9 +370,9 @@ int bluetooth_media_control_get_property(media_player_property_type type, unsign
  * @param[in]   metadata - The music meta data information.
  *
  * @remark       None
- * @see         None
+ * @see        None
  */
- int bluetooth_media_control_get_track_info(media_metadata_attributes_t *metadata);
+int bluetooth_media_control_get_track_info(media_metadata_attributes_t *metadata);
 
 #ifdef __cplusplus
 }