Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/aac/
DC2SoftAacEnc.cpp251 uint32_t aacProfile = mIntf->getProfile(); in setAudioParams() local
252 if (AACENC_OK != aacEncoder_SetParam(mAACEncoder, AACENC_AOT, getAOTFromProfile(aacProfile))) { in setAudioParams()
275 if (sbrMode != -1 && aacProfile == C2Config::PROFILE_AAC_ELD) { in setAudioParams()
/frameworks/av/media/libstagefright/
DUtils.cpp1081 int32_t aacProfile = -1; in convertMetaDataToMessage() local
1082 if (meta->findInt32(kKeyAACAOT, &aacProfile)) { in convertMetaDataToMessage()
1083 msg->setInt32("aac-profile", aacProfile); in convertMetaDataToMessage()
1836 int32_t aacProfile = -1; in convertMessageToMetaData() local
1837 if (msg->findInt32("aac-profile", &aacProfile)) { in convertMessageToMetaData()
1838 meta->setInt32(kKeyAACAOT, aacProfile); in convertMessageToMetaData()
DACodec.cpp2161 int32_t isADTS, aacProfile; in configureCodec() local
2169 if (!msg->findInt32("aac-profile", &aacProfile)) { in configureCodec()
2170 aacProfile = OMX_AUDIO_AACObjectNull; in configureCodec()
2217 encoder, numChannels, sampleRate, bitrate, aacProfile, in configureCodec()
2769 int32_t bitRate, int32_t aacProfile, bool isADTS, int32_t sbrMode, in setupAACCodec() argument
2836 profile.eAACProfile = (OMX_AUDIO_AACPROFILETYPE) aacProfile; in setupAACCodec()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerRenderer.cpp1962 int32_t aacProfile = -1; in onOpenAudioSink() local
1964 && format->findInt32("aac-profile", &aacProfile)) { in onOpenAudioSink()
1968 aacProfile); in onOpenAudioSink()
/frameworks/av/media/libstagefright/include/media/stagefright/
DACodec.h486 int32_t aacProfile, bool isADTS, int32_t sbrMode,
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java3491 Integer aacProfile = (Integer)map.get(MediaFormat.KEY_AAC_PROFILE);
3493 profile = aacProfile;
3494 } else if (aacProfile != null && !aacProfile.equals(profile)) {