Home
last modified time | relevance | path

Searched refs:codecType (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothCodecConfig.java182 public BluetoothCodecConfig(@SourceCodecType int codecType, @CodecPriority int codecPriority, in BluetoothCodecConfig() argument
187 mCodecType = codecType; in BluetoothCodecConfig()
199 public BluetoothCodecConfig(@SourceCodecType int codecType) { in BluetoothCodecConfig() argument
200 mCodecType = codecType; in BluetoothCodecConfig()
347 final int codecType = in.readInt();
356 return new BluetoothCodecConfig(codecType, codecPriority,
/frameworks/base/telephony/java/android/telephony/
DCallQuality.java133 int codecType) { in CallQuality() argument
137 averageRoundTripTime, codecType, false, false, false); in CallQuality()
172 int codecType, in CallQuality() argument
186 this.mCodecType = codecType; in CallQuality()
/frameworks/av/media/libmediatranscoding/aidl/android/media/
DTranscodingVideoTrackFormat.aidl42 TranscodingVideoCodecType codecType; // TranscodingVideoCodecType::kUnspecified;
/frameworks/opt/net/voip/src/jni/rtp/
DAudioGroup.cpp105 int codecType, int dtmfType);
171 int codecType, int dtmfType) in set() argument
178 mCodecMagic = (0x8000 | codecType) << 16; in set()
993 int codecType = -1; in add() local
996 sscanf(codecSpec, "%d %15[^/]%*c%d", &codecType, codecName, &sampleRate); in add()
1009 codecType, dtmfType)) { in add()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DA2dpProfile.java295 final int codecType = (codecConfig == null || codecConfig.isMandatoryCodec()) in getHighQualityAudioOptionLabel() local
299 switch (codecType) { in getHighQualityAudioOptionLabel()
/frameworks/av/cmds/stagefright/
Dstagefright.cpp650 const char *codecType = queryDecoders? "Decoder" : "Encoder"; in dumpCodecDetails() local
652 "=============================\n", codecType); in dumpCodecDetails()
691 codecType, info->getCodecName()); in dumpCodecDetails()
/frameworks/av/media/libmediatranscoding/
DTranscoderWrapper.cpp71 if (requestedFormat->codecType == TranscodingVideoCodecType::kHevc && in getVideoFormat()
75 } else if (requestedFormat->codecType == TranscodingVideoCodecType::kAvc && in getVideoFormat()
/frameworks/base/apex/media/framework/java/android/media/
DMediaTranscodingManager.java1115 trackFormat.codecType = TranscodingVideoCodecType.kAvc; in convertToVideoTrackFormat()
1117 trackFormat.codecType = TranscodingVideoCodecType.kHevc; in convertToVideoTrackFormat()
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.cpp275 const char *codecType = queryDecoders? "Decoder" : "Encoder"; in dumpCodecDetails() local
277 "=============================\n", codecType); in dumpCodecDetails()
319 codecType, info->getCodecName()); in dumpCodecDetails()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java2191 cq.codecType = convertImsCodec(callQuality.getCodecType()); in toCallQualityProto()