Home
last modified time | relevance | path

Searched refs:albumMode (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/codec2/components/aac/
DC2SoftAacDec.cpp374 int32_t albumMode = mIntf->getDrcAlbumMode(); in initDecoder() local
375 ALOGV("AAC decoder using MPEG-D DRC album mode %d", albumMode); in initDecoder()
376 aacDecoder_SetParam(mAACDecoder, AAC_UNIDRC_ALBUM_MODE, albumMode); in initDecoder()
716 int32_t albumMode = mIntf->getDrcAlbumMode(); in process() local
717 ALOGV("AAC decoder using MPEG-D DRC album mode %d", albumMode); in process()
718 aacDecoder_SetParam(mAACDecoder, AAC_UNIDRC_ALBUM_MODE, albumMode); in process()
891 (C2Config::drc_album_mode_t) albumMode); in process()
/frameworks/av/media/libstagefright/codecs/aacdec/
DSoftAAC2.cpp224 int32_t albumMode = DRC_DEFAULT_MOBILE_DRC_ALBUM; in initDecoder() local
225 ALOGV("AAC decoder using MPEG-D Album mode value %d (default=%d)", albumMode, in initDecoder()
227 aacDecoder_SetParam(mAACDecoder, AAC_UNIDRC_ALBUM_MODE, albumMode); in initDecoder()
/frameworks/av/media/libstagefright/include/media/stagefright/
DACodec.h479 int32_t albumMode; member
/frameworks/av/media/libstagefright/
DACodec.cpp2207 if (!msg->findInt32("aac-drc-album-mode", &drc.albumMode)) { in configureCodec()
2209 drc.albumMode = -1; // valid values are 0 and 1 in configureCodec()
2904 presentation.nDrcAlbumMode = drc.albumMode; in setupAACCodec()