Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:drc

2129             drcParams_t drc;
2147 if (!msg->findInt32("aac-encoded-target-level", &drc.encodedTargetLevel)) {
2149 drc.encodedTargetLevel = -1;
2151 if (!msg->findInt32("aac-drc-cut-level", &drc.drcCut)) {
2153 drc.drcCut = -1;
2155 if (!msg->findInt32("aac-drc-boost-level", &drc.drcBoost)) {
2157 drc.drcBoost = -1;
2159 if (!msg->findInt32("aac-drc-heavy-compression", &drc.heavyCompression)) {
2161 drc.heavyCompression = -1;
2163 if (!msg->findInt32("aac-target-ref-level", &drc.targetRefLevel)) {
2165 drc.targetRefLevel = -1;
2170 isADTS != 0, sbrMode, maxOutputChannelCount, drc,
2643 int32_t maxOutputChannelCount, const drcParams_t& drc,
2770 presentation.nDrcCut = drc.drcCut;
2771 presentation.nDrcBoost = drc.drcBoost;
2772 presentation.nHeavyCompression = drc.heavyCompression;
2773 presentation.nTargetReferenceLevel = drc.targetRefLevel;
2774 presentation.nEncodedTargetLevel = drc.encodedTargetLevel;