@@ -40,7 +40,7 @@ CREATE_FLAG(flag_source_started);
40
40
#define CAP_AC_MAX_STREAM 2
41
41
#define LOCATION (BT_AUDIO_LOCATION_FRONT_LEFT | BT_AUDIO_LOCATION_FRONT_RIGHT)
42
42
#define CONTEXT (BT_AUDIO_CONTEXT_TYPE_MEDIA)
43
- #define BROADCAST_STREMT_CNT MIN(CAP_AC_MAX_STREAM, CONFIG_BT_BAP_BROADCAST_SRC_STREAM_COUNT)
43
+ #define BROADCAST_STREAM_CNT MIN(CAP_AC_MAX_STREAM, CONFIG_BT_BAP_BROADCAST_SRC_STREAM_COUNT)
44
44
45
45
struct cap_initiator_ac_param {
46
46
char * name ;
@@ -51,7 +51,7 @@ struct cap_initiator_ac_param {
51
51
static const struct named_lc3_preset * named_preset ;
52
52
53
53
extern enum bst_result_t bst_result ;
54
- static struct audio_test_stream broadcast_source_streams [BROADCAST_STREMT_CNT ];
54
+ static struct audio_test_stream broadcast_source_streams [BROADCAST_STREAM_CNT ];
55
55
static struct bt_cap_stream * broadcast_streams [ARRAY_SIZE (broadcast_source_streams )];
56
56
static struct bt_bap_lc3_preset broadcast_preset_16_2_1 =
57
57
BT_BAP_LC3_BROADCAST_PRESET_16_2_1 (LOCATION , CONTEXT );
@@ -886,7 +886,7 @@ static void test_cap_initiator_ac_12(void)
886
886
test_cap_initiator_ac (& param );
887
887
}
888
888
889
- #if BROADCAST_STREMT_CNT >= CAP_AC_MAX_STREAM
889
+ #if BROADCAST_STREAM_CNT >= CAP_AC_MAX_STREAM
890
890
static void test_cap_initiator_ac_13 (void )
891
891
{
892
892
const struct cap_initiator_ac_param param = {
@@ -898,7 +898,7 @@ static void test_cap_initiator_ac_13(void)
898
898
899
899
test_cap_initiator_ac (& param );
900
900
}
901
- #endif /* BROADCAST_STREMT_CNT >= CAP_AC_MAX_STREAM */
901
+ #endif /* BROADCAST_STREAM_CNT >= CAP_AC_MAX_STREAM */
902
902
903
903
static void test_cap_initiator_ac_14 (void )
904
904
{
@@ -967,15 +967,15 @@ static const struct bst_test_instance test_cap_initiator_broadcast[] = {
967
967
.test_main_f = test_cap_initiator_ac_12 ,
968
968
.test_args_f = test_args ,
969
969
},
970
- #if BROADCAST_STREMT_CNT >= CAP_AC_MAX_STREAM
970
+ #if BROADCAST_STREAM_CNT >= CAP_AC_MAX_STREAM
971
971
{
972
972
.test_id = "cap_initiator_ac_13" ,
973
973
.test_pre_init_f = test_init ,
974
974
.test_tick_f = test_tick ,
975
975
.test_main_f = test_cap_initiator_ac_13 ,
976
976
.test_args_f = test_args ,
977
977
},
978
- #endif /* BROADCAST_STREMT_CNT >= CAP_AC_MAX_STREAM */
978
+ #endif /* BROADCAST_STREAM_CNT >= CAP_AC_MAX_STREAM */
979
979
{
980
980
.test_id = "cap_initiator_ac_14" ,
981
981
.test_pre_init_f = test_init ,
0 commit comments