From 168ea3078066d293e915280bb55ededa7d109abe Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 19 Aug 2024 13:35:01 -0400 Subject: [PATCH] client/player: Print endpoint preset with endpoint.presets If just the endpoint objects is passed to endpoint.presets then just print it instead of the listing the presets available for the UUID: [bluetooth]# endpoint.presets /local/endpoint/ep2 Preset 32_1_1 Configuration.#0: len 0x02 type 0x01 Configuration.Sampling Frequency: 32 Khz (0x06) Configuration.#1: len 0x02 type 0x02 Configuration.Frame Duration: 7.5 ms (0x00) Configuration.#2: len 0x03 type 0x04 Configuration.Frame Length: 60 (0x003c) --- client/player.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/player.c b/client/player.c index 5644b0d61..46863b1f4 100644 --- a/client/player.c +++ b/client/player.c @@ -4299,7 +4299,9 @@ static void cmd_presets_endpoint(int argc, char *argv[]) return; } - } else + } else if (ep && (ep->codec_preset)) + print_preset(ep->codec_preset, ep->codec); + else print_presets(preset); enter_cc: -- 2.47.3