mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'test/bqb_test_bt_classic_a2dp_v4.4' into 'release/v4.4'
fix(bt/avdtp): Reject SET CONFIGURATION command with error code INVALID_CODEC_TYPE(backport v4.4) See merge request espressif/esp-idf!25687
This commit is contained in:
commit
c2ddb5b79c
@ -727,8 +727,7 @@ static void bta_av_adjust_seps_idx(tBTA_AV_SCB *p_scb, UINT8 avdt_handle)
|
||||
for (xx = 0; xx < BTA_AV_MAX_SEPS; xx++) {
|
||||
APPL_TRACE_DEBUG("av_handle: %d codec_type: %d",
|
||||
p_scb->seps[xx].av_handle, p_scb->seps[xx].codec_type);
|
||||
if ((p_scb->seps[xx].av_handle && p_scb->codec_type == p_scb->seps[xx].codec_type)
|
||||
&& (p_scb->seps[xx].av_handle == avdt_handle)) {
|
||||
if ((p_scb->seps[xx].av_handle) && (p_scb->seps[xx].av_handle == avdt_handle)) {
|
||||
p_scb->sep_idx = xx;
|
||||
p_scb->avdt_handle = p_scb->seps[xx].av_handle;
|
||||
break;
|
||||
@ -1021,6 +1020,7 @@ void bta_av_cleanup(tBTA_AV_SCB *p_scb, tBTA_AV_DATA *p_data)
|
||||
p_scb->wait = 0;
|
||||
p_scb->num_disc_snks = 0;
|
||||
p_scb->disc_rsn = 0;
|
||||
p_scb->avdt_handle = 0;
|
||||
bta_sys_stop_timer(&p_scb->timer);
|
||||
if (p_scb->deregistring) {
|
||||
/* remove stream */
|
||||
|
Loading…
x
Reference in New Issue
Block a user