From 004fa03201b63173c58d9078939ef311ce751e01 Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Fri, 28 Feb 2014 20:58:48 +0200 Subject: [PATCH] android/client: Add AVRCP volume_change_cb support --- android/client/if-rc.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/android/client/if-rc.c b/android/client/if-rc.c index a050b4976..44c719b70 100644 --- a/android/client/if-rc.c +++ b/android/client/if-rc.c @@ -61,10 +61,16 @@ static void get_element_attr_cb(uint8_t num_attr, btrc_media_attr_t *attrs) haltest_info("attr id=%s\n", btrc_media_attr_t2str(attrs[i])); } +static void volume_change_cb(uint8_t volume, uint8_t ctype) +{ + haltest_info("%s, volume=%d ctype=%d\n", __func__, volume, ctype); +} + static btrc_callbacks_t rc_cbacks = { .size = sizeof(rc_cbacks), .get_play_status_cb = get_play_status_cb, .get_element_attr_cb = get_element_attr_cb, + .volume_change_cb = volume_change_cb, }; /* init */ -- 2.47.3