Home
last modified time | relevance | path

Searched refs:CodecType (Results 1 – 17 of 17) sorted by relevance

/packages/modules/Bluetooth/system/audio_hal_interface/hidl/
Dcodec_status_hidl.cc42 using ::android::hardware::bluetooth::audio::V2_0::CodecType;
165 .codecType = CodecType::UNKNOWN,
231 codec_config->codecType = CodecType::SBC; in A2dpSbcToHalConfig()
321 codec_config->codecType = CodecType::AAC; in A2dpAacToHalConfig()
385 codec_config->codecType = CodecType::APTX; in A2dpAptxToHalConfig()
387 codec_config->codecType = CodecType::APTX_HD; in A2dpAptxToHalConfig()
420 codec_config->codecType = CodecType::LDAC; in A2dpLdacToHalConfig()
475 uint32_t codec_type_masks = static_cast<uint32_t>(CodecType::UNKNOWN); in UpdateOffloadingCapabilities()
479 codec_type_masks |= CodecType::SBC; in UpdateOffloadingCapabilities()
482 codec_type_masks |= CodecType::AAC; in UpdateOffloadingCapabilities()
[all …]
Dclient_interface_hidl_unittest.cc34 using ::android::hardware::bluetooth::audio::V2_0::CodecType;
274 case CodecType::SBC: { in IsCodecOffloadingSupported()
290 case CodecType::AAC: { in IsCodecOffloadingSupported()
305 case CodecType::LDAC: { in IsCodecOffloadingSupported()
315 case CodecType::APTX: in IsCodecOffloadingSupported()
317 case CodecType::APTX_HD: { in IsCodecOffloadingSupported()
327 case CodecType::UNKNOWN: in IsCodecOffloadingSupported()
445 codec_config.codecType = CodecType::SBC; in SbcCodecConfigurationsGenerator()
526 codec_config.codecType = CodecType::AAC; in AacCodecConfigurationsGenerator()
597 codec_config.codecType = CodecType::LDAC; in LdacCodecConfigurationsGenerator()
[all …]
Dhearing_aid_software_encoding_hidl.cc38 using ::android::hardware::bluetooth::audio::V2_0::CodecType;
Dle_audio_software_hidl.cc33 using ::android::hardware::bluetooth::audio::V2_0::CodecType;
/packages/modules/Bluetooth/system/audio_hal_interface/aidl/
Dcodec_status_aidl.cc47 using ::aidl::android::hardware::bluetooth::audio::CodecType;
234 codec_config->codecType = CodecType::SBC; in A2dpSbcToHalConfig()
323 codec_config->codecType = CodecType::AAC; in A2dpAacToHalConfig()
386 codec_config->codecType = CodecType::APTX; in A2dpAptxToHalConfig()
388 codec_config->codecType = CodecType::APTX_HD; in A2dpAptxToHalConfig()
420 codec_config->codecType = CodecType::LDAC; in A2dpLdacToHalConfig()
479 codec_config->codecType = CodecType::OPUS; in A2dpOpusToHalConfig()
517 std::unordered_set<CodecType> codec_type_set; in UpdateOffloadingCapabilities()
521 codec_type_set.insert(CodecType::SBC); in UpdateOffloadingCapabilities()
524 codec_type_set.insert(CodecType::AAC); in UpdateOffloadingCapabilities()
[all …]
Dbluetooth_audio_port_impl.h29 using ::aidl::android::hardware::bluetooth::audio::CodecType;
Dle_audio_software_aidl.cc42 using ::aidl::android::hardware::bluetooth::audio::CodecType;
617 if (hal_capability.codecType != CodecType::LC3) { in hal_ucast_capability_to_stack_format()
673 if (hal_bcast_capability.codecType != CodecType::LC3) { in hal_bcast_capability_to_stack_format()
Dhearing_aid_software_encoding_aidl.cc39 using ::aidl::android::hardware::bluetooth::audio::CodecType;
/packages/modules/ImsMedia/framework/src/android/telephony/imsmedia/
DAudioConfig.java37 public static final int CODEC_AMR = android.hardware.radio.ims.media.CodecType.AMR;
39 public static final int CODEC_AMR_WB = android.hardware.radio.ims.media.CodecType.AMR_WB;
41 public static final int CODEC_EVS = android.hardware.radio.ims.media.CodecType.EVS;
43 public static final int CODEC_PCMA = android.hardware.radio.ims.media.CodecType.PCMA;
45 public static final int CODEC_PCMU = android.hardware.radio.ims.media.CodecType.PCMU;
58 public @interface CodecType {} annotation in AudioConfig
63 private @CodecType int codecType;
272 private @CodecType int codecType;
333 public Builder setCodecType(final @CodecType int codecType) { in setCodecType()
DTextConfig.java52 public @interface CodecType {} annotation in TextConfig
54 private final @CodecType int mCodecType;
185 private @CodecType int mCodecType;
206 public Builder setCodecType(final @CodecType int mCodecType) { in setCodecType()
DVideoConfig.java76 public @interface CodecType {} annotation in VideoConfig
260 private final @CodecType int mCodecType;
564 public Builder setCodecType(final @CodecType int codecType) { in setCodecType()
/packages/modules/Bluetooth/system/audio_hal_interface/fuzzer/
Dlibbt_audio_hal_client_interface_fuzzer.cpp34 using ::android::hardware::bluetooth::audio::V2_0::CodecType;
256 codecConfig.codecType = CodecType::SBC; in SbcCodecConfigurationsGenerator()
282 codecConfig.codecType = CodecType::AAC; in AacCodecConfigurationsGenerator()
311 codecConfig.codecType = CodecType::LDAC; in LdacCodecConfigurationsGenerator()
321 CodecType codecTypes[] = {CodecType::APTX, CodecType::APTX_HD}; in AptxCodecConfigurationsGenerator()
DREADME.md55 | `codecConfig.codecType` | 0.`CodecType::APTX` 1.`CodecType::APTX_HD` | Value obtained from Fuzzed…
/packages/modules/ImsMedia/test/app/ImsMediaTestingApp/app/src/main/java/com/example/imsmediatestingapp/
DMainActivity.java8 import android.hardware.radio.ims.media.CodecType;
146 private static final int[] CODEC_ORDER = new int[] { CodecType.AMR, CodecType.AMR_WB,
147 CodecType.EVS, CodecType.PCMA, CodecType.PCMU };
217 AMR(CodecType.AMR),
218 AMR_WB(CodecType.AMR_WB),
219 EVS(CodecType.EVS),
220 PCMA(CodecType.PCMA),
221 PCMU(CodecType.PCMU);
1629 case CodecType.AMR: in determineAudioConfig()
1630 case CodecType.AMR_WB: in determineAudioConfig()
[all …]
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/config/include/
DTextConfig.h42 enum CodecType enum
DAudioConfig.h44 enum CodecType enum
DVideoConfig.h51 enum CodecType enum