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.cpp1019 int32_t aacProfile = -1; in convertMetaDataToMessage() local
1020 if (meta->findInt32(kKeyAACAOT, &aacProfile)) { in convertMetaDataToMessage()
1021 msg->setInt32("aac-profile", aacProfile); in convertMetaDataToMessage()
1768 int32_t aacProfile = -1; in convertMessageToMetaData() local
1769 if (msg->findInt32("aac-profile", &aacProfile)) { in convertMessageToMetaData()
1770 meta->setInt32(kKeyAACAOT, aacProfile); in convertMessageToMetaData()
DACodec.cpp2123 int32_t isADTS, aacProfile; in configureCodec() local
2131 if (!msg->findInt32("aac-profile", &aacProfile)) { in configureCodec()
2132 aacProfile = OMX_AUDIO_AACObjectNull; in configureCodec()
2171 encoder, numChannels, sampleRate, bitrate, aacProfile, in configureCodec()
2705 int32_t bitRate, int32_t aacProfile, bool isADTS, int32_t sbrMode, in setupAACCodec() argument
2772 profile.eAACProfile = (OMX_AUDIO_AACPROFILETYPE) aacProfile; in setupAACCodec()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerRenderer.cpp1937 int32_t aacProfile = -1; in onOpenAudioSink() local
1939 && format->findInt32("aac-profile", &aacProfile)) { in onOpenAudioSink()
1943 aacProfile); in onOpenAudioSink()
/frameworks/av/media/libstagefright/include/media/stagefright/
DACodec.h474 int32_t aacProfile, bool isADTS, int32_t sbrMode,
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java3451 Integer aacProfile = (Integer)map.get(MediaFormat.KEY_AAC_PROFILE);
3453 profile = aacProfile;
3454 } else if (aacProfile != null && !aacProfile.equals(profile)) {