Home | History | Annotate | Download | only in src

Lines Matching refs:detectorValues

191                         DETECTOR_VALUES *detectorValues,  /*!< pointer to DETECTOR_VALUES struct. */
220 detectorValues->avgNrg = FL2FXCONST_DBL(0.0f);
228 detectorValues->avgNrg += fMult(nrgVector[j], invIndex);
264 detectorValues->origQuotaMax = quotaVecOrig[stopChannel - 1];
265 detectorValues->sbrQuotaMax = quotaVecSbr[stopChannel - 1];
270 FDKmemmove(detectorValues->origQuotaMean, detectorValues->origQuotaMean + 1, INVF_SMOOTHING_LENGTH*sizeof(FIXP_DBL));
271 FDKmemmove(detectorValues->sbrQuotaMean, detectorValues->sbrQuotaMean + 1, INVF_SMOOTHING_LENGTH*sizeof(FIXP_DBL));
272 FDKmemmove(detectorValues->origQuotaMeanStrongest, detectorValues->origQuotaMeanStrongest + 1, INVF_SMOOTHING_LENGTH*sizeof(FIXP_DBL));
273 FDKmemmove(detectorValues->sbrQuotaMeanStrongest, detectorValues->sbrQuotaMeanStrongest + 1, INVF_SMOOTHING_LENGTH*sizeof(FIXP_DBL));
275 detectorValues->origQuotaMean[INVF_SMOOTHING_LENGTH] = origQuota<<1;
276 detectorValues->sbrQuotaMean[INVF_SMOOTHING_LENGTH] = sbrQuota<<1;
277 detectorValues->origQuotaMeanStrongest[INVF_SMOOTHING_LENGTH] = origQuotaMeanStrongest<<1;
278 detectorValues->sbrQuotaMeanStrongest[INVF_SMOOTHING_LENGTH] = sbrQuotaMeanStrongest<<1;
283 detectorValues->origQuotaMeanFilt = FL2FXCONST_DBL(0.0f);
284 detectorValues->sbrQuotaMeanFilt = FL2FXCONST_DBL(0.0f);
285 detectorValues->origQuotaMeanStrongestFilt = FL2FXCONST_DBL(0.0f);
286 detectorValues->sbrQuotaMeanStrongestFilt = FL2FXCONST_DBL(0.0f);
289 detectorValues->origQuotaMeanFilt += fMult(detectorValues->origQuotaMean[i], filter[i]);
290 detectorValues->sbrQuotaMeanFilt += fMult(detectorValues->sbrQuotaMean[i], filter[i]);
291 detectorValues->origQuotaMeanStrongestFilt += fMult(detectorValues->origQuotaMeanStrongest[i], filter[i]);
292 detectorValues->sbrQuotaMeanStrongestFilt += fMult(detectorValues->sbrQuotaMeanStrongest[i], filter[i]);
342 DETECTOR_VALUES *detectorValues, /*!< Struct with the detector values. */
371 origQuotaMeanFilt = (fMultDiv2(FL2FXCONST_DBL(2.f*0.375f), (FIXP_DBL)(CalcLdData(max(detectorValues->origQuotaMeanFilt,(FIXP_DBL)1)) + FL2FXCONST_DBL(0.31143075889f)))) << 0; /* scaled by 1/2^9 */
372 sbrQuotaMeanFilt = (fMultDiv2(FL2FXCONST_DBL(2.f*0.375f), (FIXP_DBL)(CalcLdData(max(detectorValues->sbrQuotaMeanFilt,(FIXP_DBL)1)) + FL2FXCONST_DBL(0.31143075889f)))) << 0; /* scaled by 1/2^9 */
374 nrg = (fMultDiv2(FL2FXCONST_DBL(2.f*0.375f), (FIXP_DBL)(CalcLdData(detectorValues->avgNrg+(FIXP_DBL)1) + FL2FXCONST_DBL(0.0625f) + FL2FXCONST_DBL(0.6875f)))) << 0; /* scaled by 1/2^8; 2^44 -> qmf energy scale */
443 &hInvFilt->detectorValues[band],
451 &hInvFilt->detectorValues[band],
489 FDKmemclear(&hInvFilt->detectorValues[i], sizeof(DETECTOR_VALUES));