Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/aac/
DC2SoftAacDec.cpp401 int32_t albumMode = mIntf->getDrcAlbumMode(); in initDecoder() local
402 ALOGV("AAC decoder using MPEG-D DRC album mode %d", albumMode); in initDecoder()
403 aacDecoder_SetParam(mAACDecoder, AAC_UNIDRC_ALBUM_MODE, albumMode); in initDecoder()
743 int32_t albumMode = mIntf->getDrcAlbumMode(); in process() local
744 ALOGV("AAC decoder using MPEG-D DRC album mode %d", albumMode); in process()
745 aacDecoder_SetParam(mAACDecoder, AAC_UNIDRC_ALBUM_MODE, albumMode); in process()
925 (C2Config::drc_album_mode_t) albumMode); in process()
/frameworks/av/media/libstagefright/codecs/aacdec/
DSoftAAC2.cpp225 int32_t albumMode = DRC_DEFAULT_MOBILE_DRC_ALBUM; in initDecoder() local
226 ALOGV("AAC decoder using MPEG-D Album mode value %d (default=%d)", albumMode, in initDecoder()
228 aacDecoder_SetParam(mAACDecoder, AAC_UNIDRC_ALBUM_MODE, albumMode); in initDecoder()
/frameworks/av/media/libstagefright/include/media/stagefright/
DACodec.h507 int32_t albumMode; member
/frameworks/av/media/libstagefright/
DACodec.cpp2295 if (!msg->findInt32("aac-drc-album-mode", &drc.albumMode)) { in configureCodec()
2297 drc.albumMode = -1; // valid values are 0 and 1 in configureCodec()
3051 presentation.nDrcAlbumMode = drc.albumMode; in setupAACCodec()