Diff between df1e83cdb84c11ce555da62398bc73572a9cc1b1 and 004fa03201b63173c58d9078939ef311ce751e01

Changed Files

File Additions Deletions Status
android/client/if-rc.c +6 -0 modified

Full Patch

diff --git a/android/client/if-rc.c b/android/client/if-rc.c
index a050b49..44c719b 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 */