diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-11-06 23:02:11 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-11-23 08:49:14 -0800 |
commit | f4e8cddddc0675821de04bacdb36b0bb33daaceb (patch) | |
tree | 459b397746416bf05a46044ad5608a55b558889b /binding/bluetooth-bluez.c | |
parent | bae995056681cb75c05489a6e39337a4de0decd5 (diff) |
binding: bluetooth: add new avrcp controls verb
Since MediaPlayer1 controls are part of bluez it makes sense
to keep them here for now
Bug-AGL: SPEC-1630
Change-Id: Ia02341179a322082357b0e7eff07264e34197d57
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'binding/bluetooth-bluez.c')
-rw-r--r-- | binding/bluetooth-bluez.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/binding/bluetooth-bluez.c b/binding/bluetooth-bluez.c index 052ea7b..824843b 100644 --- a/binding/bluetooth-bluez.c +++ b/binding/bluetooth-bluez.c @@ -155,6 +155,19 @@ void bluez_decode_call_error(struct bluetooth_state *ns, NB_ERROR_UNKNOWN_SERVICE, "unknown service %s", type_arg); + } else if (!strcmp(method, "Play") || + !strcmp(method, "Pause") || + !strcmp(method, "Stop") || + !strcmp(method, "Next") || + !strcmp(method, "Previous") || + !strcmp(method, "FastForward") || + !strcmp(method, "Rewind")) { + + g_clear_error(error); + g_set_error(error, NB_ERROR, + NB_ERROR_UNKNOWN_PROPERTY, + "unknown method %s", + method); } } } @@ -167,7 +180,8 @@ GVariant *bluez_call(struct bluetooth_state *ns, GVariant *reply; if (!path && (!strcmp(access_type, BLUEZ_AT_DEVICE) || - !strcmp(access_type, BLUEZ_AT_ADAPTER))) { + !strcmp(access_type, BLUEZ_AT_ADAPTER) || + !strcmp(access_type, BLUEZ_AT_MEDIAPLAYER))) { g_set_error(error, NB_ERROR, NB_ERROR_MISSING_ARGUMENT, "missing %s argument", access_type); @@ -181,6 +195,8 @@ GVariant *bluez_call(struct bluetooth_state *ns, } else if (!strcmp(access_type, BLUEZ_AT_AGENTMANAGER)) { path = BLUEZ_PATH; interface = BLUEZ_AGENTMANAGER_INTERFACE; + } else if (!strcmp(access_type, BLUEZ_AT_MEDIAPLAYER)) { + interface = BLUEZ_MEDIAPLAYER_INTERFACE; } else { g_set_error(error, NB_ERROR, NB_ERROR_ILLEGAL_ARGUMENT, "illegal %s argument", |