From 61ed4b4b60c3638ef2db660d54536f0ff3027f69 Mon Sep 17 00:00:00 2001 From: Iulia Tanasescu Date: Fri, 17 May 2024 15:34:34 +0300 Subject: [PATCH] test-bap: Update caps to accommodate 8_1 config This adjusts the min SDU size in lc3_caps, to accommodate the 8_1 config. --- unit/test-bap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit/test-bap.c b/unit/test-bap.c index ac9d7ff38..e930ca604 100644 --- a/unit/test-bap.c +++ b/unit/test-bap.c @@ -64,10 +64,10 @@ struct test_data { * Frequencies: 8Khz 11Khz 16Khz 22Khz 24Khz 32Khz 44.1Khz 48Khz * Duration: 7.5 ms 10 ms * Channel count: 3 - * Frame length: 30-240 + * Frame length: 26-240 */ static struct iovec lc3_caps = LC3_CAPABILITIES(LC3_FREQ_ANY, LC3_DURATION_ANY, - 3u, 30, 240); + 3u, 26, 240); #define iov_data(args...) ((const struct iovec[]) { args }) -- 2.47.3