Bluetooth Media

API Reference

Media Control Service

group bt_mcs

Media Control Service (MCS)

[Experimental] Users should note that the APIs can change as a part of ongoing development.

Definitions and types related to the Media Control Service and Media Control Profile specifications.

Defines

BT_MCS_ERR_LONG_VAL_CHANGED
BT_MCS_PLAYBACK_SPEED_MIN

Playback speeds.

All values from -128 to 127 allowed, only some defined

BT_MCS_PLAYBACK_SPEED_QUARTER
BT_MCS_PLAYBACK_SPEED_HALF
BT_MCS_PLAYBACK_SPEED_UNITY
BT_MCS_PLAYBACK_SPEED_DOUBLE
BT_MCS_PLAYBACK_SPEED_MAX
BT_MCS_SEEKING_SPEED_FACTOR_MAX

Seeking speed.

The allowed values for seeking speed are the range -64 to -4 (endpoints included), the value 0, and the range 4 to 64 (endpoints included).

BT_MCS_SEEKING_SPEED_FACTOR_MIN
BT_MCS_SEEKING_SPEED_FACTOR_ZERO
BT_MCS_PLAYING_ORDER_SINGLE_ONCE

Playing orders.

BT_MCS_PLAYING_ORDER_SINGLE_REPEAT
BT_MCS_PLAYING_ORDER_INORDER_ONCE
BT_MCS_PLAYING_ORDER_INORDER_REPEAT
BT_MCS_PLAYING_ORDER_OLDEST_ONCE
BT_MCS_PLAYING_ORDER_OLDEST_REPEAT
BT_MCS_PLAYING_ORDER_NEWEST_ONCE
BT_MCS_PLAYING_ORDER_NEWEST_REPEAT
BT_MCS_PLAYING_ORDER_SHUFFLE_ONCE
BT_MCS_PLAYING_ORDER_SHUFFLE_REPEAT
BT_MCS_PLAYING_ORDERS_SUPPORTED_SINGLE_ONCE

Playing orders supported.

A bitmap, in the same order as the playing orders above. Note that playing order 1 corresponds to bit 0, and so on.

BT_MCS_PLAYING_ORDERS_SUPPORTED_SINGLE_REPEAT
BT_MCS_PLAYING_ORDERS_SUPPORTED_INORDER_ONCE
BT_MCS_PLAYING_ORDERS_SUPPORTED_INORDER_REPEAT
BT_MCS_PLAYING_ORDERS_SUPPORTED_OLDEST_ONCE
BT_MCS_PLAYING_ORDERS_SUPPORTED_OLDEST_REPEAT
BT_MCS_PLAYING_ORDERS_SUPPORTED_NEWEST_ONCE
BT_MCS_PLAYING_ORDERS_SUPPORTED_NEWEST_REPEAT
BT_MCS_PLAYING_ORDERS_SUPPORTED_SHUFFLE_ONCE
BT_MCS_PLAYING_ORDERS_SUPPORTED_SHUFFLE_REPEAT
BT_MCS_MEDIA_STATE_INACTIVE

Media states.

BT_MCS_MEDIA_STATE_PLAYING
BT_MCS_MEDIA_STATE_PAUSED
BT_MCS_MEDIA_STATE_SEEKING
BT_MCS_MEDIA_STATE_LAST
BT_MCS_OPC_PLAY

Media control point opcodes.

BT_MCS_OPC_PAUSE
BT_MCS_OPC_FAST_REWIND
BT_MCS_OPC_FAST_FORWARD
BT_MCS_OPC_STOP
BT_MCS_OPC_MOVE_RELATIVE
BT_MCS_OPC_PREV_SEGMENT
BT_MCS_OPC_NEXT_SEGMENT
BT_MCS_OPC_FIRST_SEGMENT
BT_MCS_OPC_LAST_SEGMENT
BT_MCS_OPC_GOTO_SEGMENT
BT_MCS_OPC_PREV_TRACK
BT_MCS_OPC_NEXT_TRACK
BT_MCS_OPC_FIRST_TRACK
BT_MCS_OPC_LAST_TRACK
BT_MCS_OPC_GOTO_TRACK
BT_MCS_OPC_PREV_GROUP
BT_MCS_OPC_NEXT_GROUP
BT_MCS_OPC_FIRST_GROUP
BT_MCS_OPC_LAST_GROUP
BT_MCS_OPC_GOTO_GROUP
BT_MCS_OPCODES_SUPPORTED_LEN

Media control point supported opcodes length.

BT_MCS_OPC_SUP_PLAY

Media control point supported opcodes values.

BT_MCS_OPC_SUP_PAUSE
BT_MCS_OPC_SUP_FAST_REWIND
BT_MCS_OPC_SUP_FAST_FORWARD
BT_MCS_OPC_SUP_STOP
BT_MCS_OPC_SUP_MOVE_RELATIVE
BT_MCS_OPC_SUP_PREV_SEGMENT
BT_MCS_OPC_SUP_NEXT_SEGMENT
BT_MCS_OPC_SUP_FIRST_SEGMENT
BT_MCS_OPC_SUP_LAST_SEGMENT
BT_MCS_OPC_SUP_GOTO_SEGMENT
BT_MCS_OPC_SUP_PREV_TRACK
BT_MCS_OPC_SUP_NEXT_TRACK
BT_MCS_OPC_SUP_FIRST_TRACK
BT_MCS_OPC_SUP_LAST_TRACK
BT_MCS_OPC_SUP_GOTO_TRACK
BT_MCS_OPC_SUP_PREV_GROUP
BT_MCS_OPC_SUP_NEXT_GROUP
BT_MCS_OPC_SUP_FIRST_GROUP
BT_MCS_OPC_SUP_LAST_GROUP
BT_MCS_OPC_SUP_GOTO_GROUP
BT_MCS_OPC_NTF_SUCCESS

Media control point notification result codes.

BT_MCS_OPC_NTF_NOT_SUPPORTED
BT_MCS_OPC_NTF_PLAYER_INACTIVE
BT_MCS_OPC_NTF_CANNOT_BE_COMPLETED
BT_MCS_SEARCH_TYPE_TRACK_NAME

Search control point type values.

BT_MCS_SEARCH_TYPE_ARTIST_NAME
BT_MCS_SEARCH_TYPE_ALBUM_NAME
BT_MCS_SEARCH_TYPE_GROUP_NAME
BT_MCS_SEARCH_TYPE_EARLIEST_YEAR
BT_MCS_SEARCH_TYPE_LATEST_YEAR
BT_MCS_SEARCH_TYPE_GENRE
BT_MCS_SEARCH_TYPE_ONLY_TRACKS
BT_MCS_SEARCH_TYPE_ONLY_GROUPS
SEARCH_LEN_MIN

Search control point values.

SEARCH_SCI_LEN_MIN
SEARCH_LEN_MAX
SEARCH_PARAM_MAX
BT_MCS_SCP_NTF_SUCCESS

Search notification result codes.

BT_MCS_SCP_NTF_FAILURE
BT_MCS_GROUP_OBJECT_TRACK_TYPE
BT_MCS_GROUP_OBJECT_GROUP_TYPE

Media Proxy

group bt_media_proxy

Media proxy module.

The media proxy module is the connection point between media players and media controllers.

A media player has (access to) media content and knows how to navigate and play this content. A media controller reads or gets information from a player and controls the player by setting player parameters and giving the player commands.

The media proxy module allows media player implementations to make themselves available to media controllers. And it allows controllers to access, and get updates from, any player.

The media proxy module allows both local and remote control of local player instances: A media controller may be a local application, or it may be a Media Control Service relaying requests from a remote Media Control Client. There may be either local or remote control, or both, or even multiple instances of each.

[Experimental] Users should note that the APIs can change as a part of ongoing development.

Defines

MEDIA_PROXY_PLAYBACK_SPEED_MIN

Playback speed parameters.

All values from -128 to 127 allowed, only some defined

MEDIA_PROXY_PLAYBACK_SPEED_QUARTER
MEDIA_PROXY_PLAYBACK_SPEED_HALF
MEDIA_PROXY_PLAYBACK_SPEED_UNITY
MEDIA_PROXY_PLAYBACK_SPEED_DOUBLE
MEDIA_PROXY_PLAYBACK_SPEED_MAX
MEDIA_PROXY_SEEKING_SPEED_FACTOR_MAX

Seeking speed factors.

The allowed values for seeking speed are the range -64 to -4 (endpoints included), the value 0, and the range 4 to 64 (endpoints included).

MEDIA_PROXY_SEEKING_SPEED_FACTOR_MIN
MEDIA_PROXY_SEEKING_SPEED_FACTOR_ZERO
MEDIA_PROXY_PLAYING_ORDER_SINGLE_ONCE

Playing orders.

MEDIA_PROXY_PLAYING_ORDER_SINGLE_REPEAT
MEDIA_PROXY_PLAYING_ORDER_INORDER_ONCE
MEDIA_PROXY_PLAYING_ORDER_INORDER_REPEAT
MEDIA_PROXY_PLAYING_ORDER_OLDEST_ONCE
MEDIA_PROXY_PLAYING_ORDER_OLDEST_REPEAT
MEDIA_PROXY_PLAYING_ORDER_NEWEST_ONCE
MEDIA_PROXY_PLAYING_ORDER_NEWEST_REPEAT
MEDIA_PROXY_PLAYING_ORDER_SHUFFLE_ONCE
MEDIA_PROXY_PLAYING_ORDER_SHUFFLE_REPEAT
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_SINGLE_ONCE

Playing orders supported.

A bitmap, in the same order as the playing orders above. Note that playing order 1 corresponds to bit 0, and so on.

MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_SINGLE_REPEAT
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_INORDER_ONCE
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_INORDER_REPEAT
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_OLDEST_ONCE
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_OLDEST_REPEAT
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_NEWEST_ONCE
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_NEWEST_REPEAT
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_SHUFFLE_ONCE
MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_SHUFFLE_REPEAT
MEDIA_PROXY_STATE_INACTIVE

Media player states.

MEDIA_PROXY_STATE_PLAYING
MEDIA_PROXY_STATE_PAUSED
MEDIA_PROXY_STATE_SEEKING
MEDIA_PROXY_STATE_LAST
MEDIA_PROXY_OP_PLAY

Media player command opcodes.

MEDIA_PROXY_OP_PAUSE
MEDIA_PROXY_OP_FAST_REWIND
MEDIA_PROXY_OP_FAST_FORWARD
MEDIA_PROXY_OP_STOP
MEDIA_PROXY_OP_MOVE_RELATIVE
MEDIA_PROXY_OP_PREV_SEGMENT
MEDIA_PROXY_OP_NEXT_SEGMENT
MEDIA_PROXY_OP_FIRST_SEGMENT
MEDIA_PROXY_OP_LAST_SEGMENT
MEDIA_PROXY_OP_GOTO_SEGMENT
MEDIA_PROXY_OP_PREV_TRACK
MEDIA_PROXY_OP_NEXT_TRACK
MEDIA_PROXY_OP_FIRST_TRACK
MEDIA_PROXY_OP_LAST_TRACK
MEDIA_PROXY_OP_GOTO_TRACK
MEDIA_PROXY_OP_PREV_GROUP
MEDIA_PROXY_OP_NEXT_GROUP
MEDIA_PROXY_OP_FIRST_GROUP
MEDIA_PROXY_OP_LAST_GROUP
MEDIA_PROXY_OP_GOTO_GROUP
MEDIA_PROXY_OPCODES_SUPPORTED_LEN

Media player supported opcodes length.

MEDIA_PROXY_OP_SUP_PLAY

Media player supported command opcodes.

MEDIA_PROXY_OP_SUP_PAUSE
MEDIA_PROXY_OP_SUP_FAST_REWIND
MEDIA_PROXY_OP_SUP_FAST_FORWARD
MEDIA_PROXY_OP_SUP_STOP
MEDIA_PROXY_OP_SUP_MOVE_RELATIVE
MEDIA_PROXY_OP_SUP_PREV_SEGMENT
MEDIA_PROXY_OP_SUP_NEXT_SEGMENT
MEDIA_PROXY_OP_SUP_FIRST_SEGMENT
MEDIA_PROXY_OP_SUP_LAST_SEGMENT
MEDIA_PROXY_OP_SUP_GOTO_SEGMENT
MEDIA_PROXY_OP_SUP_PREV_TRACK
MEDIA_PROXY_OP_SUP_NEXT_TRACK
MEDIA_PROXY_OP_SUP_FIRST_TRACK
MEDIA_PROXY_OP_SUP_LAST_TRACK
MEDIA_PROXY_OP_SUP_GOTO_TRACK
MEDIA_PROXY_OP_SUP_PREV_GROUP
MEDIA_PROXY_OP_SUP_NEXT_GROUP
MEDIA_PROXY_OP_SUP_FIRST_GROUP
MEDIA_PROXY_OP_SUP_LAST_GROUP
MEDIA_PROXY_OP_SUP_GOTO_GROUP
MEDIA_PROXY_CMD_SUCCESS

Media player command result codes.

MEDIA_PROXY_CMD_NOT_SUPPORTED
MEDIA_PROXY_CMD_PLAYER_INACTIVE
MEDIA_PROXY_CMD_CANNOT_BE_COMPLETED
MEDIA_PROXY_SEARCH_TYPE_TRACK_NAME

Search operation type values.

MEDIA_PROXY_SEARCH_TYPE_ARTIST_NAME
MEDIA_PROXY_SEARCH_TYPE_ALBUM_NAME
MEDIA_PROXY_SEARCH_TYPE_GROUP_NAME
MEDIA_PROXY_SEARCH_TYPE_EARLIEST_YEAR
MEDIA_PROXY_SEARCH_TYPE_LATEST_YEAR
MEDIA_PROXY_SEARCH_TYPE_GENRE
MEDIA_PROXY_SEARCH_TYPE_ONLY_TRACKS
MEDIA_PROXY_SEARCH_TYPE_ONLY_GROUPS
MEDIA_PROXY_SEARCH_SUCCESS

Search operation result codes.

MEDIA_PROXY_SEARCH_FAILURE
MEDIA_PROXY_GROUP_OBJECT_TRACK_TYPE
MEDIA_PROXY_GROUP_OBJECT_GROUP_TYPE

Functions

int media_proxy_ctrl_register(struct media_proxy_ctrl_cbs *ctrl_cbs)

Register a controller with the media_proxy.

Parameters:
  • ctrl_cbs – Callbacks to the controller

Returns:

0 if success, errno on failure

int media_proxy_ctrl_discover_player(struct bt_conn *conn)

Discover a remote media player.

Discover a remote media player instance. The remote player instance will be discovered, and accessed, using Bluetooth, via the media control client and a remote media control service. This call will start a GATT discovery of the Media Control Service on the peer, and setup handles and subscriptions.

This shall be called once before any other actions can be executed for the remote player. The remote player instance will be returned in the discover_player() callback.

Parameters:
  • conn – The connection to do discovery for

Returns:

0 if success, errno on failure

int media_proxy_ctrl_get_player_name(struct media_player *player)

Read Media Player Name.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_icon_id(struct media_player *player)

Read Icon Object ID.

Get an ID (48 bit) that can be used to retrieve the Icon Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.2 and 4.1 for a description of the Icon Object.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_icon_url(struct media_player *player)

Read Icon URL.

Get a URL to the media player’s icon.

Parameters:
  • player – Media player instance pointer

int media_proxy_ctrl_get_track_title(struct media_player *player)

Read Track Title.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_track_duration(struct media_player *player)

Read Track Duration.

The duration of a track is measured in hundredths of a second.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_track_position(struct media_player *player)

Read Track Position.

The position of the player (the playing position) is measured in hundredths of a second from the beginning of the track

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_set_track_position(struct media_player *player, int32_t position)

Set Track Position.

Set the playing position of the media player in the current track. The position is given in in hundredths of a second, from the beginning of the track of the track for positive values, and (backwards) from the end of the track for negative values.

Parameters:
  • player – Media player instance pointer

  • position – The track position to set

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_playback_speed(struct media_player *player)

Get Playback Speed.

The playback speed parameter is related to the actual playback speed as follows: actual playback speed = 2^(speed_parameter/64)

A speed parameter of 0 corresponds to unity speed playback (i.e. playback at “normal” speed). A speed parameter of -128 corresponds to playback at one fourth of normal speed, 127 corresponds to playback at almost four times the normal speed.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_set_playback_speed(struct media_player *player, int8_t speed)

Set Playback Speed.

See the get_playback_speed() function for an explanation of the playback speed parameter.

Note that the media player may not support all possible values of the playback speed parameter. If the value given is not supported, and is higher than the current value, the player should set the playback speed to the next higher supported value. (And correspondingly to the next lower supported value for given values lower than the current value.)

Parameters:
  • player – Media player instance pointer

  • speed – The playback speed parameter to set

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_seeking_speed(struct media_player *player)

Get Seeking Speed.

The seeking speed gives the speed with which the player is seeking. It is a factor, relative to real-time playback speed - a factor four means seeking happens at four times the real-time playback speed. Positive values are for forward seeking, negative values for backwards seeking.

The seeking speed is not settable - a non-zero seeking speed is the result of “fast rewind” of “fast forward” commands.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_track_segments_id(struct media_player *player)

Read Current Track Segments Object ID.

Get an ID (48 bit) that can be used to retrieve the Current Track Segments Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.10 and 4.2 for a description of the Track Segments Object.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_current_track_id(struct media_player *player)

Read Current Track Object ID.

Get an ID (48 bit) that can be used to retrieve the Current Track Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.11 and 4.3 for a description of the Current Track Object.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_set_current_track_id(struct media_player *player, uint64_t id)

Set Current Track Object ID.

Change the player’s current track to the track given by the ID. (Behaves similarly to the goto track command.)

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

  • id – The ID of a track object

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_next_track_id(struct media_player *player)

Read Next Track Object ID.

Get an ID (48 bit) that can be used to retrieve the Next Track Object from an Object Transfer Service

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_set_next_track_id(struct media_player *player, uint64_t id)

Set Next Track Object ID.

Change the player’s next track to the track given by the ID.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

  • id – The ID of a track object

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_parent_group_id(struct media_player *player)

Read Parent Group Object ID.

Get an ID (48 bit) that can be used to retrieve the Parent Track Object from an Object Transfer Service

The parent group is the parent of the current group.

See the Media Control Service spec v1.0 sections 3.14 and 4.4 for a description of the Current Track Object.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_current_group_id(struct media_player *player)

Read Current Group Object ID.

Get an ID (48 bit) that can be used to retrieve the Current Track Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.14 and 4.4 for a description of the Current Group Object.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_set_current_group_id(struct media_player *player, uint64_t id)

Set Current Group Object ID.

Change the player’s current group to the group given by the ID, and the current track to the first track in that group.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

  • id – The ID of a group object

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_playing_order(struct media_player *player)

Read Playing Order.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_set_playing_order(struct media_player *player, uint8_t order)

Set Playing Order.

Set the media player’s playing order

Parameters:
  • player – Media player instance pointer

  • order – The playing order to set

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_playing_orders_supported(struct media_player *player)

Read Playing Orders Supported.

Read a bitmap containing the media player’s supported playing orders.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_media_state(struct media_player *player)

Read Media State.

Read the media player’s state

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_send_command(struct media_player *player, const struct mpl_cmd *command)

Send Command.

Send a command to the media player. Commands may cause the media player to change its state May result in two callbacks - one for the actual sending of the command to the player, one for the result of the command from the player.

Parameters:
  • player – Media player instance pointer

  • command – The command to send

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_commands_supported(struct media_player *player)

Read Commands Supported.

Read a bitmap containing the media player’s supported command opcodes.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

Set Search.

Write a search to the media player. If the search is successful, the search results will be available as a group object in the Object Transfer Service (OTS).

May result in up to three callbacks

  • one for the actual sending of the search to the player

  • one for the result code for the search from the player

  • if the search is successful, one for the the search results object ID in the OTs

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

  • search – The search to write

Returns:

0 if success, errno on failure.

int media_proxy_ctrl_get_search_results_id(struct media_player *player)

Read Search Results Object ID.

Get an ID (48 bit) that can be used to retrieve the Search Results Object from an Object Transfer Service

The search results object is a group object. The search results object only exists if a successful search operation has been done.

Requires Object Transfer Service

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

uint8_t media_proxy_ctrl_get_content_ctrl_id(struct media_player *player)

Read Content Control ID.

The content control ID identifies a content control service on a device, and links it to the corresponding audio stream.

Parameters:
  • player – Media player instance pointer

Returns:

0 if success, errno on failure.

int media_proxy_pl_register(struct media_proxy_pl_calls *pl_calls)

Register a player with the media proxy.

Register a player with the media proxy module, for use by media controllers.

The media proxy may call any non-NULL function pointers in the supplied media_proxy_pl_calls structure.

Parameters:
  • pl_calls – Function pointers to the media player’s calls

Returns:

0 if success, errno on failure

int media_proxy_pl_init(void)
struct bt_ots *bt_mcs_get_ots(void)
void media_proxy_pl_name_cb(const char *name)

Player name changed callback.

To be called when the player’s name is changed.

Parameters:
  • name – The name of the player

void media_proxy_pl_icon_url_cb(const char *url)

Player icon URL changed callback.

To be called when the player’s icon URL is changed.

Parameters:
  • url – The URL of the player’s icon

void media_proxy_pl_track_changed_cb(void)

Track changed callback.

To be called when the player’s current track is changed

void media_proxy_pl_track_title_cb(char *title)

Track title callback.

To be called when the player’s current track is changed

Parameters:
  • title – The title of the track

void media_proxy_pl_track_duration_cb(int32_t duration)

Track duration callback.

To be called when the current track’s duration is changed (e.g. due to a track change)

The track duration is given in hundredths of a second.

Parameters:
  • duration – The track duration

void media_proxy_pl_track_position_cb(int32_t position)

Track position callback.

To be called when the media player’s position in the track is changed, or when the player is paused or similar.

Exception: This callback should not be called when the position changes during regular playback, i.e. while the player is playing and playback happens at a constant speed.

The track position is given in hundredths of a second from the start of the track.

Parameters:
  • position – The media player’s position in the track

void media_proxy_pl_playback_speed_cb(int8_t speed)

Playback speed callback.

To be called when the playback speed is changed.

Parameters:
  • speed – The playback speed parameter

void media_proxy_pl_seeking_speed_cb(int8_t speed)

Seeking speed callback.

To be called when the seeking speed is changed.

Parameters:
  • speed – The seeking speed factor

void media_proxy_pl_current_track_id_cb(uint64_t id)

Current track object ID callback.

To be called when the ID of the current track is changed (e.g. due to a track change).

Parameters:
  • id – The ID of the current track object in the OTS

void media_proxy_pl_next_track_id_cb(uint64_t id)

Next track object ID callback.

To be called when the ID of the current track is changes

Parameters:
  • id – The ID of the next track object in the OTS

void media_proxy_pl_parent_group_id_cb(uint64_t id)

Parent group object ID callback.

To be called when the ID of the parent group is changed

Parameters:
  • id – The ID of the parent group object in the OTS

void media_proxy_pl_current_group_id_cb(uint64_t id)

Current group object ID callback.

To be called when the ID of the current group is changed

Parameters:
  • id – The ID of the current group object in the OTS

void media_proxy_pl_playing_order_cb(uint8_t order)

Playing order callback.

To be called when the playing order is changed

Parameters:
  • order – The playing order

void media_proxy_pl_media_state_cb(uint8_t state)

Media state callback.

To be called when the media state is changed

Parameters:
  • state – The media player’s state

void media_proxy_pl_command_cb(const struct mpl_cmd_ntf *cmd_ntf)

Command callback.

To be called when a command has been sent, to notify whether the command was successfully performed or not. See the MEDIA_PROXY_CMD_* result code defines.

Parameters:
  • cmd_ntf – The result of the command

void media_proxy_pl_commands_supported_cb(uint32_t opcodes)

Commands supported callback.

To be called when the set of commands supported is changed

Parameters:
  • opcodes – The supported commands opcodes

void media_proxy_pl_search_cb(uint8_t result_code)

Search callback.

To be called when a search has been set to notify whether the search was successfully performed or not. See the MEDIA_PROXY_SEARCH_* result code defines.

The actual results of the search, if successful, can be found in the search results object.

Parameters:
  • result_code – The result (success or failure) of the search

void media_proxy_pl_search_results_id_cb(uint64_t id)

Search Results object ID callback.

To be called when the ID of the search results is changed (typically as the result of a new successful search).

Parameters:
  • id – The ID of the search results object in the OTS

struct mpl_cmd
#include <media_proxy.h>

Media player command.

struct mpl_cmd_ntf
#include <media_proxy.h>

Media command notification.

struct mpl_sci
#include <media_proxy.h>

Search control item.

Public Members

uint8_t len

Length of type and parameter.

uint8_t type

MEDIA_PROXY_SEARCH_TYPE_<…>

char param[62]

Search parameter.

#include <media_proxy.h>

Search.

struct media_proxy_ctrl_cbs
#include <media_proxy.h>

Callbacks to a controller, from the media proxy.

Given by a controller when registering

Public Members

void (*local_player_instance)(struct media_player *player, int err)

Media Player Instance callback.

Called when the local Media Player instance is registered or read (TODO). Also called if the local player instance is already registered when the controller is registered. Provides the controller with the pointer to the local player instance.

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, or errno on negative value.

void (*player_name_recv)(struct media_player *player, int err, const char *name)

Media Player Name receive callback.

Called when the Media Player Name is read or changed See also media_proxy_ctrl_name_get()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param name:

The name of the media player

void (*icon_id_recv)(struct media_player *player, int err, uint64_t id)

Media Player Icon Object ID receive callback.

Called when the Media Player Icon Object ID is read See also media_proxy_ctrl_get_icon_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID of the Icon object in the Object Transfer Service (48 bits)

void (*icon_url_recv)(struct media_player *player, int err, const char *url)

Media Player Icon URL receive callback.

Called when the Media Player Icon URL is read See also media_proxy_ctrl_get_icon_url()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param url:

The URL of the icon

void (*track_changed_recv)(struct media_player *player, int err)

Track changed receive callback.

Called when the Current Track is changed

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

void (*track_title_recv)(struct media_player *player, int err, const char *title)

Track Title receive callback.

Called when the Track Title is read or changed See also media_proxy_ctrl_get_track_title()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param title:

The title of the current track

void (*track_duration_recv)(struct media_player *player, int err, int32_t duration)

Track Duration receive callback.

Called when the Track Duration is read or changed See also media_proxy_ctrl_get_track_duration()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param duration:

The duration of the current track

void (*track_position_recv)(struct media_player *player, int err, int32_t position)

Track Position receive callback.

Called when the Track Position is read or changed See also media_proxy_ctrl_get_track_position() and media_proxy_ctrl_set_track_position()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param position:

The player’s position in the track

void (*track_position_write)(struct media_player *player, int err, int32_t position)

Track Position write callback.

Called when the Track Position is written See also media_proxy_ctrl_set_track_position().

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param position:

The position given attempted to write

void (*playback_speed_recv)(struct media_player *player, int err, int8_t speed)

Playback Speed receive callback.

Called when the Playback Speed is read or changed See also media_proxy_ctrl_get_playback_speed() and media_proxy_ctrl_set_playback_speed()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param speed:

The playback speed parameter

void (*playback_speed_write)(struct media_player *player, int err, int8_t speed)

Playback Speed write callback.

Called when the Playback Speed is written See also media_proxy_ctrl_set_playback_speed()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param speed:

The playback speed parameter attempted to write

void (*seeking_speed_recv)(struct media_player *player, int err, int8_t speed)

Seeking Speed receive callback.

Called when the Seeking Speed is read or changed See also media_proxy_ctrl_get_seeking_speed()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param speed:

The seeking speed factor

void (*track_segments_id_recv)(struct media_player *player, int err, uint64_t id)

Track Segments Object ID receive callback.

Called when the Track Segments Object ID is read See also media_proxy_ctrl_get_track_segments_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID of the track segments object in Object Transfer Service (48 bits)

void (*current_track_id_recv)(struct media_player *player, int err, uint64_t id)

Current Track Object ID receive callback.

Called when the Current Track Object ID is read or changed See also media_proxy_ctrl_get_current_track_id() and media_proxy_ctrl_set_current_track_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID of the current track object in Object Transfer Service (48 bits)

void (*current_track_id_write)(struct media_player *player, int err, uint64_t id)

Current Track Object ID write callback.

Called when the Current Track Object ID is written See also media_proxy_ctrl_set_current_track_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID (48 bits) attempted to write

void (*next_track_id_recv)(struct media_player *player, int err, uint64_t id)

Next Track Object ID receive callback.

Called when the Next Track Object ID is read or changed See also media_proxy_ctrl_get_next_track_id() and media_proxy_ctrl_set_next_track_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID of the next track object in Object Transfer Service (48 bits)

void (*next_track_id_write)(struct media_player *player, int err, uint64_t id)

Next Track Object ID write callback.

Called when the Next Track Object ID is written See also media_proxy_ctrl_set_next_track_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID (48 bits) attempted to write

void (*parent_group_id_recv)(struct media_player *player, int err, uint64_t id)

Parent Group Object ID receive callback.

Called when the Parent Group Object ID is read or changed See also media_proxy_ctrl_get_parent_group_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID of the parent group object in Object Transfer Service (48 bits)

void (*current_group_id_recv)(struct media_player *player, int err, uint64_t id)

Current Group Object ID receive callback.

Called when the Current Group Object ID is read or changed See also media_proxy_ctrl_get_current_group_id() and media_proxy_ctrl_set_current_group_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID of the current group object in Object Transfer Service (48 bits)

void (*current_group_id_write)(struct media_player *player, int err, uint64_t id)

Current Group Object ID write callback.

Called when the Current Group Object ID is written See also media_proxy_ctrl_set_current_group_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID (48 bits) attempted to write

void (*playing_order_recv)(struct media_player *player, int err, uint8_t order)

Playing Order receive callback.

Called when the Playing Order is read or changed See also media_proxy_ctrl_get_playing_order() and media_proxy_ctrl_set_playing_order()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param order:

The playing order

void (*playing_order_write)(struct media_player *player, int err, uint8_t order)

Playing Order write callback.

Called when the Playing Order is written See also media_proxy_ctrl_set_playing_order()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param order:

The playing order attempted to write

void (*playing_orders_supported_recv)(struct media_player *player, int err, uint16_t orders)

Playing Orders Supported receive callback.

Called when the Playing Orders Supported is read See also media_proxy_ctrl_get_playing_orders_supported()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param orders:

The playing orders supported

void (*media_state_recv)(struct media_player *player, int err, uint8_t state)

Media State receive callback.

Called when the Media State is read or changed See also media_proxy_ctrl_get_media_state() and media_proxy_ctrl_send_command()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param state:

The media player state

void (*command_send)(struct media_player *player, int err, const struct mpl_cmd *cmd)

Command send callback.

Called when a command has been sent See also media_proxy_ctrl_send_command()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param cmd:

The command sent

void (*command_recv)(struct media_player *player, int err, const struct mpl_cmd_ntf *result)

Command result receive callback.

Called when a command result has been received See also media_proxy_ctrl_send_command()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param result:

The result received

void (*commands_supported_recv)(struct media_player *player, int err, uint32_t opcodes)

Commands supported receive callback.

Called when the Commands Supported is read or changed See also media_proxy_ctrl_get_commands_supported()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param opcodes:

The supported command opcodes (bitmap)

void (*search_send)(struct media_player *player, int err, const struct mpl_search *search)

Search send callback.

Called when a search has been sent See also media_proxy_ctrl_send_search()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param search:

The search sent

void (*search_recv)(struct media_player *player, int err, uint8_t result_code)

Search result code receive callback.

Called when a search result code has been received See also media_proxy_ctrl_send_search()

The search result code tells whether the search was successful or not. For a successful search, the actual results of the search (i.e. what was found as a result of the search)can be accessed using the Search Results Object ID. The Search Results Object ID has a separate callback - search_results_id_recv().

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param result_code:

Search result code

void (*search_results_id_recv)(struct media_player *player, int err, uint64_t id)

Search Results Object ID receive callback See also media_proxy_ctrl_get_search_results_id()

Called when the Search Results Object ID is read or changed

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param id:

The ID of the search results object in Object Transfer Service (48 bits)

void (*content_ctrl_id_recv)(struct media_player *player, int err, uint8_t ccid)

Content Control ID receive callback.

Called when the Content Control ID is read See also media_proxy_ctrl_get_content_ctrl_id()

Param player:

Media player instance pointer

Param err:

Error value. 0 on success, GATT error on positive value or errno on negative value.

Param ccid:

The content control ID

struct media_proxy_pl_calls
#include <media_proxy.h>

Available calls in a player, that the media proxy can call.

Given by a player when registering.

Public Members

const char *(*get_player_name)(void)

Read Media Player Name.

Return:

The name of the media player

uint64_t (*get_icon_id)(void)

Read Icon Object ID.

Get an ID (48 bit) that can be used to retrieve the Icon Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.2 and 4.1 for a description of the Icon Object.

Return:

The Icon Object ID

const char *(*get_icon_url)(void)

Read Icon URL.

Get a URL to the media player’s icon.

Return:

The URL of the Icon

const char *(*get_track_title)(void)

Read Track Title.

Return:

The title of the current track

int32_t (*get_track_duration)(void)

Read Track Duration.

The duration of a track is measured in hundredths of a second.

Return:

The duration of the current track

int32_t (*get_track_position)(void)

Read Track Position.

The position of the player (the playing position) is measured in hundredths of a second from the beginning of the track

Return:

The position of the player in the current track

void (*set_track_position)(int32_t position)

Set Track Position.

Set the playing position of the media player in the current track. The position is given in in hundredths of a second, from the beginning of the track of the track for positive values, and (backwards) from the end of the track for negative values.

Param position:

The player position to set

int8_t (*get_playback_speed)(void)

Get Playback Speed.

The playback speed parameter is related to the actual playback speed as follows: actual playback speed = 2^(speed_parameter/64)

A speed parameter of 0 corresponds to unity speed playback (i.e. playback at “normal” speed). A speed parameter of -128 corresponds to playback at one fourth of normal speed, 127 corresponds to playback at almost four times the normal speed.

Return:

The playback speed parameter

void (*set_playback_speed)(int8_t speed)

Set Playback Speed.

See the get_playback_speed() function for an explanation of the playback speed parameter.

Note that the media player may not support all possible values of the playback speed parameter. If the value given is not supported, and is higher than the current value, the player should set the playback speed to the next higher supported value. (And correspondingly to the next lower supported value for given values lower than the current value.)

Param speed:

The playback speed parameter to set

int8_t (*get_seeking_speed)(void)

Get Seeking Speed.

The seeking speed gives the speed with which the player is seeking. It is a factor, relative to real-time playback speed - a factor four means seeking happens at four times the real-time playback speed. Positive values are for forward seeking, negative values for backwards seeking.

The seeking speed is not settable - a non-zero seeking speed is the result of “fast rewind” of “fast forward” commands.

Return:

The seeking speed factor

uint64_t (*get_track_segments_id)(void)

Read Current Track Segments Object ID.

Get an ID (48 bit) that can be used to retrieve the Current Track Segments Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.10 and 4.2 for a description of the Track Segments Object.

Return:

Current The Track Segments Object ID

uint64_t (*get_current_track_id)(void)

Read Current Track Object ID.

Get an ID (48 bit) that can be used to retrieve the Current Track Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.11 and 4.3 for a description of the Current Track Object.

Return:

The Current Track Object ID

void (*set_current_track_id)(uint64_t id)

Set Current Track Object ID.

Change the player’s current track to the track given by the ID. (Behaves similarly to the goto track command.)

Param id:

The ID of a track object

uint64_t (*get_next_track_id)(void)

Read Next Track Object ID.

Get an ID (48 bit) that can be used to retrieve the Next Track Object from an Object Transfer Service

Return:

The Next Track Object ID

void (*set_next_track_id)(uint64_t id)

Set Next Track Object ID.

Change the player’s next track to the track given by the ID.

Param id:

The ID of a track object

uint64_t (*get_parent_group_id)(void)

Read Parent Group Object ID.

Get an ID (48 bit) that can be used to retrieve the Parent Track Object from an Object Transfer Service

The parent group is the parent of the current group.

See the Media Control Service spec v1.0 sections 3.14 and 4.4 for a description of the Current Track Object.

Return:

The Current Group Object ID

uint64_t (*get_current_group_id)(void)

Read Current Group Object ID.

Get an ID (48 bit) that can be used to retrieve the Current Track Object from an Object Transfer Service

See the Media Control Service spec v1.0 sections 3.14 and 4.4 for a description of the Current Group Object.

Return:

The Current Group Object ID

void (*set_current_group_id)(uint64_t id)

Set Current Group Object ID.

Change the player’s current group to the group given by the ID, and the current track to the first track in that group.

Param id:

The ID of a group object

uint8_t (*get_playing_order)(void)

Read Playing Order.

return The media player’s current playing order

void (*set_playing_order)(uint8_t order)

Set Playing Order.

Set the media player’s playing order. See the MEDIA_PROXY_PLAYING_ORDER_* defines.

Param order:

The playing order to set

uint16_t (*get_playing_orders_supported)(void)

Read Playing Orders Supported.

Read a bitmap containing the media player’s supported playing orders. See the MEDIA_PROXY_PLAYING_ORDERS_SUPPORTED_* defines.

Return:

The media player’s supported playing orders

uint8_t (*get_media_state)(void)

Read Media State.

Read the media player’s state See the MEDIA_PROXY_MEDIA_STATE_* defines.

Return:

The media player’s state

void (*send_command)(const struct mpl_cmd *command)

Send Command.

Send a command to the media player. For command opcodes (play, pause, …) - see the MEDIA_PROXY_OP_* defines.

Param command:

The command to send

uint32_t (*get_commands_supported)(void)

Read Commands Supported.

Read a bitmap containing the media player’s supported command opcodes. See the MEDIA_PROXY_OP_SUP_* defines.

Return:

The media player’s supported command opcodes

Set Search.

Write a search to the media player. (For the formatting of a search, see the Media Control Service spec and the mcs.h file.)

Param search:

The search to write

uint64_t (*get_search_results_id)(void)

Read Search Results Object ID.

Get an ID (48 bit) that can be used to retrieve the Search Results Object from an Object Transfer Service

The search results object is a group object. The search results object only exists if a successful search operation has been done.

Return:

The Search Results Object ID

uint8_t (*get_content_ctrl_id)(void)

Read Content Control ID.

The content control ID identifies a content control service on a device, and links it to the corresponding audio stream.

Return:

The content control ID for the media player

Media Control Client

group bt_gatt_mcc

Bluetooth Media Control Client (MCC) interface.

Updated to the Media Control Profile specification revision 1.0

[Experimental] Users should note that the APIs can change as a part of ongoing development.

Typedefs

typedef void (*bt_mcc_discover_mcs_cb)(struct bt_conn *conn, int err)

Callback function for bt_mcc_discover_mcs()

Called when a media control server is discovered

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

typedef void (*bt_mcc_read_player_name_cb)(struct bt_conn *conn, int err, const char *name)

Callback function for bt_mcc_read_player_name()

Called when the player name is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param name:

Player name

typedef void (*bt_mcc_read_icon_obj_id_cb)(struct bt_conn *conn, int err, uint64_t icon_id)

Callback function for bt_mcc_read_icon_obj_id()

Called when the icon object ID is read

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param icon_id:

The ID of the Icon Object. This is a UINT48 in a uint64_t

typedef void (*bt_mcc_read_icon_url_cb)(struct bt_conn *conn, int err, const char *icon_url)

Callback function for bt_mcc_read_icon_url()

Called when the icon URL is read

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param icon_url:

The URL of the Icon

typedef void (*bt_mcc_track_changed_ntf_cb)(struct bt_conn *conn, int err)

Callback function for track changed notifications.

Called when a track change is notified.

The track changed characteristic is a special case. It can not be read or set, it can only be notified.

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

typedef void (*bt_mcc_read_track_title_cb)(struct bt_conn *conn, int err, const char *title)

Callback function for bt_mcc_read_track_title()

Called when the track title is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param title:

The title of the track

typedef void (*bt_mcc_read_track_duration_cb)(struct bt_conn *conn, int err, int32_t dur)

Callback function for bt_mcc_read_track_duration()

Called when the track duration is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param dur:

The duration of the track

typedef void (*bt_mcc_read_track_position_cb)(struct bt_conn *conn, int err, int32_t pos)

Callback function for bt_mcc_read_track_position()

Called when the track position is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param pos:

The Track Position

typedef void (*bt_mcc_set_track_position_cb)(struct bt_conn *conn, int err, int32_t pos)

Callback function for bt_mcc_set_track_position()

Called when the track position is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param pos:

The Track Position set (or attempted to set)

typedef void (*bt_mcc_read_playback_speed_cb)(struct bt_conn *conn, int err, int8_t speed)

Callback function for bt_mcc_read_playback_speed()

Called when the playback speed is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param speed:

The Playback Speed

typedef void (*bt_mcc_set_playback_speed_cb)(struct bt_conn *conn, int err, int8_t speed)

Callback function for bt_mcc_set_playback_speed()

Called when the playback speed is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param speed:

The Playback Speed set (or attempted to set)

typedef void (*bt_mcc_read_seeking_speed_cb)(struct bt_conn *conn, int err, int8_t speed)

Callback function for bt_mcc_read_seeking_speed()

Called when the seeking speed is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param speed:

The Seeking Speed

typedef void (*bt_mcc_read_segments_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_read_segments_obj_id()

Called when the track segments object ID is read

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Track Segments Object ID (UINT48)

typedef void (*bt_mcc_read_current_track_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_read_current_track_obj_id()

Called when the current track object ID is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Current Track Object ID (UINT48)

typedef void (*bt_mcc_set_current_track_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_set_current_track_obj_id()

Called when the current track object ID is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Object ID (UINT48) set (or attempted to set)

typedef void (*bt_mcc_read_next_track_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_read_next_track_obj_id_obj()

Called when the next track object ID is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Next Track Object ID (UINT48)

typedef void (*bt_mcc_set_next_track_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_set_next_track_obj_id()

Called when the next track object ID is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Object ID (UINT48) set (or attempted to set)

typedef void (*bt_mcc_read_parent_group_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_read_parent_group_obj_id()

Called when the parent group object ID is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Parent Group Object ID (UINT48)

typedef void (*bt_mcc_read_current_group_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_read_current_group_obj_id()

Called when the current group object ID is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Current Group Object ID (UINT48)

typedef void (*bt_mcc_set_current_group_obj_id_cb)(struct bt_conn *conn, int err, uint64_t obj_id)

Callback function for bt_mcc_set_current_group_obj_id()

Called when the current group object ID is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param obj_id:

The Object ID (UINT48) set (or attempted to set)

typedef void (*bt_mcc_read_playing_order_cb)(struct bt_conn *conn, int err, uint8_t order)

Callback function for bt_mcc_read_playing_order()

Called when the playing order is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param order:

The playback order

typedef void (*bt_mcc_set_playing_order_cb)(struct bt_conn *conn, int err, uint8_t order)

Callback function for bt_mcc_set_playing_order()

Called when the playing order is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param order:

The Playing Order set (or attempted to set)

typedef void (*bt_mcc_read_playing_orders_supported_cb)(struct bt_conn *conn, int err, uint16_t orders)

Callback function for bt_mcc_read_playing_orders_supported()

Called when the supported playing orders are read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param orders:

The playing orders supported (bitmap)

typedef void (*bt_mcc_read_media_state_cb)(struct bt_conn *conn, int err, uint8_t state)

Callback function for bt_mcc_read_media_state()

Called when the media state is read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param state:

The Media State

typedef void (*bt_mcc_send_cmd_cb)(struct bt_conn *conn, int err, const struct mpl_cmd *cmd)

Callback function for bt_mcc_send_cmd()

Called when a command is sent, i.e. when the media control point is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param cmd:

The command sent

typedef void (*bt_mcc_cmd_ntf_cb)(struct bt_conn *conn, int err, const struct mpl_cmd_ntf *ntf)

Callback function for command notifications.

Called when the media control point is notified

Notifications for commands (i.e. for writes to the media control point) use a different parameter structure than what is used for sending commands (writing to the media control point)

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param ntf:

The command notification

typedef void (*bt_mcc_read_opcodes_supported_cb)(struct bt_conn *conn, int err, uint32_t opcodes)

Callback function for bt_mcc_read_opcodes_supported()

Called when the supported opcodes (commands) are read or notified

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param opcodes:

The supported opcodes

typedef void (*bt_mcc_send_search_cb)(struct bt_conn *conn, int err, const struct mpl_search *search)

Callback function for bt_mcc_send_search()

Called when a search is sent, i.e. when the search control point is set

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param search:

The search set (or attempted to set)

typedef void (*bt_mcc_search_ntf_cb)(struct bt_conn *conn, int err, uint8_t result_code)

Callback function for search notifications.

Called when the search control point is notified

Notifications for searches (i.e. for writes to the search control point) use a different parameter structure than what is used for sending searches (writing to the search control point)

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param result_code:

The search notification

typedef void (*bt_mcc_read_search_results_obj_id_cb)(struct bt_conn *conn, int err, uint64_t id)

Callback function for bt_mcc_read_search_results_obj_id()

Called when the search results object ID is read or notified

Note that the Search Results Object ID value may be zero, in case the characteristic does not exist on the server. (This will be the case if there has not been a successful search.)

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param id:

The Search Results Object ID (UINT48)

typedef void (*bt_mcc_read_content_control_id_cb)(struct bt_conn *conn, int err, uint8_t ccid)

Callback function for bt_mcc_read_content_control_id()

Called when the content control ID is read

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param ccid:

The Content Control ID

typedef void (*bt_mcc_otc_obj_selected_cb)(struct bt_conn *conn, int err)

Callback function for object selected.

Called when an object is selected

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

typedef void (*bt_mcc_otc_obj_metadata_cb)(struct bt_conn *conn, int err)

Callback function for bt_mcc_otc_read_object_meatadata()

Called when object metadata is read

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

typedef void (*bt_mcc_otc_read_icon_object_cb)(struct bt_conn *conn, int err, struct net_buf_simple *buf)

Callback function for bt_mcc_otc_read_icon_object()

Called when the icon object is read

If err is EMSGSIZE, the object contents have been truncated.

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param buf:

Buffer containing the object contents

typedef void (*bt_mcc_otc_read_track_segments_object_cb)(struct bt_conn *conn, int err, struct net_buf_simple *buf)

Callback function for bt_mcc_otc_read_track_segments_object()

Called when the track segments object is read

If err is EMSGSIZE, the object contents have been truncated.

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param buf:

Buffer containing the object contents

typedef void (*bt_mcc_otc_read_current_track_object_cb)(struct bt_conn *conn, int err, struct net_buf_simple *buf)

Callback function for bt_mcc_otc_read_current_track_object()

Called when the current track object is read

If err is EMSGSIZE, the object contents have been truncated.

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param buf:

Buffer containing the object contents

typedef void (*bt_mcc_otc_read_next_track_object_cb)(struct bt_conn *conn, int err, struct net_buf_simple *buf)

Callback function for bt_mcc_otc_read_next_track_object()

Called when the next track object is read

If err is EMSGSIZE, the object contents have been truncated.

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param buf:

Buffer containing the object contents

typedef void (*bt_mcc_otc_read_parent_group_object_cb)(struct bt_conn *conn, int err, struct net_buf_simple *buf)

Callback function for bt_mcc_otc_read_parent_group_object()

Called when the parent group object is read

If err is EMSGSIZE, the object contents have been truncated.

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param buf:

Buffer containing the object contents

typedef void (*bt_mcc_otc_read_current_group_object_cb)(struct bt_conn *conn, int err, struct net_buf_simple *buf)

Callback function for bt_mcc_otc_read_current_group_object()

Called when the current group object is read

If err is EMSGSIZE, the object contents have been truncated.

Param conn:

The connection that was used to initialise the media control client

Param err:

Error value. 0 on success, GATT error or errno on fail

Param buf:

Buffer containing the object contents

Functions

int bt_mcc_init(struct bt_mcc_cb *cb)

Initialize Media Control Client.

Parameters:
  • cb – Callbacks to be used

Returns:

0 if success, errno on failure.

int bt_mcc_discover_mcs(struct bt_conn *conn, bool subscribe)

Discover Media Control Service.

Discover Media Control Service (MCS) on the server given by the connection Optionally subscribe to notifications.

Shall be called once, after media control client initialization and before using other media control client functionality.

Parameters:
  • conn – Connection to the peer device

  • subscribe – Whether to subscribe to notifications

Returns:

0 if success, errno on failure.

int bt_mcc_read_player_name(struct bt_conn *conn)

Read Media Player Name.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_icon_obj_id(struct bt_conn *conn)

Read Icon Object ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_icon_url(struct bt_conn *conn)

Read Icon Object URL.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_track_title(struct bt_conn *conn)

Read Track Title.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_track_duration(struct bt_conn *conn)

Read Track Duration.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_track_position(struct bt_conn *conn)

Read Track Position.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_set_track_position(struct bt_conn *conn, int32_t pos)

Set Track position.

Parameters:
  • conn – Connection to the peer device

  • pos – Track position

Returns:

0 if success, errno on failure.

int bt_mcc_read_playback_speed(struct bt_conn *conn)

Read Playback speed.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_set_playback_speed(struct bt_conn *conn, int8_t speed)

Set Playback Speed.

Parameters:
  • conn – Connection to the peer device

  • speed – Playback speed

Returns:

0 if success, errno on failure.

int bt_mcc_read_seeking_speed(struct bt_conn *conn)

Read Seeking speed.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_segments_obj_id(struct bt_conn *conn)

Read Track Segments Object ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_current_track_obj_id(struct bt_conn *conn)

Read Current Track Object ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_set_current_track_obj_id(struct bt_conn *conn, uint64_t id)

Set Current Track Object ID.

Set the Current Track to the the track given by the id parameter

Parameters:
  • conn – Connection to the peer device

  • id – Object Transfer Service ID (UINT48) of the track to set as the current track

Returns:

0 if success, errno on failure.

int bt_mcc_read_next_track_obj_id(struct bt_conn *conn)

Read Next Track Object ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_set_next_track_obj_id(struct bt_conn *conn, uint64_t id)

Set Next Track Object ID.

Set the Next Track to the the track given by the id parameter

Parameters:
  • conn – Connection to the peer device

  • id – Object Transfer Service ID (UINT48) of the track to set as the next track

Returns:

0 if success, errno on failure.

int bt_mcc_read_current_group_obj_id(struct bt_conn *conn)

Read Current Group Object ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_set_current_group_obj_id(struct bt_conn *conn, uint64_t id)

Set Current Group Object ID.

Set the Current Group to the the group given by the id parameter

Parameters:
  • conn – Connection to the peer device

  • id – Object Transfer Service ID (UINT48) of the group to set as the current group

Returns:

0 if success, errno on failure.

int bt_mcc_read_parent_group_obj_id(struct bt_conn *conn)

Read Parent Group Object ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_playing_order(struct bt_conn *conn)

Read Playing Order.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_set_playing_order(struct bt_conn *conn, uint8_t order)

Set Playing Order.

Parameters:
  • conn – Connection to the peer device

  • order – Playing order

Returns:

0 if success, errno on failure.

int bt_mcc_read_playing_orders_supported(struct bt_conn *conn)

Read Playing Orders Supported.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_media_state(struct bt_conn *conn)

Read Media State.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_send_cmd(struct bt_conn *conn, const struct mpl_cmd *cmd)

Send a command.

Write a command (e.g. “play”, “pause”) to the server’s media control point.

Parameters:
  • conn – Connection to the peer device

  • cmd – The command to send

Returns:

0 if success, errno on failure.

int bt_mcc_read_opcodes_supported(struct bt_conn *conn)

Read Opcodes Supported.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

Send a Search command.

Write a search to the server’s search control point.

Parameters:
  • conn – Connection to the peer device

  • search – The search

Returns:

0 if success, errno on failure.

int bt_mcc_read_search_results_obj_id(struct bt_conn *conn)

Search Results Group Object ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_read_content_control_id(struct bt_conn *conn)

Read Content Control ID.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_otc_read_object_metadata(struct bt_conn *conn)

Read the current object metadata.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_otc_read_icon_object(struct bt_conn *conn)

Read the Icon Object.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_otc_read_track_segments_object(struct bt_conn *conn)

Read the Track Segments Object.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_otc_read_current_track_object(struct bt_conn *conn)

Read the Current Track Object.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_otc_read_next_track_object(struct bt_conn *conn)

Read the Next Track Object.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_otc_read_current_group_object(struct bt_conn *conn)

Read the Current Group Object.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

int bt_mcc_otc_read_parent_group_object(struct bt_conn *conn)

Read the Parent Group Object.

Parameters:
  • conn – Connection to the peer device

Returns:

0 if success, errno on failure.

struct bt_ots_client *bt_mcc_otc_inst(struct bt_conn *conn)

Look up MCC OTC instance.

Parameters:
  • conn – The connection to the MCC server.

Returns:

Pointer to a MCC OTC instance if found else NULL.

struct bt_mcc_cb
#include <mcc.h>

Media control client callbacks.