Home | History | Annotate | Download | only in src

Lines Matching refs:confTab

416       tC->confTab.threshOn[HIFILT] = 1437;
417 tC->confTab.threshOn[LOFILT] = 1500;
419 tC->confTab.tnsLimitOrder[HIFILT] = tC->maxOrder;
420 tC->confTab.tnsLimitOrder[LOFILT] = tC->maxOrder - 7;
422 tC->confTab.tnsFilterDirection[HIFILT] = FILTER_DIRECTION;
423 tC->confTab.tnsFilterDirection[LOFILT] = FILTER_DIRECTION;
425 tC->confTab.acfSplit[HIFILT] = -1; /* signal Merged4to2QuartersAutoCorrelation in FDKaacEnc_MergedAutoCorrelation*/
426 tC->confTab.acfSplit[LOFILT] = -1; /* signal Merged4to2QuartersAutoCorrelation in FDKaacEnc_MergedAutoCorrelation */
428 tC->confTab.filterEnabled[HIFILT] = 1;
429 tC->confTab.filterEnabled[LOFILT] = 1;
430 tC->confTab.seperateFiltersAllowed = 1;
458 tC->confTab.threshOn[HIFILT] = pCfg->threshOn[HIFILT];
459 tC->confTab.threshOn[LOFILT] = pCfg->threshOn[LOFILT];
461 tC->confTab.tnsLimitOrder[HIFILT] = pCfg->tnsLimitOrder[HIFILT];
462 tC->confTab.tnsLimitOrder[LOFILT] = pCfg->tnsLimitOrder[LOFILT];
464 tC->confTab.tnsFilterDirection[HIFILT] = pCfg->tnsFilterDirection[HIFILT];
465 tC->confTab.tnsFilterDirection[LOFILT] = pCfg->tnsFilterDirection[LOFILT];
467 tC->confTab.acfSplit[HIFILT] = pCfg->acfSplit[HIFILT];
468 tC->confTab.acfSplit[LOFILT] = pCfg->acfSplit[LOFILT];
470 tC->confTab.filterEnabled[HIFILT] = pCfg->filterEnabled[HIFILT];
471 tC->confTab.filterEnabled[LOFILT] = pCfg->filterEnabled[LOFILT];
472 tC->confTab.seperateFiltersAllowed = pCfg->seperateFiltersAllowed;
786 tC->confTab.acfSplit,
791 tsbi->predictionGain = FDKaacEnc_AutoToParcor(rxx2, parcor_tmp, tC->confTab.tnsLimitOrder[HIFILT]);
797 tC->confTab.tnsLimitOrder[HIFILT],
801 for (i = tC->confTab.tnsLimitOrder[HIFILT] - 1; i >= 0; i--) {
814 tnsInfo->direction[subBlockNumber][HIFILT] = tC->confTab.tnsFilterDirection[HIFILT];
818 if ((tsbi->predictionGain > tC->confTab.threshOn[HIFILT]) || (sumSqrCoef > (tC->confTab.tnsLimitOrder[HIFILT]/2 + 2)))
825 (tC->confTab.filterEnabled[LOFILT]) && (tC->confTab.seperateFiltersAllowed) )
830 INT predGain = FDKaacEnc_AutoToParcor(rxx1, parcor_tmp, tC->confTab.tnsLimitOrder[LOFILT]);
836 tC->confTab.tnsLimitOrder[LOFILT],
840 for (i = tC->confTab.tnsLimitOrder[LOFILT] - 1; i >= 0; i--) {
852 tnsInfo->direction[subBlockNumber][LOFILT] = tC->confTab.tnsFilterDirection[LOFILT];
856 if ( ( (predGain > tC->confTab.threshOn[LOFILT]) && (predGain < (16000 * tC->confTab.tnsLimitOrder[LOFILT])) )
857 || ( (sumSqrCoef > 9) && (sumSqrCoef < 22 * tC->confTab.tnsLimitOrder[LOFILT]) ) )
861 for (i = 0; i < tC->confTab.tnsLimitOrder[LOFILT]; i++) {