diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c
index 15e211b..0d877b1 100644
--- a/profiles/audio/a2dp.c
+++ b/profiles/audio/a2dp.c
return TRUE;
}
+static gboolean get_delay_reporting(const GDBusPropertyTable *property,
+ DBusMessageIter *iter, void *data)
+{
+ struct a2dp_remote_sep *sep = data;
+ dbus_bool_t delay_report;
+
+ delay_report = avdtp_get_delay_reporting(sep->sep);
+
+ dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &delay_report);
+
+ return TRUE;
+}
+
static const GDBusPropertyTable sep_properties[] = {
{ "UUID", "s", get_uuid, NULL, NULL },
{ "Codec", "y", get_codec, NULL, NULL },
{ "Capabilities", "ay", get_capabilities, NULL, NULL },
{ "Device", "o", get_device, NULL, NULL },
+ { "DelayReporting", "b", get_delay_reporting, NULL, NULL },
{ }
};
for (; *seids; seids++) {
uint8_t type;
uint8_t codec;
+ uint8_t delay_reporting;
GSList *l = NULL;
char caps[256];
uint8_t data[128];
if (!value)
continue;
- if (sscanf(value, "%02hhx:%02hhx:%s", &type, &codec,
+ /* Try loading with delay_reporting first */
+ if (sscanf(value, "%02hhx:%02hhx:%02hhx:%s", &type, &codec,
+ &delay_reporting, caps) != 4) {
+ /* Try old format */
+ if (sscanf(value, "%02hhx:%02hhx:%s", &type, &codec,
caps) != 3) {
- warn("Unable to load Endpoint: seid %u", rseid);
- g_free(value);
- continue;
+ warn("Unable to load Endpoint: seid %u", rseid);
+ g_free(value);
+ continue;
+ }
+ delay_reporting = false;
}
for (i = 0, size = strlen(caps); i < size; i += 2) {
caps_add_codec(&l, codec, data, size / 2);
- rsep = avdtp_register_remote_sep(chan->session, rseid, type, l);
+ rsep = avdtp_register_remote_sep(chan->session, rseid, type, l,
+ delay_reporting);
if (!rsep) {
warn("Unable to register Endpoint: seid %u", rseid);
continue;
static void store_remote_sep(void *data, void *user_data)
{
struct a2dp_remote_sep *sep = data;
- GKeyFile *key_file = (void *) user_data;
+ GKeyFile *key_file = user_data;
char seid[4], value[256];
struct avdtp_service_capability *service = avdtp_get_codec(sep->sep);
struct avdtp_media_codec_capability *codec = (void *) service->data;
sprintf(seid, "%02hhx", avdtp_get_seid(sep->sep));
- offset = sprintf(value, "%02hhx:%02hhx:", avdtp_get_type(sep->sep),
- codec->media_codec_type);
+ offset = sprintf(value, "%02hhx:%02hhx:%02hhx:",
+ avdtp_get_type(sep->sep), codec->media_codec_type,
+ avdtp_get_delay_reporting(sep->sep));
for (i = 0; i < service->length - sizeof(*codec); i++)
offset += sprintf(value + offset, "%02hhx", codec->data[i]);
-
g_key_file_set_string(key_file, "Endpoints", seid, value);
}
key_file = g_key_file_new();
g_key_file_load_from_file(key_file, filename, 0, NULL);
- data = g_key_file_get_string(key_file, "Endpoints", "LastUsed", NULL);
+ data = g_key_file_get_string(key_file, "Endpoints", "LastUsed",
+ NULL);
/* Remove current endpoints since it might have changed */
g_key_file_remove_group(key_file, "Endpoints", NULL);
queue_foreach(chan->seps, store_remote_sep, key_file);
if (data) {
- g_key_file_set_string(key_file, "Endpoints", "LastUsed", data);
+ g_key_file_set_string(key_file, "Endpoints", "LastUsed",
+ data);
g_free(data);
}
diff --git a/profiles/audio/avdtp.c b/profiles/audio/avdtp.c
index 1fd2be0..45727f0 100644
--- a/profiles/audio/avdtp.c
+++ b/profiles/audio/avdtp.c
return sep->codec;
}
+bool avdtp_get_delay_reporting(struct avdtp_remote_sep *sep)
+{
+ return sep->delay_reporting;
+}
+
struct avdtp_service_capability *avdtp_service_cap_new(uint8_t category,
void *data, int length)
{
struct avdtp_remote_sep *avdtp_register_remote_sep(struct avdtp *session,
uint8_t seid,
uint8_t type,
- GSList *caps)
+ GSList *caps,
+ bool delay_reporting)
{
struct avdtp_remote_sep *sep;
GSList *l;
sep->type = type;
sep->media_type = AVDTP_MEDIA_TYPE_AUDIO;
sep->caps = caps;
+ sep->delay_reporting = delay_reporting;
for (l = caps; l; l = g_slist_next(l)) {
struct avdtp_service_capability *cap = l->data;
sep->codec = cap;
}
- DBG("seid %d type %d media %d", sep->seid, sep->type, sep->media_type);
+ DBG("seid %d type %d media %d delay_reporting %s", sep->seid, sep->type,
+ sep->media_type,
+ sep->delay_reporting ? "true" : "false");
return sep;
}
diff --git a/profiles/audio/avdtp.h b/profiles/audio/avdtp.h
index f1e51d4..011fea8 100644
--- a/profiles/audio/avdtp.h
+++ b/profiles/audio/avdtp.h
struct avdtp_remote_sep *avdtp_register_remote_sep(struct avdtp *session,
uint8_t seid,
uint8_t type,
- GSList *caps);
+ GSList *caps,
+ bool delay_reporting);
uint8_t avdtp_get_seid(struct avdtp_remote_sep *sep);
struct avdtp_service_capability *avdtp_get_codec(struct avdtp_remote_sep *sep);
+bool avdtp_get_delay_reporting(struct avdtp_remote_sep *sep);
+
int avdtp_discover(struct avdtp *session, avdtp_discover_cb_t cb,
void *user_data);