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 aptX Encoder
19 //
20 
21 #ifndef A2DP_VENDOR_APTX_ENCODER_H
22 #define A2DP_VENDOR_APTX_ENCODER_H
23 
24 #include <stddef.h>
25 #include <stdint.h>
26 
27 #include "a2dp_codec_api.h"
28 #include "a2dp_vendor.h"
29 
30 // Loads the A2DP aptX encoder.
31 // Return loading status
32 tLOADING_CODEC_STATUS A2DP_VendorLoadEncoderAptx(void);
33 
34 // Unloads the A2DP aptX encoder.
35 void A2DP_VendorUnloadEncoderAptx(void);
36 
37 // Initialize the A2DP aptX encoder.
38 // |p_peer_params| contains the A2DP peer information.
39 // The current A2DP codec config is in |a2dp_codec_config|.
40 // |read_callback| is the callback for reading the input audio data.
41 // |enqueue_callback| is the callback for enqueueing the encoded audio data.
42 void a2dp_vendor_aptx_encoder_init(
43     const tA2DP_ENCODER_INIT_PEER_PARAMS* p_peer_params,
44     A2dpCodecConfig* a2dp_codec_config,
45     a2dp_source_read_callback_t read_callback,
46     a2dp_source_enqueue_callback_t enqueue_callback);
47 
48 // Cleanup the A2DP aptX encoder.
49 void a2dp_vendor_aptx_encoder_cleanup(void);
50 
51 // Reset the feeding for the A2DP aptX encoder.
52 void a2dp_vendor_aptx_feeding_reset(void);
53 
54 // Flush the feeding for the A2DP aptX encoder.
55 void a2dp_vendor_aptx_feeding_flush(void);
56 
57 // Get the A2DP aptX encoder interval (in milliseconds).
58 uint64_t a2dp_vendor_aptx_get_encoder_interval_ms(void);
59 
60 // Get the A2DP aptX encoded maximum frame size
61 int a2dp_vendor_aptx_get_effective_frame_size();
62 
63 // Prepare and send A2DP aptX encoded frames.
64 // |timestamp_us| is the current timestamp (in microseconds).
65 void a2dp_vendor_aptx_send_frames(uint64_t timestamp_us);
66 
67 typedef int (*tAPTX_ENCODER_INIT)(void* state, short endian);
68 
69 typedef int (*tAPTX_ENCODER_ENCODE_STEREO)(void* state, void* pcmL, void* pcmR,
70                                            void* buffer);
71 
72 typedef int (*tAPTX_ENCODER_SIZEOF_PARAMS)(void);
73 
74 typedef struct {
75   tAPTX_ENCODER_INIT init_func;
76   tAPTX_ENCODER_ENCODE_STEREO encode_stereo_func;
77   tAPTX_ENCODER_SIZEOF_PARAMS sizeof_params_func;
78 } tAPTX_API;
79 
80 // Filled the |external_api| with the ptr to the codec api
81 // return true if the codec is loaded
82 // This is for test purpose and ensure we are testing the api in real life
83 // condition
84 bool A2DP_VendorCopyAptxApi(tAPTX_API& external_api);
85 
86 #endif  // A2DP_VENDOR_APTX_ENCODER_H
87