1 /* 2 * Copyright 2016 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 // 18 // Interface to the A2DP AAC Encoder 19 // 20 21 #ifndef A2DP_AAC_ENCODER_H 22 #define A2DP_AAC_ENCODER_H 23 24 #include "a2dp_codec_api.h" 25 26 // Loads the A2DP AAC encoder. 27 // Return true on success, otherwise false. 28 bool A2DP_LoadEncoderAac(void); 29 30 // Unloads the A2DP AAC encoder. 31 void A2DP_UnloadEncoderAac(void); 32 33 // Initialize the A2DP AAC encoder. 34 // |p_peer_params| contains the A2DP peer information 35 // The current A2DP codec config is in |a2dp_codec_config|. 36 // |read_callback| is the callback for reading the input audio data. 37 // |enqueue_callback| is the callback for enqueueing the encoded audio data. 38 void a2dp_aac_encoder_init(const tA2DP_ENCODER_INIT_PEER_PARAMS* p_peer_params, 39 A2dpCodecConfig* a2dp_codec_config, 40 a2dp_source_read_callback_t read_callback, 41 a2dp_source_enqueue_callback_t enqueue_callback); 42 43 // Cleanup the A2DP AAC encoder. 44 void a2dp_aac_encoder_cleanup(void); 45 46 // Reset the feeding for the A2DP AAC encoder. 47 void a2dp_aac_feeding_reset(void); 48 49 // Flush the feeding for the A2DP AAC encoder. 50 void a2dp_aac_feeding_flush(void); 51 52 // Get the A2DP AAC encoder interval (in milliseconds). 53 uint64_t a2dp_aac_get_encoder_interval_ms(void); 54 55 // Prepare and send A2DP AAC encoded frames. 56 // |timestamp_us| is the current timestamp (in microseconds). 57 void a2dp_aac_send_frames(uint64_t timestamp_us); 58 59 #endif // A2DP_AAC_ENCODER_H 60