HomeSort by relevance Sort by last modified time
    Searched refs:codec_index (Results 1 - 15 of 15) sorted by null

  /system/bt/stack/include/
a2dp_vendor.h 189 // Gets the A2DP vendor codec name for a given |codec_index|.
190 const char* A2DP_VendorCodecIndexStr(btav_a2dp_codec_index_t codec_index);
194 // |codec_index|.
196 bool A2DP_VendorInitCodecConfig(btav_a2dp_codec_index_t codec_index,
a2dp_aac.h 30 A2dpCodecConfigAacBase(btav_a2dp_codec_index_t codec_index,
34 : A2dpCodecConfig(codec_index, name, codec_priority),
a2dp_sbc.h 30 A2dpCodecConfigSbcBase(btav_a2dp_codec_index_t codec_index,
34 : A2dpCodecConfig(codec_index, name, codec_priority),
a2dp_codec_api.h 54 // Creates a codec entry. The selected codec is defined by |codec_index|,
57 btav_a2dp_codec_index_t codec_index,
204 // Constructor where |codec_index| is the unique index that identifies the
209 A2dpCodecConfig(btav_a2dp_codec_index_t codec_index, const std::string& name,
702 // Gets the A2DP codec name for a given |codec_index|.
703 const char* A2DP_CodecIndexStr(btav_a2dp_codec_index_t codec_index);
707 // by |codec_index|.
709 bool A2DP_InitCodecConfig(btav_a2dp_codec_index_t codec_index,
    [all...]
  /system/bt/stack/a2dp/
a2dp_codec_config.cc 46 // |codec_index| and |codec_priority| are the codec type and priority to use
50 btav_a2dp_codec_config_t* codec_config, btav_a2dp_codec_index_t codec_index,
53 codec_config->codec_type = codec_index;
57 A2dpCodecConfig::A2dpCodecConfig(btav_a2dp_codec_index_t codec_index,
60 : codec_index_(codec_index),
107 btav_a2dp_codec_index_t codec_index,
109 LOG_DEBUG(LOG_TAG, "%s: codec %s", __func__, A2DP_CodecIndexStr(codec_index));
112 switch (codec_index) {
587 btav_a2dp_codec_index_t codec_index = local
593 auto cp_iter = codec_priorities_.find(codec_index);
651 btav_a2dp_codec_index_t codec_index = A2DP_SourceCodecIndex(p_codec_info); local
661 btav_a2dp_codec_index_t codec_index = A2DP_SinkCodecIndex(p_codec_info); local
    [all...]
a2dp_vendor.cc 522 const char* A2DP_VendorCodecIndexStr(btav_a2dp_codec_index_t codec_index) {
523 // Add checks based on codec_index
524 switch (codec_index) {
544 bool A2DP_VendorInitCodecConfig(btav_a2dp_codec_index_t codec_index,
546 // Add checks based on codec_index
547 switch (codec_index) {
  /external/webrtc/webrtc/modules/audio_coding/acm2/
rent_a_codec.h 156 static inline rtc::Optional<CodecId> CodecIdFromIndex(int codec_index) {
157 return static_cast<size_t>(codec_index) < NumberOfCodecs()
159 static_cast<RentACodec::CodecId>(codec_index))
audio_coding_module_impl.cc 603 auto codec_index = RentACodec::CodecIndexFromId(*codec_id); local
604 RTC_CHECK(codec_index) << "Invalid codec ID: " << static_cast<int>(*codec_id);
616 *codec_index, codec.pltype, codec.channels, codec.plfreq,
  /system/bt/bta/include/
bta_av_co.h 47 bool bta_av_co_audio_init(btav_a2dp_codec_index_t codec_index,
  /system/bt/stack/test/
stack_a2dp_test.cc 194 btav_a2dp_codec_index_t codec_index = local
198 switch (codec_index) {
233 supported_codecs_.insert(codec_index);
238 bool has_codec_support(btav_a2dp_codec_index_t codec_index) {
239 return supported_codecs_.find(codec_index) != supported_codecs_.end();
748 btav_a2dp_codec_index_t codec_index = local
806 btav_a2dp_codec_index_t codec_index = local
    [all...]
  /system/bt/btif/co/
bta_av_co.cc 485 * @param codec_index the codec index to use
489 btav_a2dp_codec_index_t codec_index);
499 btav_a2dp_codec_index_t codec_index);
    [all...]
  /system/bt/bta/av/
bta_av_main.cc 636 btav_a2dp_codec_index_t codec_index = local
638 if (!(*bta_av_a2dp_cos.init)(codec_index, &avdtp_stream_config.cfg)) {
641 if (AVDT_CreateStream(p_scb->app_id, &p_scb->seps[codec_index].av_handle,
646 memcpy(p_scb->seps[codec_index].codec_info,
648 p_scb->seps[codec_index].tsep = avdtp_stream_config.tsep;
650 p_scb->seps[codec_index].p_app_sink_data_cback =
656 p_scb->seps[codec_index].p_app_sink_data_cback = NULL;
    [all...]
bta_av_int.h 158 typedef bool (*tBTA_AV_CO_INIT)(btav_a2dp_codec_index_t codec_index,
bta_av_aact.cc 3219 btav_a2dp_codec_index_t codec_index = local
    [all...]
  /system/bt/bta/ag/
bta_ag_sco.cc 393 esco_codec_t codec_index = ESCO_CODEC_CVSD; local
398 codec_index = ESCO_CODEC_MSBC_T2;
400 codec_index = ESCO_CODEC_MSBC_T1;
405 enh_esco_params_t params = esco_parameters_for_codec(codec_index);
    [all...]

Completed in 271 milliseconds