/packages/modules/Bluetooth/system/audio_hal_interface/hidl/ |
D | codec_status_hidl.cc | 42 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 …]
|
D | client_interface_hidl_unittest.cc | 34 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 …]
|
D | hearing_aid_software_encoding_hidl.cc | 38 using ::android::hardware::bluetooth::audio::V2_0::CodecType;
|
D | le_audio_software_hidl.cc | 33 using ::android::hardware::bluetooth::audio::V2_0::CodecType;
|
/packages/modules/Bluetooth/system/audio_hal_interface/aidl/ |
D | codec_status_aidl.cc | 47 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 …]
|
D | bluetooth_audio_port_impl.h | 29 using ::aidl::android::hardware::bluetooth::audio::CodecType;
|
D | le_audio_software_aidl.cc | 42 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()
|
D | hearing_aid_software_encoding_aidl.cc | 39 using ::aidl::android::hardware::bluetooth::audio::CodecType;
|
/packages/modules/ImsMedia/framework/src/android/telephony/imsmedia/ |
D | AudioConfig.java | 37 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()
|
D | TextConfig.java | 52 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()
|
D | VideoConfig.java | 76 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/ |
D | libbt_audio_hal_client_interface_fuzzer.cpp | 34 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()
|
D | README.md | 55 | `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/ |
D | MainActivity.java | 8 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/ |
D | TextConfig.h | 42 enum CodecType enum
|
D | AudioConfig.h | 44 enum CodecType enum
|
D | VideoConfig.h | 51 enum CodecType enum
|