diff mbox series

[BlueZ,3/5] test-bap: Update caps to accommodate 8_1 config

Message ID 20240517123436.146332-4-iulia.tanasescu@nxp.com (mailing list archive)
State Accepted
Commit 61ed4b4b60c3638ef2db660d54536f0ff3027f69
Headers show
Series test-bap: Add Broadcast Sink SCC tests | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/CheckPatch success CheckPatch PASS
tedd_an/GitLint success Gitlint PASS
tedd_an/IncrementalBuild success Incremental Build PASS

Commit Message

Iulia Tanasescu May 17, 2024, 12:34 p.m. UTC
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 mbox series

Patch

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 })