/* * Copyright 2019 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define LOG_TAG "BTAudioA2dpHIDL" #include "a2dp_encoding_hidl.h" #include #include #include "a2dp_sbc_constants.h" #include "btif/include/btif_a2dp_source.h" #include "btif/include/btif_av.h" #include "btif/include/btif_av_co.h" #include "btif/include/btif_hf.h" #include "client_interface_hidl.h" #include "codec_status_hidl.h" #include "osi/include/properties.h" #include "types/raw_address.h" namespace fmt { template <> struct formatter : enum_formatter {}; template <> struct formatter : enum_formatter {}; template <> struct formatter : enum_formatter { }; } // namespace fmt namespace { using ::bluetooth::audio::hidl::AudioCapabilities; using ::bluetooth::audio::hidl::AudioConfiguration; using ::bluetooth::audio::hidl::BitsPerSample; using ::bluetooth::audio::hidl::BluetoothAudioCtrlAck; using ::bluetooth::audio::hidl::ChannelMode; using ::bluetooth::audio::hidl::PcmParameters; using ::bluetooth::audio::hidl::SampleRate; using ::bluetooth::audio::hidl::SessionType; using ::bluetooth::audio::hidl::BluetoothAudioSinkClientInterface; using ::bluetooth::audio::hidl::codec::A2dpAacToHalConfig; using ::bluetooth::audio::hidl::codec::A2dpAptxToHalConfig; using ::bluetooth::audio::hidl::codec::A2dpCodecToHalBitsPerSample; using ::bluetooth::audio::hidl::codec::A2dpCodecToHalChannelMode; using ::bluetooth::audio::hidl::codec::A2dpCodecToHalSampleRate; using ::bluetooth::audio::hidl::codec::A2dpLdacToHalConfig; using ::bluetooth::audio::hidl::codec::A2dpSbcToHalConfig; using ::bluetooth::audio::hidl::codec::CodecConfiguration; using namespace bluetooth; BluetoothAudioCtrlAck a2dp_ack_to_bt_audio_ctrl_ack(tA2DP_CTRL_ACK ack); // Provide call-in APIs for the Bluetooth Audio HAL class A2dpTransport : public ::bluetooth::audio::hidl::IBluetoothSinkTransportInstance { public: A2dpTransport(SessionType sessionType) : IBluetoothSinkTransportInstance(sessionType, (AudioConfiguration){}), total_bytes_read_(0), data_position_({}) { a2dp_pending_cmd_ = A2DP_CTRL_CMD_NONE; remote_delay_report_ = 0; } BluetoothAudioCtrlAck StartRequest() override { // Check if a previous request is not finished if (a2dp_pending_cmd_ == A2DP_CTRL_CMD_START) { log::info("A2DP_CTRL_CMD_START in progress"); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_PENDING); } else if (a2dp_pending_cmd_ != A2DP_CTRL_CMD_NONE) { log::warn("busy in pending_cmd={}", a2dp_pending_cmd_); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_FAILURE); } // Don't send START request to stack while we are in a call if (!bluetooth::headset::IsCallIdle()) { log::error("call state is busy"); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_INCALL_FAILURE); } if (btif_av_stream_started_ready(A2dpType::kSource)) { // Already started, ACK back immediately. return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_SUCCESS); } if (btif_av_stream_ready(A2dpType::kSource)) { /* * Post start event and wait for audio path to open. * If we are the source, the ACK will be sent after the start * procedure is completed, othewise send it now. */ a2dp_pending_cmd_ = A2DP_CTRL_CMD_START; btif_av_stream_start(A2dpType::kSource); if (btif_av_get_peer_sep(A2dpType::kSource) != AVDT_TSEP_SRC) { log::info("accepted"); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_PENDING); } a2dp_pending_cmd_ = A2DP_CTRL_CMD_NONE; return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_SUCCESS); } log::error("AV stream is not ready to start"); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_FAILURE); } BluetoothAudioCtrlAck SuspendRequest() override { // Previous request is not finished if (a2dp_pending_cmd_ == A2DP_CTRL_CMD_SUSPEND) { log::info("A2DP_CTRL_CMD_SUSPEND in progress"); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_PENDING); } else if (a2dp_pending_cmd_ != A2DP_CTRL_CMD_NONE) { log::warn("busy in pending_cmd={}", a2dp_pending_cmd_); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_FAILURE); } // Local suspend if (btif_av_stream_started_ready(A2dpType::kSource)) { log::info("accepted"); a2dp_pending_cmd_ = A2DP_CTRL_CMD_SUSPEND; btif_av_stream_suspend(); return BluetoothAudioCtrlAck::PENDING; } /* If we are not in started state, just ack back ok and let * audioflinger close the channel. This can happen if we are * remotely suspended, clear REMOTE SUSPEND flag. */ btif_av_clear_remote_suspend_flag(A2dpType::kSource); return a2dp_ack_to_bt_audio_ctrl_ack(A2DP_CTRL_ACK_SUCCESS); } void StopRequest() override { if (btif_av_get_peer_sep(A2dpType::kSource) == AVDT_TSEP_SNK && !btif_av_stream_started_ready(A2dpType::kSource)) { btif_av_clear_remote_suspend_flag(A2dpType::kSource); return; } log::info("handling"); a2dp_pending_cmd_ = A2DP_CTRL_CMD_STOP; btif_av_stream_stop(RawAddress::kEmpty); } bool GetPresentationPosition(uint64_t* remote_delay_report_ns, uint64_t* total_bytes_read, timespec* data_position) override { *remote_delay_report_ns = remote_delay_report_ * 100000u; *total_bytes_read = total_bytes_read_; *data_position = data_position_; log::verbose("delay={}/10ms, data={} byte(s), timestamp={}.{}s", remote_delay_report_, total_bytes_read_, data_position_.tv_sec, data_position_.tv_nsec); return true; } void MetadataChanged(const source_metadata_t& source_metadata) override { auto track_count = source_metadata.track_count; auto tracks = source_metadata.tracks; log::verbose("{} track(s) received", track_count); while (track_count) { log::verbose("usage={}, content_type={}, gain={}", tracks->usage, tracks->content_type, tracks->gain); --track_count; ++tracks; } } tA2DP_CTRL_CMD GetPendingCmd() const { return a2dp_pending_cmd_; } void ResetPendingCmd() { a2dp_pending_cmd_ = A2DP_CTRL_CMD_NONE; } void ResetPresentationPosition() override { remote_delay_report_ = 0; total_bytes_read_ = 0; data_position_ = {}; } void LogBytesRead(size_t bytes_read) override { if (bytes_read != 0) { total_bytes_read_ += bytes_read; clock_gettime(CLOCK_MONOTONIC, &data_position_); } } // delay reports from AVDTP is based on 1/10 ms (100us) void SetRemoteDelay(uint16_t delay_report) { remote_delay_report_ = delay_report; } private: static tA2DP_CTRL_CMD a2dp_pending_cmd_; static uint16_t remote_delay_report_; uint64_t total_bytes_read_; timespec data_position_; }; tA2DP_CTRL_CMD A2dpTransport::a2dp_pending_cmd_ = A2DP_CTRL_CMD_NONE; uint16_t A2dpTransport::remote_delay_report_ = 0; // Common interface to call-out into Bluetooth Audio HAL BluetoothAudioSinkClientInterface* software_hal_interface = nullptr; BluetoothAudioSinkClientInterface* offloading_hal_interface = nullptr; BluetoothAudioSinkClientInterface* active_hal_interface = nullptr; // Save the value if the remote reports its delay before this interface is // initialized uint16_t remote_delay = 0; bool btaudio_a2dp_disabled = false; bool is_configured = false; BluetoothAudioCtrlAck a2dp_ack_to_bt_audio_ctrl_ack(tA2DP_CTRL_ACK ack) { switch (ack) { case A2DP_CTRL_ACK_SUCCESS: return BluetoothAudioCtrlAck::SUCCESS_FINISHED; case A2DP_CTRL_ACK_PENDING: return BluetoothAudioCtrlAck::PENDING; case A2DP_CTRL_ACK_INCALL_FAILURE: return BluetoothAudioCtrlAck::FAILURE_BUSY; case A2DP_CTRL_ACK_DISCONNECT_IN_PROGRESS: return BluetoothAudioCtrlAck::FAILURE_DISCONNECTING; case A2DP_CTRL_ACK_UNSUPPORTED: /* Offloading but resource failure */ return BluetoothAudioCtrlAck::FAILURE_UNSUPPORTED; case A2DP_CTRL_ACK_FAILURE: return BluetoothAudioCtrlAck::FAILURE; default: return BluetoothAudioCtrlAck::FAILURE; } } bool a2dp_get_selected_hal_codec_config(CodecConfiguration* codec_config) { A2dpCodecConfig* a2dp_config = bta_av_get_a2dp_current_codec(); if (a2dp_config == nullptr) { log::warn("failure to get A2DP codec config"); *codec_config = ::bluetooth::audio::hidl::codec::kInvalidCodecConfiguration; return false; } btav_a2dp_codec_config_t current_codec = a2dp_config->getCodecConfig(); switch (current_codec.codec_type) { case BTAV_A2DP_CODEC_INDEX_SOURCE_SBC: [[fallthrough]]; case BTAV_A2DP_CODEC_INDEX_SINK_SBC: { if (!A2dpSbcToHalConfig(codec_config, a2dp_config)) { return false; } break; } case BTAV_A2DP_CODEC_INDEX_SOURCE_AAC: [[fallthrough]]; case BTAV_A2DP_CODEC_INDEX_SINK_AAC: { if (!A2dpAacToHalConfig(codec_config, a2dp_config)) { return false; } break; } case BTAV_A2DP_CODEC_INDEX_SOURCE_APTX: [[fallthrough]]; case BTAV_A2DP_CODEC_INDEX_SOURCE_APTX_HD: { if (!A2dpAptxToHalConfig(codec_config, a2dp_config)) { return false; } break; } case BTAV_A2DP_CODEC_INDEX_SOURCE_LDAC: { if (!A2dpLdacToHalConfig(codec_config, a2dp_config)) { return false; } break; } case BTAV_A2DP_CODEC_INDEX_MAX: [[fallthrough]]; default: log::error("Unknown codec_type={}", current_codec.codec_type); *codec_config = ::bluetooth::audio::hidl::codec::kInvalidCodecConfiguration; return false; } codec_config->encodedAudioBitrate = a2dp_config->getTrackBitRate(); // Obtain the MTU RawAddress peer_addr = btif_av_source_active_peer(); tA2DP_ENCODER_INIT_PEER_PARAMS peer_param; bta_av_co_get_peer_params(peer_addr, &peer_param); int effectiveMtu = bta_av_co_get_encoder_effective_frame_size(); if (effectiveMtu > 0 && effectiveMtu < peer_param.peer_mtu) { codec_config->peerMtu = effectiveMtu; } else { codec_config->peerMtu = peer_param.peer_mtu; } if (current_codec.codec_type == BTAV_A2DP_CODEC_INDEX_SOURCE_SBC && codec_config->config.sbcConfig().maxBitpool <= A2DP_SBC_BITPOOL_MIDDLE_QUALITY) { codec_config->peerMtu = MAX_2MBPS_AVDTP_MTU; } else if (codec_config->peerMtu > MAX_3MBPS_AVDTP_MTU) { codec_config->peerMtu = MAX_3MBPS_AVDTP_MTU; } log::info("CodecConfiguration={}", toString(*codec_config)); return true; } bool a2dp_get_selected_hal_pcm_config(PcmParameters* pcm_config) { if (pcm_config == nullptr) return false; A2dpCodecConfig* a2dp_codec_configs = bta_av_get_a2dp_current_codec(); if (a2dp_codec_configs == nullptr) { log::warn("failure to get A2DP codec config"); *pcm_config = BluetoothAudioSinkClientInterface::kInvalidPcmConfiguration; return false; } btav_a2dp_codec_config_t current_codec = a2dp_codec_configs->getCodecConfig(); pcm_config->sampleRate = A2dpCodecToHalSampleRate(current_codec); pcm_config->bitsPerSample = A2dpCodecToHalBitsPerSample(current_codec); pcm_config->channelMode = A2dpCodecToHalChannelMode(current_codec); return (pcm_config->sampleRate != SampleRate::RATE_UNKNOWN && pcm_config->bitsPerSample != BitsPerSample::BITS_UNKNOWN && pcm_config->channelMode != ChannelMode::UNKNOWN); } // Checking if new bluetooth_audio is supported bool is_hal_2_0_force_disabled() { if (!is_configured) { btaudio_a2dp_disabled = osi_property_get_bool(BLUETOOTH_AUDIO_HAL_PROP_DISABLED, false); is_configured = true; } return btaudio_a2dp_disabled; } } // namespace namespace bluetooth { namespace audio { namespace hidl { namespace a2dp { bool update_codec_offloading_capabilities( const std::vector& framework_preference) { return ::bluetooth::audio::hidl::codec::UpdateOffloadingCapabilities( framework_preference); } // Checking if new bluetooth_audio is enabled bool is_hal_2_0_enabled() { return active_hal_interface != nullptr; } // Check if new bluetooth_audio is running with offloading encoders bool is_hal_2_0_offloading() { if (!is_hal_2_0_enabled()) { return false; } return active_hal_interface->GetTransportInstance()->GetSessionType() == SessionType::A2DP_HARDWARE_OFFLOAD_DATAPATH; } // Initialize BluetoothAudio HAL: openProvider bool init(bluetooth::common::MessageLoopThread* message_loop) { log::info(""); if (is_hal_2_0_force_disabled()) { log::error("BluetoothAudio HAL is disabled"); return false; } auto a2dp_sink = new A2dpTransport(SessionType::A2DP_SOFTWARE_ENCODING_DATAPATH); software_hal_interface = new BluetoothAudioSinkClientInterface(a2dp_sink, message_loop); if (!software_hal_interface->IsValid()) { log::warn("BluetoothAudio HAL for A2DP is invalid?!"); delete software_hal_interface; software_hal_interface = nullptr; delete a2dp_sink; return false; } if (btif_av_is_a2dp_offload_enabled()) { a2dp_sink = new A2dpTransport(SessionType::A2DP_HARDWARE_OFFLOAD_DATAPATH); offloading_hal_interface = new BluetoothAudioSinkClientInterface(a2dp_sink, message_loop); if (!offloading_hal_interface->IsValid()) { log::fatal("BluetoothAudio HAL for A2DP offloading is invalid?!"); delete offloading_hal_interface; offloading_hal_interface = nullptr; delete a2dp_sink; a2dp_sink = static_cast( software_hal_interface->GetTransportInstance()); delete software_hal_interface; software_hal_interface = nullptr; delete a2dp_sink; return false; } } active_hal_interface = (offloading_hal_interface != nullptr ? offloading_hal_interface : software_hal_interface); if (remote_delay != 0) { log::info("restore DELAY {} ms", static_cast(remote_delay / 10.0)); static_cast(active_hal_interface->GetTransportInstance()) ->SetRemoteDelay(remote_delay); remote_delay = 0; } return true; } // Clean up BluetoothAudio HAL void cleanup() { if (!is_hal_2_0_enabled()) return; end_session(); auto a2dp_sink = active_hal_interface->GetTransportInstance(); static_cast(a2dp_sink)->ResetPendingCmd(); static_cast(a2dp_sink)->ResetPresentationPosition(); active_hal_interface = nullptr; a2dp_sink = software_hal_interface->GetTransportInstance(); delete software_hal_interface; software_hal_interface = nullptr; delete a2dp_sink; if (offloading_hal_interface != nullptr) { a2dp_sink = offloading_hal_interface->GetTransportInstance(); delete offloading_hal_interface; offloading_hal_interface = nullptr; delete a2dp_sink; } remote_delay = 0; } // Set up the codec into BluetoothAudio HAL bool setup_codec() { if (!is_hal_2_0_enabled()) { log::error("BluetoothAudio HAL is not enabled"); return false; } CodecConfiguration codec_config{}; if (!a2dp_get_selected_hal_codec_config(&codec_config)) { log::error("Failed to get CodecConfiguration"); return false; } bool should_codec_offloading = bluetooth::audio::hidl::codec::IsCodecOffloadingEnabled(codec_config); if (should_codec_offloading && !is_hal_2_0_offloading()) { log::warn("Switching BluetoothAudio HAL to Hardware"); end_session(); active_hal_interface = offloading_hal_interface; } else if (!should_codec_offloading && is_hal_2_0_offloading()) { log::warn("Switching BluetoothAudio HAL to Software"); end_session(); active_hal_interface = software_hal_interface; } AudioConfiguration audio_config{}; if (active_hal_interface->GetTransportInstance()->GetSessionType() == SessionType::A2DP_HARDWARE_OFFLOAD_DATAPATH) { audio_config.codecConfig(codec_config); } else { PcmParameters pcm_config{}; if (!a2dp_get_selected_hal_pcm_config(&pcm_config)) { log::error("Failed to get PcmConfiguration"); return false; } audio_config.pcmConfig(pcm_config); } return active_hal_interface->UpdateAudioConfig(audio_config); } void start_session() { if (!is_hal_2_0_enabled()) { log::error("BluetoothAudio HAL is not enabled"); return; } active_hal_interface->StartSession(); } void end_session() { if (!is_hal_2_0_enabled()) { log::error("BluetoothAudio HAL is not enabled"); return; } active_hal_interface->EndSession(); static_cast(active_hal_interface->GetTransportInstance()) ->ResetPendingCmd(); static_cast(active_hal_interface->GetTransportInstance()) ->ResetPresentationPosition(); } void ack_stream_started(const tA2DP_CTRL_ACK& ack) { auto ctrl_ack = a2dp_ack_to_bt_audio_ctrl_ack(ack); log::info("result={}", ctrl_ack); auto a2dp_sink = static_cast(active_hal_interface->GetTransportInstance()); auto pending_cmd = a2dp_sink->GetPendingCmd(); if (pending_cmd == A2DP_CTRL_CMD_START) { active_hal_interface->StreamStarted(ctrl_ack); } else { log::warn("pending={} ignore result={}", pending_cmd, ctrl_ack); return; } if (ctrl_ack != bluetooth::audio::hidl::BluetoothAudioCtrlAck::PENDING) { a2dp_sink->ResetPendingCmd(); } } void ack_stream_suspended(const tA2DP_CTRL_ACK& ack) { auto ctrl_ack = a2dp_ack_to_bt_audio_ctrl_ack(ack); log::info("result={}", ctrl_ack); auto a2dp_sink = static_cast(active_hal_interface->GetTransportInstance()); auto pending_cmd = a2dp_sink->GetPendingCmd(); if (pending_cmd == A2DP_CTRL_CMD_SUSPEND) { active_hal_interface->StreamSuspended(ctrl_ack); } else if (pending_cmd == A2DP_CTRL_CMD_STOP) { log::info("A2DP_CTRL_CMD_STOP result={}", ctrl_ack); } else { log::warn("pending={} ignore result={}", pending_cmd, ctrl_ack); return; } if (ctrl_ack != bluetooth::audio::hidl::BluetoothAudioCtrlAck::PENDING) { a2dp_sink->ResetPendingCmd(); } } // Read from the FMQ of BluetoothAudio HAL size_t read(uint8_t* p_buf, uint32_t len) { if (!is_hal_2_0_enabled()) { log::error("BluetoothAudio HAL is not enabled"); return 0; } else if (is_hal_2_0_offloading()) { log::error( "session_type={} is not A2DP_SOFTWARE_ENCODING_DATAPATH", toString( active_hal_interface->GetTransportInstance()->GetSessionType())); return 0; } return active_hal_interface->ReadAudioData(p_buf, len); } // Update A2DP delay report to BluetoothAudio HAL void set_remote_delay(uint16_t delay_report) { if (!is_hal_2_0_enabled()) { log::info("not ready for DelayReport {} ms", static_cast(delay_report / 10.0)); remote_delay = delay_report; return; } log::verbose("DELAY {} ms", static_cast(delay_report / 10.0)); static_cast(active_hal_interface->GetTransportInstance()) ->SetRemoteDelay(delay_report); } } // namespace a2dp } // namespace hidl } // namespace audio } // namespace bluetooth