Message ID | 20240528160320.103845-2-silviu.barbulescu@nxp.com |
---|---|
State | New |
Headers | show |
Series | Transport: Update bcast sink transport state to pending | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=856629 ---Test result--- Test Summary: CheckPatch PASS 0.47 seconds GitLint PASS 0.33 seconds BuildEll PASS 25.04 seconds BluezMake PASS 1640.24 seconds MakeCheck PASS 13.57 seconds MakeDistcheck PASS 177.89 seconds CheckValgrind PASS 251.92 seconds CheckSmatch PASS 354.42 seconds bluezmakeextell PASS 120.12 seconds IncrementalBuild PASS 1436.54 seconds ScanBuild PASS 1025.86 seconds --- Regards, Linux Bluetooth
diff --git a/profiles/audio/transport.c b/profiles/audio/transport.c index 159fbd575..5b11bfeb6 100644 --- a/profiles/audio/transport.c +++ b/profiles/audio/transport.c @@ -1624,7 +1624,10 @@ static void bap_state_changed(struct bt_bap_stream *stream, uint8_t old_state, bap_update_qos(transport); else if (bt_bap_stream_io_dir(stream) != BT_BAP_BCAST_SOURCE) bap_update_bcast_qos(transport); - transport_update_playing(transport, FALSE); + if (bt_bap_stream_io_dir(stream) == BT_BAP_BCAST_SOURCE) + transport_update_playing(transport, TRUE); + else + transport_update_playing(transport, FALSE); return; case BT_BAP_STREAM_STATE_DISABLING: return;