public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ 0/2] test-bap: Add Broadcast Source STR MBIS tests
@ 2024-06-06 10:25 Iulia Tanasescu
  2024-06-06 10:25 ` [PATCH BlueZ 1/2] test-bap: Add support to config multiple bsrc streams Iulia Tanasescu
  2024-06-06 10:25 ` [PATCH BlueZ 2/2] " Iulia Tanasescu
  0 siblings, 2 replies; 9+ messages in thread
From: Iulia Tanasescu @ 2024-06-06 10:25 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: claudia.rosu, mihai-octavian.urzica, vlad.pruteanu,
	andrei.istodorescu, luiz.dentz, Iulia Tanasescu

This patch adds BAP unit tests for Broadcast Source streaming with
multiple BISes (4.14.3 Broadcast Audio Stream with Multiple BISes -
Source - page 184).

Iulia Tanasescu (2):
  test-bap: Add support to config multiple bsrc streams
  test-bap: Add Broadcast Source STR MBIS tests

 unit/test-bap.c | 406 ++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 391 insertions(+), 15 deletions(-)


base-commit: 7c619d864afd01df6a98baeffe7030a3d144b22a
-- 
2.39.2


^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCH BlueZ v2 1/5] shared/lc3: Rename LC3_BASE
@ 2024-06-25  7:27 Iulia Tanasescu
  2024-06-25 10:55 ` test-bap: Add Broadcast Source STR MBIS tests bluez.test.bot
  0 siblings, 1 reply; 9+ messages in thread
From: Iulia Tanasescu @ 2024-06-25  7:27 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: claudia.rosu, mihai-octavian.urzica, vlad.pruteanu,
	andrei.istodorescu, luiz.dentz, Iulia Tanasescu

This renames LC3_BASE to LC3_TYPE_BASE, so the meaning
of the define is more clear.
---
 src/shared/lc3.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/shared/lc3.h b/src/shared/lc3.h
index 95aa21702..abd9b29a3 100644
--- a/src/shared/lc3.h
+++ b/src/shared/lc3.h
@@ -12,9 +12,9 @@
 
 #define LC3_ID			0x06
 
-#define LC3_BASE		0x01
+#define LC3_TYPE_BASE		0x01
 
-#define LC3_FREQ		(LC3_BASE)
+#define LC3_FREQ		LC3_TYPE_BASE
 #define LC3_FREQ_8KHZ		BIT(0)
 #define LC3_FREQ_11KHZ		BIT(1)
 #define LC3_FREQ_16KHZ		BIT(2)
@@ -32,7 +32,7 @@
 					LC3_FREQ_44KHZ | \
 					LC3_FREQ_48KHZ)
 
-#define LC3_DURATION		(LC3_BASE + 1)
+#define LC3_DURATION		(LC3_TYPE_BASE + 1)
 #define LC3_DURATION_7_5	BIT(0)
 #define LC3_DURATION_10		BIT(1)
 #define LC3_DURATION_ANY	(LC3_DURATION_7_5 | LC3_DURATION_10)
@@ -40,12 +40,12 @@
 #define LC3_DURATION_PREFER_10	BIT(5)
 
 
-#define LC3_CHAN_COUNT		(LC3_BASE + 2)
+#define LC3_CHAN_COUNT		(LC3_TYPE_BASE + 2)
 #define LC3_CHAN_COUNT_SUPPORT	BIT(0)
 
-#define LC3_FRAME_LEN		(LC3_BASE + 3)
+#define LC3_FRAME_LEN		(LC3_TYPE_BASE + 3)
 
-#define LC3_FRAME_COUNT		(LC3_BASE + 4)
+#define LC3_FRAME_COUNT		(LC3_TYPE_BASE + 4)
 
 #define LC3_CAPABILITIES(_freq, _duration, _chan_count, _len_min, _len_max) \
 	UTIL_IOV_INIT(0x02, LC3_FREQ, _freq, _freq >> 8, \
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-06-25 10:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-06 10:25 [PATCH BlueZ 0/2] test-bap: Add Broadcast Source STR MBIS tests Iulia Tanasescu
2024-06-06 10:25 ` [PATCH BlueZ 1/2] test-bap: Add support to config multiple bsrc streams Iulia Tanasescu
2024-06-06 12:31   ` test-bap: Add Broadcast Source STR MBIS tests bluez.test.bot
2024-06-06 10:25 ` [PATCH BlueZ 2/2] " Iulia Tanasescu
2024-06-06 20:28   ` Luiz Augusto von Dentz
2024-06-10  7:23     ` Iulia Tanasescu
2024-06-20 14:22     ` Iulia Tanasescu
2024-06-20 14:27       ` Luiz Augusto von Dentz
  -- strict thread matches above, loose matches on Subject: below --
2024-06-25  7:27 [PATCH BlueZ v2 1/5] shared/lc3: Rename LC3_BASE Iulia Tanasescu
2024-06-25 10:55 ` test-bap: Add Broadcast Source STR MBIS tests bluez.test.bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox