From 024d4529879c91241f6bf2ce8e93b4a342a139a3 Mon Sep 17 00:00:00 2001 From: Bjoern Hartmann Date: Thu, 4 Mar 2021 11:50:55 +0100 Subject: [PATCH] pts/avdtp_sink: add information about supported codecs --- test/pts/avdtp_sink_test.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/pts/avdtp_sink_test.c b/test/pts/avdtp_sink_test.c index fb47b07f6..a2b2842d5 100644 --- a/test/pts/avdtp_sink_test.c +++ b/test/pts/avdtp_sink_test.c @@ -964,6 +964,12 @@ static void show_usage(void){ printf("Supported Codecs: SBC"); #ifdef HAVE_AAC_FDK printf(", MPEG AAC"); +#endif +#ifdef HAVE_APTX + printf(", aptX, aptX HD"); +#endif +#ifdef HAVE_LDAC_DECODER + printf(", LDAC"); #endif printf("\n"); printf("c - create connection to addr %s\n", device_addr_string);