Searched refs:aacProfile (Results 1 – 7 of 7) sorted by relevance
/frameworks/av/media/codec2/components/aac/ |
D | C2SoftAacEnc.cpp | 251 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/ |
D | Utils.cpp | 1024 int32_t aacProfile = -1; in convertMetaDataToMessage() local 1025 if (meta->findInt32(kKeyAACAOT, &aacProfile)) { in convertMetaDataToMessage() 1026 msg->setInt32("aac-profile", aacProfile); in convertMetaDataToMessage() 1773 int32_t aacProfile = -1; in convertMessageToMetaData() local 1774 if (msg->findInt32("aac-profile", &aacProfile)) { in convertMessageToMetaData() 1775 meta->setInt32(kKeyAACAOT, aacProfile); in convertMessageToMetaData()
|
D | ACodec.cpp | 2116 int32_t isADTS, aacProfile; in configureCodec() local 2124 if (!msg->findInt32("aac-profile", &aacProfile)) { in configureCodec() 2125 aacProfile = OMX_AUDIO_AACObjectNull; in configureCodec() 2164 encoder, numChannels, sampleRate, bitrate, aacProfile, in configureCodec() 2698 int32_t bitRate, int32_t aacProfile, bool isADTS, int32_t sbrMode, in setupAACCodec() argument 2765 profile.eAACProfile = (OMX_AUDIO_AACPROFILETYPE) aacProfile; in setupAACCodec()
|
/frameworks/av/media/libmediaplayer2/nuplayer2/ |
D | NuPlayer2Renderer.cpp | 1924 int32_t aacProfile = -1; in onOpenAudioSink() local 1926 && format->findInt32("aac-profile", &aacProfile)) { in onOpenAudioSink() 1930 aacProfile); in onOpenAudioSink()
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerRenderer.cpp | 1937 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/ |
D | ACodec.h | 474 int32_t aacProfile, bool isADTS, int32_t sbrMode,
|
/frameworks/base/media/java/android/media/ |
D | MediaCodecInfo.java | 3451 Integer aacProfile = (Integer)map.get(MediaFormat.KEY_AAC_PROFILE); 3453 profile = aacProfile; 3454 } else if (aacProfile != null && !aacProfile.equals(profile)) {
|