Home
last modified time | relevance | path

Searched refs:aacProfile (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/media/java/android/media/
DLoudnessCodecController.java363 int aacProfile = -1; in getCodecInfo() local
366 aacProfile = inputFormat.getInteger(MediaFormat.KEY_AAC_PROFILE); in getCodecInfo()
375 if (aacProfile == MediaCodecInfo.CodecProfileLevel.AACObjectXHE in getCodecInfo()
DMediaCodecInfo.java4016 Integer aacProfile = (Integer)map.get(MediaFormat.KEY_AAC_PROFILE);
4018 profile = aacProfile;
4019 } else if (aacProfile != null && !aacProfile.equals(profile)) {
/frameworks/av/media/codec2/components/aac/
DC2SoftAacEnc.cpp258 uint32_t aacProfile = mIntf->getProfile(); in setAudioParams() local
259 if (AACENC_OK != aacEncoder_SetParam(mAACEncoder, AACENC_AOT, getAOTFromProfile(aacProfile))) { in setAudioParams()
282 if (sbrMode != C2Config::AAC_SBR_AUTO && aacProfile == C2Config::PROFILE_AAC_ELD) { in setAudioParams()
/frameworks/av/media/libstagefright/
DUtils.cpp1169 int32_t aacProfile = -1; in convertMetaDataToMessage() local
1170 if (meta->findInt32(kKeyAACAOT, &aacProfile)) { in convertMetaDataToMessage()
1171 msg->setInt32("aac-profile", aacProfile); in convertMetaDataToMessage()
2024 int32_t aacProfile = -1; in convertMessageToMetaData() local
2025 if (msg->findInt32("aac-profile", &aacProfile)) { in convertMessageToMetaData()
2026 meta->setInt32(kKeyAACAOT, aacProfile); in convertMessageToMetaData()
DACodec.cpp2246 int32_t isADTS, aacProfile; in configureCodec() local
2254 if (!msg->findInt32("aac-profile", &aacProfile)) { in configureCodec()
2255 aacProfile = OMX_AUDIO_AACObjectNull; in configureCodec()
2305 encoder, numChannels, sampleRate, bitrate, aacProfile, in configureCodec()
2916 int32_t bitRate, int32_t aacProfile, bool isADTS, int32_t sbrMode, in setupAACCodec() argument
2983 profile.eAACProfile = (OMX_AUDIO_AACPROFILETYPE) aacProfile; in setupAACCodec()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerRenderer.cpp2041 int32_t aacProfile = -1; in onOpenAudioSink() local
2043 && format->findInt32("aac-profile", &aacProfile)) { in onOpenAudioSink()
2047 aacProfile); in onOpenAudioSink()
/frameworks/av/media/libstagefright/include/media/stagefright/
DACodec.h514 int32_t aacProfile, bool isADTS, int32_t sbrMode,