Message ID | 20221011113116.70514-1-sathish.narasimman@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [BlueZ,v3,1/3] audio/transport: Adding volume callback to media transport | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=684476 ---Test result--- Test Summary: CheckPatch FAIL 2.38 seconds GitLint PASS 1.31 seconds Prep - Setup ELL PASS 30.54 seconds Build - Prep PASS 0.78 seconds Build - Configure PASS 9.45 seconds Build - Make PASS 1039.19 seconds Make Check PASS 12.27 seconds Make Check w/Valgrind PASS 331.94 seconds Make Distcheck PASS 273.49 seconds Build w/ext ELL - Configure PASS 9.51 seconds Build w/ext ELL - Make PASS 99.86 seconds Incremental Build w/ patches PASS 350.20 seconds Scan Build PASS 642.82 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script with rule in .checkpatch.conf Output: [BlueZ,v3,1/3] audio/transport: Adding volume callback to media transport WARNING:SPACING: Unnecessary space before function pointer arguments #87: FILE: profiles/audio/transport.c:120: + void (*set_volume) (struct media_transport *transp, WARNING:SPACING: Unnecessary space before function pointer arguments #89: FILE: profiles/audio/transport.c:122: + int8_t (*get_volume) (struct media_transport *transp); /github/workspace/src/13003868.patch total: 0 errors, 2 warnings, 198 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. /github/workspace/src/13003868.patch has style problems, please review. NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. --- Regards, Linux Bluetooth
Hi Sathish, On Tue, Oct 11, 2022 at 4:38 AM Sathish Narasimman <sathish.narasimman@intel.com> wrote: > > Initialize set_volume and get_volume to media transport and update the > volume when media_transport_update_device_volume is called. > --- > profiles/audio/transport.c | 126 +++++++++++++++++++++++++++++++++++-- > 1 file changed, 120 insertions(+), 6 deletions(-) > > diff --git a/profiles/audio/transport.c b/profiles/audio/transport.c > index 41339da51e17..a1445cba7993 100644 > --- a/profiles/audio/transport.c > +++ b/profiles/audio/transport.c > @@ -91,6 +91,7 @@ struct bap_transport { > uint8_t rtn; > uint16_t latency; > uint32_t delay; > + int8_t volume; > }; > > struct media_transport { > @@ -116,6 +117,9 @@ struct media_transport { > guint id); > void (*set_state) (struct media_transport *transport, > transport_state_t state); > + void (*set_volume) (struct media_transport *transp, > + int8_t volume); > + int8_t (*get_volume) (struct media_transport *transp); > GDestroyNotify destroy; > void *data; > }; > @@ -769,6 +773,58 @@ error: > "Invalid arguments in method call"); > } > > +static gboolean volume_bap_exists(const GDBusPropertyTable *property, > + void *data) > +{ > + struct media_transport *transport = data; > + struct bap_transport *bap = transport->data; > + > + return bap->volume >= 0; > +} > + > +static gboolean get_bap_volume(const GDBusPropertyTable *property, > + DBusMessageIter *iter, void *data) > +{ > + struct media_transport *transport = data; > + struct bap_transport *bap = transport->data; > + uint16_t volume = (uint16_t)bap->volume; > + > + dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT16, &volume); > + > + return TRUE; > +} > + > +static void set_bap_volume(const GDBusPropertyTable *property, > + DBusMessageIter *iter, GDBusPendingPropertySet id, > + void *data) > +{ > + struct media_transport *transport = data; > + struct bap_transport *bap = transport->data; > + uint16_t arg; > + int8_t volume; > + > + if (dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_UINT16) > + goto error; > + > + dbus_message_iter_get_basic(iter, &arg); > + if (arg > INT8_MAX) > + goto error; > + > + g_dbus_pending_property_success(id); > + > + volume = (int8_t)arg; > + if (bap->volume == volume) > + return; > + > + /*TODO vcp_send_volume */ What is this TODO item for? Can we complete it right now? Afaik we should be able to handle local changes and notify it to remote peers or that is not how VCP works? > + return; > + > +error: > + g_dbus_pending_property_error(id, ERROR_INTERFACE ".InvalidArguments", > + "Invalid arguments in method call"); > +} > + > + > static gboolean endpoint_exists(const GDBusPropertyTable *property, void *data) > { > struct media_transport *transport = data; > @@ -970,6 +1026,7 @@ static const GDBusPropertyTable bap_properties[] = { > { "Retransmissions", "y", get_retransmissions }, > { "Latency", "q", get_latency }, > { "Delay", "u", get_delay }, > + { "Volume", "q", get_bap_volume, set_bap_volume, volume_bap_exists }, Now that we have set_volume/get_volume as callbacks these could be changed to use them instead of having dedicated callback like abouve, something like: https://gist.github.com/Vudentz/19edcf96735567c1f7437a5e1dee7e04 > { "Endpoint", "o", get_endpoint, NULL, endpoint_exists }, > { "Location", "u", get_location }, > { "Metadata", "ay", get_metadata }, > @@ -1048,6 +1105,31 @@ static void source_state_changed(struct btd_service *service, > transport_update_playing(transport, FALSE); > } > > +static int8_t get_volume_a2dp(struct media_transport *transport) > +{ > + struct a2dp_transport *a2dp = transport->data; > + > + return a2dp->volume; > +} > + > +static void set_volume_a2dp(struct media_transport *transport, int8_t volume) > +{ > + struct a2dp_transport *a2dp = transport->data; > + > + if (volume < 0) > + return; > + > + /* Check if volume really changed */ > + if (a2dp->volume == volume) > + return; > + > + a2dp->volume = volume; > + > + g_dbus_emit_property_changed(btd_get_dbus_connection(), > + transport->path, > + MEDIA_TRANSPORT_INTERFACE, "Volume"); > +} > + > static int media_transport_init_source(struct media_transport *transport) > { > struct btd_service *service; > @@ -1061,6 +1143,8 @@ static int media_transport_init_source(struct media_transport *transport) > > transport->resume = resume_a2dp; > transport->suspend = suspend_a2dp; > + transport->set_volume = set_volume_a2dp; > + transport->get_volume = get_volume_a2dp; > transport->cancel = cancel_a2dp; > transport->data = a2dp; > transport->destroy = destroy_a2dp; > @@ -1387,6 +1471,31 @@ static void free_bap(void *data) > free(bap); > } > > +static void set_volume_bap(struct media_transport *transport, int8_t volume) > +{ > + struct bap_transport *bap = transport->data; > + > + if (volume < 0) > + return; > + > + /* Check if volume really changed */ > + if (bap->volume == volume) > + return; > + > + bap->volume = volume; > + > + g_dbus_emit_property_changed(btd_get_dbus_connection(), > + transport->path, > + MEDIA_TRANSPORT_INTERFACE, "Volume"); > +} > + > +static int8_t get_volume_bap(struct media_transport *transport) > +{ > + struct bap_transport *bap = transport->data; > + > + return bap->volume; > +} > + > static int media_transport_init_bap(struct media_transport *transport, > void *stream) > { > @@ -1403,6 +1512,7 @@ static int media_transport_init_bap(struct media_transport *transport, > bap->rtn = qos->rtn; > bap->latency = qos->latency; > bap->delay = qos->delay; > + bap->volume = 127; > bap->state_id = bt_bap_state_register(bt_bap_stream_get_session(stream), > bap_state_changed, > bap_connecting, > @@ -1413,6 +1523,8 @@ static int media_transport_init_bap(struct media_transport *transport, > transport->suspend = suspend_bap; > transport->cancel = cancel_bap; > transport->set_state = set_state_bap; > + transport->set_volume = set_volume_bap; > + transport->get_volume = get_volume_bap; > transport->destroy = free_bap; > > return 0; > @@ -1537,12 +1649,13 @@ int8_t media_transport_get_device_volume(struct btd_device *dev) > /* Attempt to locate the transport to get its volume */ > for (l = transports; l; l = l->next) { > struct media_transport *transport = l->data; > + > if (transport->device != dev) > continue; > > - /* Volume is A2DP only */ > - if (media_endpoint_get_sep(transport->endpoint)) > - return media_transport_get_volume(transport); > + /* Get transport volume */ > + if (transport->get_volume) > + return transport->get_volume(transport); > } > > /* If transport volume doesn't exists use device_volume */ > @@ -1560,12 +1673,13 @@ void media_transport_update_device_volume(struct btd_device *dev, > /* Attempt to locate the transport to set its volume */ > for (l = transports; l; l = l->next) { > struct media_transport *transport = l->data; > + > if (transport->device != dev) > continue; > > - /* Volume is A2DP only */ > - if (media_endpoint_get_sep(transport->endpoint)) { > - media_transport_update_volume(transport, volume); > + /* Set transport volume */ > + if (transport->set_volume) { > + transport->set_volume(transport, volume); > return; > } > } > -- > 2.25.1 >
Hi Luiz On Wed, Oct 12, 2022 at 1:28 AM Luiz Augusto von Dentz <luiz.dentz@gmail.com> wrote: > > Hi Sathish, > > On Tue, Oct 11, 2022 at 4:38 AM Sathish Narasimman > <sathish.narasimman@intel.com> wrote: > > > > Initialize set_volume and get_volume to media transport and update the > > volume when media_transport_update_device_volume is called. > > --- > > profiles/audio/transport.c | 126 +++++++++++++++++++++++++++++++++++-- > > 1 file changed, 120 insertions(+), 6 deletions(-) > > > > diff --git a/profiles/audio/transport.c b/profiles/audio/transport.c > > index 41339da51e17..a1445cba7993 100644 > > --- a/profiles/audio/transport.c > > +++ b/profiles/audio/transport.c > > @@ -91,6 +91,7 @@ struct bap_transport { > > uint8_t rtn; > > uint16_t latency; > > uint32_t delay; > > + int8_t volume; > > }; > > > > struct media_transport { > > @@ -116,6 +117,9 @@ struct media_transport { > > guint id); > > void (*set_state) (struct media_transport *transport, > > transport_state_t state); > > + void (*set_volume) (struct media_transport *transp, > > + int8_t volume); > > + int8_t (*get_volume) (struct media_transport *transp); > > GDestroyNotify destroy; > > void *data; > > }; > > @@ -769,6 +773,58 @@ error: > > "Invalid arguments in method call"); > > } > > > > +static gboolean volume_bap_exists(const GDBusPropertyTable *property, > > + void *data) > > +{ > > + struct media_transport *transport = data; > > + struct bap_transport *bap = transport->data; > > + > > + return bap->volume >= 0; > > +} > > + > > +static gboolean get_bap_volume(const GDBusPropertyTable *property, > > + DBusMessageIter *iter, void *data) > > +{ > > + struct media_transport *transport = data; > > + struct bap_transport *bap = transport->data; > > + uint16_t volume = (uint16_t)bap->volume; > > + > > + dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT16, &volume); > > + > > + return TRUE; > > +} > > + > > +static void set_bap_volume(const GDBusPropertyTable *property, > > + DBusMessageIter *iter, GDBusPendingPropertySet id, > > + void *data) > > +{ > > + struct media_transport *transport = data; > > + struct bap_transport *bap = transport->data; > > + uint16_t arg; > > + int8_t volume; > > + > > + if (dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_UINT16) > > + goto error; > > + > > + dbus_message_iter_get_basic(iter, &arg); > > + if (arg > INT8_MAX) > > + goto error; > > + > > + g_dbus_pending_property_success(id); > > + > > + volume = (int8_t)arg; > > + if (bap->volume == volume) > > + return; > > + > > + /*TODO vcp_send_volume */ > > What is this TODO item for? Can we complete it right now? Afaik we > should be able to handle local changes and notify it to remote peers > or that is not how VCP works? The TODO part is for VCP Client. At present only VCP Server is implemented. Whenever there is a change in volume locally we have to notify to the remote peer in case of server Role(Volume renderer). > > > + return; > > + > > +error: > > + g_dbus_pending_property_error(id, ERROR_INTERFACE ".InvalidArguments", > > + "Invalid arguments in method call"); > > +} > > + > > + > > static gboolean endpoint_exists(const GDBusPropertyTable *property, void *data) > > { > > struct media_transport *transport = data; > > @@ -970,6 +1026,7 @@ static const GDBusPropertyTable bap_properties[] = { > > { "Retransmissions", "y", get_retransmissions }, > > { "Latency", "q", get_latency }, > > { "Delay", "u", get_delay }, > > + { "Volume", "q", get_bap_volume, set_bap_volume, volume_bap_exists }, > > Now that we have set_volume/get_volume as callbacks these could be > changed to use them instead of having dedicated callback like abouve, > something like: > > https://gist.github.com/Vudentz/19edcf96735567c1f7437a5e1dee7e04 > will check and update > > { "Endpoint", "o", get_endpoint, NULL, endpoint_exists }, > > { "Location", "u", get_location }, > > { "Metadata", "ay", get_metadata }, > > @@ -1048,6 +1105,31 @@ static void source_state_changed(struct btd_service *service, > > transport_update_playing(transport, FALSE); > > } > > > > +static int8_t get_volume_a2dp(struct media_transport *transport) > > +{ > > + struct a2dp_transport *a2dp = transport->data; > > + > > + return a2dp->volume; > > +} > > + > > +static void set_volume_a2dp(struct media_transport *transport, int8_t volume) > > +{ > > + struct a2dp_transport *a2dp = transport->data; > > + > > + if (volume < 0) > > + return; > > + > > + /* Check if volume really changed */ > > + if (a2dp->volume == volume) > > + return; > > + > > + a2dp->volume = volume; > > + > > + g_dbus_emit_property_changed(btd_get_dbus_connection(), > > + transport->path, > > + MEDIA_TRANSPORT_INTERFACE, "Volume"); > > +} > > + > > static int media_transport_init_source(struct media_transport *transport) > > { > > struct btd_service *service; > > @@ -1061,6 +1143,8 @@ static int media_transport_init_source(struct media_transport *transport) > > > > transport->resume = resume_a2dp; > > transport->suspend = suspend_a2dp; > > + transport->set_volume = set_volume_a2dp; > > + transport->get_volume = get_volume_a2dp; > > transport->cancel = cancel_a2dp; > > transport->data = a2dp; > > transport->destroy = destroy_a2dp; > > @@ -1387,6 +1471,31 @@ static void free_bap(void *data) > > free(bap); > > } > > > > +static void set_volume_bap(struct media_transport *transport, int8_t volume) > > +{ > > + struct bap_transport *bap = transport->data; > > + > > + if (volume < 0) > > + return; > > + > > + /* Check if volume really changed */ > > + if (bap->volume == volume) > > + return; > > + > > + bap->volume = volume; > > + > > + g_dbus_emit_property_changed(btd_get_dbus_connection(), > > + transport->path, > > + MEDIA_TRANSPORT_INTERFACE, "Volume"); > > +} > > + > > +static int8_t get_volume_bap(struct media_transport *transport) > > +{ > > + struct bap_transport *bap = transport->data; > > + > > + return bap->volume; > > +} > > + > > static int media_transport_init_bap(struct media_transport *transport, > > void *stream) > > { > > @@ -1403,6 +1512,7 @@ static int media_transport_init_bap(struct media_transport *transport, > > bap->rtn = qos->rtn; > > bap->latency = qos->latency; > > bap->delay = qos->delay; > > + bap->volume = 127; > > bap->state_id = bt_bap_state_register(bt_bap_stream_get_session(stream), > > bap_state_changed, > > bap_connecting, > > @@ -1413,6 +1523,8 @@ static int media_transport_init_bap(struct media_transport *transport, > > transport->suspend = suspend_bap; > > transport->cancel = cancel_bap; > > transport->set_state = set_state_bap; > > + transport->set_volume = set_volume_bap; > > + transport->get_volume = get_volume_bap; > > transport->destroy = free_bap; > > > > return 0; > > @@ -1537,12 +1649,13 @@ int8_t media_transport_get_device_volume(struct btd_device *dev) > > /* Attempt to locate the transport to get its volume */ > > for (l = transports; l; l = l->next) { > > struct media_transport *transport = l->data; > > + > > if (transport->device != dev) > > continue; > > > > - /* Volume is A2DP only */ > > - if (media_endpoint_get_sep(transport->endpoint)) > > - return media_transport_get_volume(transport); > > + /* Get transport volume */ > > + if (transport->get_volume) > > + return transport->get_volume(transport); > > } > > > > /* If transport volume doesn't exists use device_volume */ > > @@ -1560,12 +1673,13 @@ void media_transport_update_device_volume(struct btd_device *dev, > > /* Attempt to locate the transport to set its volume */ > > for (l = transports; l; l = l->next) { > > struct media_transport *transport = l->data; > > + > > if (transport->device != dev) > > continue; > > > > - /* Volume is A2DP only */ > > - if (media_endpoint_get_sep(transport->endpoint)) { > > - media_transport_update_volume(transport, volume); > > + /* Set transport volume */ > > + if (transport->set_volume) { > > + transport->set_volume(transport, volume); > > return; > > } > > } > > -- > > 2.25.1 > > > > > -- > Luiz Augusto von Dentz Sathish N
Hi Sathish, On Tue, Oct 11, 2022 at 10:42 PM Sathish Narasimman <nsathish41@gmail.com> wrote: > > Hi Luiz > > On Wed, Oct 12, 2022 at 1:28 AM Luiz Augusto von Dentz > <luiz.dentz@gmail.com> wrote: > > > > Hi Sathish, > > > > On Tue, Oct 11, 2022 at 4:38 AM Sathish Narasimman > > <sathish.narasimman@intel.com> wrote: > > > > > > Initialize set_volume and get_volume to media transport and update the > > > volume when media_transport_update_device_volume is called. > > > --- > > > profiles/audio/transport.c | 126 +++++++++++++++++++++++++++++++++++-- > > > 1 file changed, 120 insertions(+), 6 deletions(-) > > > > > > diff --git a/profiles/audio/transport.c b/profiles/audio/transport.c > > > index 41339da51e17..a1445cba7993 100644 > > > --- a/profiles/audio/transport.c > > > +++ b/profiles/audio/transport.c > > > @@ -91,6 +91,7 @@ struct bap_transport { > > > uint8_t rtn; > > > uint16_t latency; > > > uint32_t delay; > > > + int8_t volume; > > > }; > > > > > > struct media_transport { > > > @@ -116,6 +117,9 @@ struct media_transport { > > > guint id); > > > void (*set_state) (struct media_transport *transport, > > > transport_state_t state); > > > + void (*set_volume) (struct media_transport *transp, > > > + int8_t volume); > > > + int8_t (*get_volume) (struct media_transport *transp); > > > GDestroyNotify destroy; > > > void *data; > > > }; > > > @@ -769,6 +773,58 @@ error: > > > "Invalid arguments in method call"); > > > } > > > > > > +static gboolean volume_bap_exists(const GDBusPropertyTable *property, > > > + void *data) > > > +{ > > > + struct media_transport *transport = data; > > > + struct bap_transport *bap = transport->data; > > > + > > > + return bap->volume >= 0; > > > +} > > > + > > > +static gboolean get_bap_volume(const GDBusPropertyTable *property, > > > + DBusMessageIter *iter, void *data) > > > +{ > > > + struct media_transport *transport = data; > > > + struct bap_transport *bap = transport->data; > > > + uint16_t volume = (uint16_t)bap->volume; > > > + > > > + dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT16, &volume); > > > + > > > + return TRUE; > > > +} > > > + > > > +static void set_bap_volume(const GDBusPropertyTable *property, > > > + DBusMessageIter *iter, GDBusPendingPropertySet id, > > > + void *data) > > > +{ > > > + struct media_transport *transport = data; > > > + struct bap_transport *bap = transport->data; > > > + uint16_t arg; > > > + int8_t volume; > > > + > > > + if (dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_UINT16) > > > + goto error; > > > + > > > + dbus_message_iter_get_basic(iter, &arg); > > > + if (arg > INT8_MAX) > > > + goto error; > > > + > > > + g_dbus_pending_property_success(id); > > > + > > > + volume = (int8_t)arg; > > > + if (bap->volume == volume) > > > + return; > > > + > > > + /*TODO vcp_send_volume */ > > > > What is this TODO item for? Can we complete it right now? Afaik we > > should be able to handle local changes and notify it to remote peers > > or that is not how VCP works? > > The TODO part is for VCP Client. At present only VCP Server is implemented. > Whenever there is a change in volume locally we have to notify to the remote > peer in case of server Role(Volume renderer). Well the callback to Volume property shall in case of the server notify then, otherwise the client has no idea anything has happened, so I think we need to implement procedure anyway handling the distinction of client/server internally. > > > > > + return; > > > + > > > +error: > > > + g_dbus_pending_property_error(id, ERROR_INTERFACE ".InvalidArguments", > > > + "Invalid arguments in method call"); > > > +} > > > + > > > + > > > static gboolean endpoint_exists(const GDBusPropertyTable *property, void *data) > > > { > > > struct media_transport *transport = data; > > > @@ -970,6 +1026,7 @@ static const GDBusPropertyTable bap_properties[] = { > > > { "Retransmissions", "y", get_retransmissions }, > > > { "Latency", "q", get_latency }, > > > { "Delay", "u", get_delay }, > > > + { "Volume", "q", get_bap_volume, set_bap_volume, volume_bap_exists }, > > > > Now that we have set_volume/get_volume as callbacks these could be > > changed to use them instead of having dedicated callback like abouve, > > something like: > > > > https://gist.github.com/Vudentz/19edcf96735567c1f7437a5e1dee7e04 > > > will check and update > > > { "Endpoint", "o", get_endpoint, NULL, endpoint_exists }, > > > { "Location", "u", get_location }, > > > { "Metadata", "ay", get_metadata }, > > > @@ -1048,6 +1105,31 @@ static void source_state_changed(struct btd_service *service, > > > transport_update_playing(transport, FALSE); > > > } > > > > > > +static int8_t get_volume_a2dp(struct media_transport *transport) > > > +{ > > > + struct a2dp_transport *a2dp = transport->data; > > > + > > > + return a2dp->volume; > > > +} > > > + > > > +static void set_volume_a2dp(struct media_transport *transport, int8_t volume) > > > +{ > > > + struct a2dp_transport *a2dp = transport->data; > > > + > > > + if (volume < 0) > > > + return; > > > + > > > + /* Check if volume really changed */ > > > + if (a2dp->volume == volume) > > > + return; > > > + > > > + a2dp->volume = volume; > > > + > > > + g_dbus_emit_property_changed(btd_get_dbus_connection(), > > > + transport->path, > > > + MEDIA_TRANSPORT_INTERFACE, "Volume"); > > > +} > > > + > > > static int media_transport_init_source(struct media_transport *transport) > > > { > > > struct btd_service *service; > > > @@ -1061,6 +1143,8 @@ static int media_transport_init_source(struct media_transport *transport) > > > > > > transport->resume = resume_a2dp; > > > transport->suspend = suspend_a2dp; > > > + transport->set_volume = set_volume_a2dp; > > > + transport->get_volume = get_volume_a2dp; > > > transport->cancel = cancel_a2dp; > > > transport->data = a2dp; > > > transport->destroy = destroy_a2dp; > > > @@ -1387,6 +1471,31 @@ static void free_bap(void *data) > > > free(bap); > > > } > > > > > > +static void set_volume_bap(struct media_transport *transport, int8_t volume) > > > +{ > > > + struct bap_transport *bap = transport->data; > > > + > > > + if (volume < 0) > > > + return; > > > + > > > + /* Check if volume really changed */ > > > + if (bap->volume == volume) > > > + return; > > > + > > > + bap->volume = volume; > > > + > > > + g_dbus_emit_property_changed(btd_get_dbus_connection(), > > > + transport->path, > > > + MEDIA_TRANSPORT_INTERFACE, "Volume"); > > > +} > > > + > > > +static int8_t get_volume_bap(struct media_transport *transport) > > > +{ > > > + struct bap_transport *bap = transport->data; > > > + > > > + return bap->volume; > > > +} > > > + > > > static int media_transport_init_bap(struct media_transport *transport, > > > void *stream) > > > { > > > @@ -1403,6 +1512,7 @@ static int media_transport_init_bap(struct media_transport *transport, > > > bap->rtn = qos->rtn; > > > bap->latency = qos->latency; > > > bap->delay = qos->delay; > > > + bap->volume = 127; > > > bap->state_id = bt_bap_state_register(bt_bap_stream_get_session(stream), > > > bap_state_changed, > > > bap_connecting, > > > @@ -1413,6 +1523,8 @@ static int media_transport_init_bap(struct media_transport *transport, > > > transport->suspend = suspend_bap; > > > transport->cancel = cancel_bap; > > > transport->set_state = set_state_bap; > > > + transport->set_volume = set_volume_bap; > > > + transport->get_volume = get_volume_bap; > > > transport->destroy = free_bap; > > > > > > return 0; > > > @@ -1537,12 +1649,13 @@ int8_t media_transport_get_device_volume(struct btd_device *dev) > > > /* Attempt to locate the transport to get its volume */ > > > for (l = transports; l; l = l->next) { > > > struct media_transport *transport = l->data; > > > + > > > if (transport->device != dev) > > > continue; > > > > > > - /* Volume is A2DP only */ > > > - if (media_endpoint_get_sep(transport->endpoint)) > > > - return media_transport_get_volume(transport); > > > + /* Get transport volume */ > > > + if (transport->get_volume) > > > + return transport->get_volume(transport); > > > } > > > > > > /* If transport volume doesn't exists use device_volume */ > > > @@ -1560,12 +1673,13 @@ void media_transport_update_device_volume(struct btd_device *dev, > > > /* Attempt to locate the transport to set its volume */ > > > for (l = transports; l; l = l->next) { > > > struct media_transport *transport = l->data; > > > + > > > if (transport->device != dev) > > > continue; > > > > > > - /* Volume is A2DP only */ > > > - if (media_endpoint_get_sep(transport->endpoint)) { > > > - media_transport_update_volume(transport, volume); > > > + /* Set transport volume */ > > > + if (transport->set_volume) { > > > + transport->set_volume(transport, volume); > > > return; > > > } > > > } > > > -- > > > 2.25.1 > > > > > > > > > -- > > Luiz Augusto von Dentz > > Sathish N
diff --git a/profiles/audio/transport.c b/profiles/audio/transport.c index 41339da51e17..a1445cba7993 100644 --- a/profiles/audio/transport.c +++ b/profiles/audio/transport.c @@ -91,6 +91,7 @@ struct bap_transport { uint8_t rtn; uint16_t latency; uint32_t delay; + int8_t volume; }; struct media_transport { @@ -116,6 +117,9 @@ struct media_transport { guint id); void (*set_state) (struct media_transport *transport, transport_state_t state); + void (*set_volume) (struct media_transport *transp, + int8_t volume); + int8_t (*get_volume) (struct media_transport *transp); GDestroyNotify destroy; void *data; }; @@ -769,6 +773,58 @@ error: "Invalid arguments in method call"); } +static gboolean volume_bap_exists(const GDBusPropertyTable *property, + void *data) +{ + struct media_transport *transport = data; + struct bap_transport *bap = transport->data; + + return bap->volume >= 0; +} + +static gboolean get_bap_volume(const GDBusPropertyTable *property, + DBusMessageIter *iter, void *data) +{ + struct media_transport *transport = data; + struct bap_transport *bap = transport->data; + uint16_t volume = (uint16_t)bap->volume; + + dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT16, &volume); + + return TRUE; +} + +static void set_bap_volume(const GDBusPropertyTable *property, + DBusMessageIter *iter, GDBusPendingPropertySet id, + void *data) +{ + struct media_transport *transport = data; + struct bap_transport *bap = transport->data; + uint16_t arg; + int8_t volume; + + if (dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_UINT16) + goto error; + + dbus_message_iter_get_basic(iter, &arg); + if (arg > INT8_MAX) + goto error; + + g_dbus_pending_property_success(id); + + volume = (int8_t)arg; + if (bap->volume == volume) + return; + + /*TODO vcp_send_volume */ + return; + +error: + g_dbus_pending_property_error(id, ERROR_INTERFACE ".InvalidArguments", + "Invalid arguments in method call"); +} + + static gboolean endpoint_exists(const GDBusPropertyTable *property, void *data) { struct media_transport *transport = data; @@ -970,6 +1026,7 @@ static const GDBusPropertyTable bap_properties[] = { { "Retransmissions", "y", get_retransmissions }, { "Latency", "q", get_latency }, { "Delay", "u", get_delay }, + { "Volume", "q", get_bap_volume, set_bap_volume, volume_bap_exists }, { "Endpoint", "o", get_endpoint, NULL, endpoint_exists }, { "Location", "u", get_location }, { "Metadata", "ay", get_metadata }, @@ -1048,6 +1105,31 @@ static void source_state_changed(struct btd_service *service, transport_update_playing(transport, FALSE); } +static int8_t get_volume_a2dp(struct media_transport *transport) +{ + struct a2dp_transport *a2dp = transport->data; + + return a2dp->volume; +} + +static void set_volume_a2dp(struct media_transport *transport, int8_t volume) +{ + struct a2dp_transport *a2dp = transport->data; + + if (volume < 0) + return; + + /* Check if volume really changed */ + if (a2dp->volume == volume) + return; + + a2dp->volume = volume; + + g_dbus_emit_property_changed(btd_get_dbus_connection(), + transport->path, + MEDIA_TRANSPORT_INTERFACE, "Volume"); +} + static int media_transport_init_source(struct media_transport *transport) { struct btd_service *service; @@ -1061,6 +1143,8 @@ static int media_transport_init_source(struct media_transport *transport) transport->resume = resume_a2dp; transport->suspend = suspend_a2dp; + transport->set_volume = set_volume_a2dp; + transport->get_volume = get_volume_a2dp; transport->cancel = cancel_a2dp; transport->data = a2dp; transport->destroy = destroy_a2dp; @@ -1387,6 +1471,31 @@ static void free_bap(void *data) free(bap); } +static void set_volume_bap(struct media_transport *transport, int8_t volume) +{ + struct bap_transport *bap = transport->data; + + if (volume < 0) + return; + + /* Check if volume really changed */ + if (bap->volume == volume) + return; + + bap->volume = volume; + + g_dbus_emit_property_changed(btd_get_dbus_connection(), + transport->path, + MEDIA_TRANSPORT_INTERFACE, "Volume"); +} + +static int8_t get_volume_bap(struct media_transport *transport) +{ + struct bap_transport *bap = transport->data; + + return bap->volume; +} + static int media_transport_init_bap(struct media_transport *transport, void *stream) { @@ -1403,6 +1512,7 @@ static int media_transport_init_bap(struct media_transport *transport, bap->rtn = qos->rtn; bap->latency = qos->latency; bap->delay = qos->delay; + bap->volume = 127; bap->state_id = bt_bap_state_register(bt_bap_stream_get_session(stream), bap_state_changed, bap_connecting, @@ -1413,6 +1523,8 @@ static int media_transport_init_bap(struct media_transport *transport, transport->suspend = suspend_bap; transport->cancel = cancel_bap; transport->set_state = set_state_bap; + transport->set_volume = set_volume_bap; + transport->get_volume = get_volume_bap; transport->destroy = free_bap; return 0; @@ -1537,12 +1649,13 @@ int8_t media_transport_get_device_volume(struct btd_device *dev) /* Attempt to locate the transport to get its volume */ for (l = transports; l; l = l->next) { struct media_transport *transport = l->data; + if (transport->device != dev) continue; - /* Volume is A2DP only */ - if (media_endpoint_get_sep(transport->endpoint)) - return media_transport_get_volume(transport); + /* Get transport volume */ + if (transport->get_volume) + return transport->get_volume(transport); } /* If transport volume doesn't exists use device_volume */ @@ -1560,12 +1673,13 @@ void media_transport_update_device_volume(struct btd_device *dev, /* Attempt to locate the transport to set its volume */ for (l = transports; l; l = l->next) { struct media_transport *transport = l->data; + if (transport->device != dev) continue; - /* Volume is A2DP only */ - if (media_endpoint_get_sep(transport->endpoint)) { - media_transport_update_volume(transport, volume); + /* Set transport volume */ + if (transport->set_volume) { + transport->set_volume(transport, volume); return; } }