/****************************************************************************** * * Copyright (C) 2016 The Android Open Source Project * Copyright (C) 2009-2012 Broadcom Corporation * * 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. * ******************************************************************************/ #ifndef BTIF_A2DP_CONTROL_H #define BTIF_A2DP_CONTROL_H #include "audio_a2dp_hw/include/audio_a2dp_hw.h" // Initialize the A2DP control module. It should be called during the // startup stage of A2DP streaming. void btif_a2dp_control_init(void); // Cleanup the A2DP control module. It should be called during the shutdown // stage of A2DP streaming. void btif_a2dp_control_cleanup(void); // Acknowledge A2DP command to the origin of audio streaming. // |status| is the acknowledement status - see |tA2DP_CTRL_ACK|. void btif_a2dp_command_ack(tA2DP_CTRL_ACK status); #endif /* BTIF_A2DP_CONTROL_H */