1 /* 2 * Copyright 2024 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #include "hfp_client_interface.h" 18 19 namespace bluetooth { 20 namespace audio { 21 namespace hfp { 22 GetDecode(bluetooth::common::MessageLoopThread * message_loop)23HfpClientInterface::Decode* HfpClientInterface::GetDecode( 24 bluetooth::common::MessageLoopThread* message_loop) { 25 return nullptr; 26 } 27 ReleaseDecode(HfpClientInterface::Decode * decode)28bool HfpClientInterface::ReleaseDecode(HfpClientInterface::Decode* decode) { 29 return false; 30 } 31 GetEncode(bluetooth::common::MessageLoopThread * message_loop)32HfpClientInterface::Encode* HfpClientInterface::GetEncode( 33 bluetooth::common::MessageLoopThread* message_loop) { 34 return nullptr; 35 } 36 ReleaseEncode(HfpClientInterface::Encode * encode)37bool HfpClientInterface::ReleaseEncode(HfpClientInterface::Encode* encode) { 38 return false; 39 } 40 GetOffload(bluetooth::common::MessageLoopThread * message_loop)41HfpClientInterface::Offload* HfpClientInterface::GetOffload( 42 bluetooth::common::MessageLoopThread* message_loop) { 43 return nullptr; 44 } 45 ReleaseOffload(HfpClientInterface::Offload * offload)46bool HfpClientInterface::ReleaseOffload(HfpClientInterface::Offload* offload) { 47 return false; 48 } 49 Get()50HfpClientInterface* HfpClientInterface::Get() { return nullptr; } 51 52 std::unordered_map<int, ::hfp::sco_config> GetHfpScoConfig()53HfpClientInterface::Offload::GetHfpScoConfig() { 54 return std::unordered_map<int, ::hfp::sco_config>(); 55 } 56 57 } // namespace hfp 58 } // namespace audio 59 } // namespace bluetooth 60