Merge "Perform sanity check on DRC sets and improve the selection process"

This commit is contained in:
Jean-Michel Trivi 2020-01-22 22:57:04 +00:00 committed by Android (Google) Code Review
commit 44b9543d92
5 changed files with 88 additions and 22 deletions

View File

@ -145,6 +145,10 @@ struct s_drc_decoder {
SEL_PROC_OUTPUT selProcOutput;
} DRC_DECODER;
static int _getGainStatus(HANDLE_UNI_DRC_GAIN hUniDrcGain) {
return hUniDrcGain->status;
}
static int isResetNeeded(HANDLE_DRC_DECODER hDrcDec,
const SEL_PROC_OUTPUT oldSelProcOutput) {
int i, resetNeeded = 0;
@ -729,7 +733,9 @@ FDK_drcDec_ReadUniDrcGain(HANDLE_DRC_DECODER hDrcDec,
&(hDrcDec->uniDrcGain));
if (dErr) return DRC_DEC_NOT_OK;
hDrcDec->status = DRC_DEC_NEW_GAIN_PAYLOAD;
if (_getGainStatus(&(hDrcDec->uniDrcGain))) {
hDrcDec->status = DRC_DEC_NEW_GAIN_PAYLOAD;
}
return DRC_DEC_OK;
}
@ -751,7 +757,9 @@ FDK_drcDec_ReadUniDrc(HANDLE_DRC_DECODER hDrcDec,
startSelectionProcess(hDrcDec);
if (dErr) return DRC_DEC_NOT_OK;
hDrcDec->status = DRC_DEC_NEW_GAIN_PAYLOAD;
if (_getGainStatus(&(hDrcDec->uniDrcGain))) {
hDrcDec->status = DRC_DEC_NEW_GAIN_PAYLOAD;
}
return DRC_DEC_OK;
}

View File

@ -297,9 +297,11 @@ drcDec_GainDecoder_Conceal(HANDLE_DRC_GAIN_DECODER hGainDec,
int seq, gainSequenceCount;
DRC_COEFFICIENTS_UNI_DRC* pCoef =
selectDrcCoefficients(hUniDrcConfig, LOCATION_SELECTED);
if (pCoef == NULL) return DE_OK;
gainSequenceCount = fMin(pCoef->gainSequenceCount, (UCHAR)12);
if (pCoef && pCoef->gainSequenceCount) {
gainSequenceCount = fMin(pCoef->gainSequenceCount, (UCHAR)12);
} else {
gainSequenceCount = 1;
}
for (seq = 0; seq < gainSequenceCount; seq++) {
int lastNodeIndex = 0;

View File

@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
Software License for The Fraunhofer FDK AAC Codec Library for Android
© Copyright 1995 - 2018 Fraunhofer-Gesellschaft zur Förderung der angewandten
© Copyright 1995 - 2019 Fraunhofer-Gesellschaft zur Förderung der angewandten
Forschung e.V. All rights reserved.
1. INTRODUCTION
@ -199,11 +199,8 @@ drcDec_readUniDrc(HANDLE_FDK_BITSTREAM hBs, HANDLE_UNI_DRC_CONFIG hUniDrcConfig,
}
}
if (hUniDrcGain != NULL) {
err = drcDec_readUniDrcGain(hBs, hUniDrcConfig, frameSize, deltaTminDefault,
hUniDrcGain);
if (err) return err;
}
err = drcDec_readUniDrcGain(hBs, hUniDrcConfig, frameSize, deltaTminDefault,
hUniDrcGain);
return err;
}
@ -487,10 +484,13 @@ drcDec_readUniDrcGain(HANDLE_FDK_BITSTREAM hBs,
int seq, gainSequenceCount;
DRC_COEFFICIENTS_UNI_DRC* pCoef =
selectDrcCoefficients(hUniDrcConfig, LOCATION_SELECTED);
if (pCoef == NULL) return DE_OK;
if (hUniDrcGain == NULL) return DE_OK; /* hUniDrcGain not initialized yet */
gainSequenceCount = fMin(pCoef->gainSequenceCount, (UCHAR)12);
if (hUniDrcGain == NULL) return DE_NOT_OK;
hUniDrcGain->status = 0;
if (pCoef) {
gainSequenceCount = fMin(pCoef->gainSequenceCount, (UCHAR)12);
} else {
gainSequenceCount = 0;
}
for (seq = 0; seq < gainSequenceCount; seq++) {
UCHAR index = pCoef->gainSetIndexForGainSequence[seq];
@ -518,6 +518,9 @@ drcDec_readUniDrcGain(HANDLE_FDK_BITSTREAM hBs,
if (err) return err;
}
if (err == DE_OK && gainSequenceCount > 0) {
hUniDrcGain->status = 1;
}
return err;
}

View File

@ -956,17 +956,31 @@ static DRCDEC_SELECTION_PROCESS_RETURN _preSelectionRequirement4(
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
}
/* #5: The number of DRC bands is supported. */
/* #5: The number of DRC bands is supported. Moreover, gainSetIndex and
* gainSequenceIndex are within the allowed range. */
static DRCDEC_SELECTION_PROCESS_RETURN _preSelectionRequirement5(
DRC_INSTRUCTIONS_UNI_DRC* pDrcInstructionUniDrc,
DRC_COEFFICIENTS_UNI_DRC* pCoef, int* pMatchFound) {
int i;
int b, i;
*pMatchFound = 1;
if (pDrcInstructionUniDrc->drcSetId < 0) /* virtual DRC sets are okay */
{
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
}
if (pCoef == NULL) /* check for parametricDRC */
{
*pMatchFound = 1;
*pMatchFound = 0; /* parametricDRC not supported */
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
}
if (pCoef->drcLocation !=
pDrcInstructionUniDrc
->drcLocation) /* drcLocation must be LOCATION_SELECTED */
{
*pMatchFound = 0;
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
}
@ -974,10 +988,14 @@ static DRCDEC_SELECTION_PROCESS_RETURN _preSelectionRequirement5(
int indexDrcCoeff = pDrcInstructionUniDrc->gainSetIndexForChannelGroup[i];
int bandCount = 0;
if (indexDrcCoeff >= 12) {
*pMatchFound = 0;
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
}
if (indexDrcCoeff > pCoef->gainSetCount - 1) /* check for parametricDRC */
{
*pMatchFound = 1;
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
continue;
}
GAIN_SET* gainSet = &(pCoef->gainSet[indexDrcCoeff]);
@ -986,6 +1004,14 @@ static DRCDEC_SELECTION_PROCESS_RETURN _preSelectionRequirement5(
if (bandCount > 4) {
*pMatchFound = 0;
}
for (b = 0; b < bandCount; b++) {
if ((gainSet->gainSequenceIndex[b] >= 12) ||
(gainSet->gainSequenceIndex[b] >= pCoef->gainSequenceCount)) {
*pMatchFound = 0;
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
}
}
}
return DRCDEC_SELECTION_PROCESS_NO_ERROR;
@ -1078,6 +1104,19 @@ static int _targetLoudnessInRange(
return retVal;
}
static int _drcSetIsUsable(HANDLE_UNI_DRC_CONFIG hUniDrcConfig,
DRC_INSTRUCTIONS_UNI_DRC* pInst) {
int usable = 0;
DRC_COEFFICIENTS_UNI_DRC* pCoef =
selectDrcCoefficients(hUniDrcConfig, LOCATION_SELECTED);
/* check if ID is unique */
if (selectDrcInstructions(hUniDrcConfig, pInst->drcSetId) != pInst) return 0;
/* sanity check on drcInstructions */
_preSelectionRequirement5(pInst, pCoef, &usable);
return usable;
}
/* #8: The range of the target loudness specified for a DRC set has to include
* the requested decoder target loudness. */
static DRCDEC_SELECTION_PROCESS_RETURN _preSelectionRequirement8(
@ -2051,8 +2090,11 @@ static DRCDEC_SELECTION_PROCESS_RETURN _generateOutputInfo(
int dependsOnDrcSetID = pSelectionData->pInst->dependsOnDrcSet;
for (i = 0; i < hUniDrcConfig->drcInstructionsCountInclVirtual; i++) {
if (hUniDrcConfig->drcInstructionsUniDrc[i].drcSetId ==
dependsOnDrcSetID) {
DRC_INSTRUCTIONS_UNI_DRC* pInst =
&(hUniDrcConfig->drcInstructionsUniDrc[i]);
if (!_drcSetIsUsable(hUniDrcConfig, pInst)) continue;
if (pInst->drcSetId == dependsOnDrcSetID) {
hSelProcOutput->selectedDrcSetIds[hSelProcOutput->numSelectedDrcSets] =
hUniDrcConfig->drcInstructionsUniDrc[i].drcSetId;
hSelProcOutput->selectedDownmixIds[hSelProcOutput->numSelectedDrcSets] =
@ -2071,6 +2113,7 @@ static DRCDEC_SELECTION_PROCESS_RETURN _generateOutputInfo(
for (i = 0; i < hUniDrcConfig->drcInstructionsUniDrcCount; i++) {
DRC_INSTRUCTIONS_UNI_DRC* pInst =
&(hUniDrcConfig->drcInstructionsUniDrc[i]);
if (!_drcSetIsUsable(hUniDrcConfig, pInst)) continue;
if (pInst->drcSetEffect & EB_FADE) {
if (pInst->downmixId[0] == DOWNMIX_ID_ANY_DOWNMIX) {
@ -2098,6 +2141,7 @@ static DRCDEC_SELECTION_PROCESS_RETURN _generateOutputInfo(
for (i = 0; i < hUniDrcConfig->drcInstructionsUniDrcCount; i++) {
DRC_INSTRUCTIONS_UNI_DRC* pInst =
&(hUniDrcConfig->drcInstructionsUniDrc[i]);
if (!_drcSetIsUsable(hUniDrcConfig, pInst)) continue;
if (pInst->drcSetEffect & (EB_DUCK_OTHER | EB_DUCK_SELF)) {
for (j = 0; j < pInst->downmixIdCount; j++) {
@ -2124,6 +2168,7 @@ static DRCDEC_SELECTION_PROCESS_RETURN _generateOutputInfo(
for (i = 0; i < hUniDrcConfig->drcInstructionsUniDrcCount; i++) {
DRC_INSTRUCTIONS_UNI_DRC* pInst =
&(hUniDrcConfig->drcInstructionsUniDrc[i]);
if (!_drcSetIsUsable(hUniDrcConfig, pInst)) continue;
if (pInst->drcSetEffect & (EB_DUCK_OTHER | EB_DUCK_SELF)) {
for (j = 0; j < pInst->downmixIdCount; j++) {
@ -2231,6 +2276,11 @@ static DRCDEC_SELECTION_PROCESS_RETURN _drcSetPreSelection(
for (j = 0; j < hUniDrcConfig->drcInstructionsCountInclVirtual; j++) {
DRC_INSTRUCTIONS_UNI_DRC* pDrcInstruction =
&(hUniDrcConfig->drcInstructionsUniDrc[j]);
/* check if ID is unique */
if (selectDrcInstructions(hUniDrcConfig, pDrcInstruction->drcSetId) !=
pDrcInstruction)
continue;
retVal = _drcSetPreSelectionSingleInstruction(
hSelProcInput, i, hUniDrcConfig, hLoudnessInfoSet, pDrcInstruction,
*ppCandidatesPotential, *ppCandidatesSelected, codecMode);

View File

@ -130,6 +130,9 @@ typedef struct {
UCHAR uniDrcGainExtPresent;
UNI_DRC_GAIN_EXTENSION uniDrcGainExtension;
/* derived data */
UCHAR status;
} UNI_DRC_GAIN, *HANDLE_UNI_DRC_GAIN;
/****************/