mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-27 14:14:32 +08:00
shared/bap: Remove unused param from bt_bap_verify_bis
This removes the codec parameter from bt_bap_verify_bis, since it is not used.
This commit is contained in:
parent
679349fbc9
commit
bbcf4891cd
@ -1198,7 +1198,7 @@ static bool parse_base(struct bap_data *bap_data, struct bt_iso_base *base,
|
||||
}
|
||||
|
||||
/* Check if this BIS matches any local PAC */
|
||||
bt_bap_verify_bis(bap_data->bap, bis_index, &codec,
|
||||
bt_bap_verify_bis(bap_data->bap, bis_index,
|
||||
merged_caps, &matched_lpac);
|
||||
|
||||
if (matched_lpac == NULL) {
|
||||
|
@ -6638,7 +6638,6 @@ struct iovec *bt_bap_merge_caps(struct iovec *l2_caps, struct iovec *l3_caps)
|
||||
}
|
||||
|
||||
void bt_bap_verify_bis(struct bt_bap *bap, uint8_t bis_index,
|
||||
struct bt_bap_codec *codec,
|
||||
struct iovec *caps,
|
||||
struct bt_bap_pac **lpac)
|
||||
{
|
||||
|
@ -254,7 +254,6 @@ struct iovec *bt_bap_stream_get_base(struct bt_bap_stream *stream);
|
||||
struct iovec *bt_bap_merge_caps(struct iovec *l2_caps, struct iovec *l3_caps);
|
||||
|
||||
void bt_bap_verify_bis(struct bt_bap *bap, uint8_t bis_index,
|
||||
struct bt_bap_codec *codec,
|
||||
struct iovec *caps,
|
||||
struct bt_bap_pac **lpac);
|
||||
|
||||
|
@ -575,22 +575,16 @@ static void bsnk_pac_added(struct bt_bap_pac *pac, void *user_data)
|
||||
struct test_data *data = user_data;
|
||||
struct bt_bap_pac *lpac;
|
||||
struct iovec *cc;
|
||||
struct bt_bap_codec codec = {0};
|
||||
struct bt_bap_stream *stream;
|
||||
uint8_t bis_idx = 1;
|
||||
|
||||
bt_bap_pac_set_ops(pac, &bcast_pac_ops, NULL);
|
||||
|
||||
if (data->cfg->vs)
|
||||
codec.id = 0xff;
|
||||
else
|
||||
codec.id = LC3_ID;
|
||||
|
||||
for (uint8_t i = 0; i < data->cfg->streams; i++) {
|
||||
cc = bt_bap_merge_caps(&data->cfg->cc, NULL);
|
||||
g_assert(cc);
|
||||
|
||||
bt_bap_verify_bis(data->bap, bis_idx++, &codec, cc, &lpac);
|
||||
bt_bap_verify_bis(data->bap, bis_idx++, cc, &lpac);
|
||||
|
||||
g_assert(lpac);
|
||||
g_assert(pac == lpac);
|
||||
|
Loading…
Reference in New Issue
Block a user