Home | History | Annotate | Download | only in src

Lines Matching refs:est

306   INT est;
311 for (est=0; est < noEstPerFrame; est++) {
313 diff(pQuotaBuffer[est+move],
314 tonalityDiff[est+move],
319 calculateFlatnessMeasure(pQuotaBuffer[est+ move],
321 pSfmOrig[est + move],
322 pSfmSbr[est + move],
351 INT i,est;
433 for(est = start; est < stop ; est++){
434 pDetectionVectors[est][i] = 0;
541 INT i,j,li, ui,est;
543 for(est=start; est < stop; est++) {
545 pAddHarmSfb[i] = pAddHarmSfb[i] || detectionVectors[est][i];
570 for(est = start; est < stop; est++){
572 if(quotaBuffer[est][j] > maxVal1){
573 maxVal1 = quotaBuffer[est][j];
575 maxPosTime1 = est;
587 for(est = start; est < stop; est++){
589 if(quotaBuffer[est][j] > maxVal2){
590 maxVal2 = quotaBuffer[est][j];
592 maxPosTime2 = est;
604 for(est=start; est<stop; est++){
605 detectionVectors[est][i+1] = 0;
612 for(est=start; est<stop; est++){
613 detectionVectors[est][i] = 0;
623 for(est=start; est<stop; est++){
624 detectionVectors[est][i+1] = 0;
632 for(est=start; est<stop; est++){
633 detectionVectors[est][i] = 0;
809 INT est = 0,i;
834 for(est = start; est < totNoEst; est++){
840 if(est > 0){
841 FDKmemcpy(guideVectors[est].guideVectorDetected,detectionVectors[est-1],nSfb*sizeof(UCHAR));
844 FDKmemclear(detectionVectors[est], nSfb*sizeof(UCHAR));
846 if(est < totNoEst-1){
847 FDKmemclear(guideVectors[est+1].guideVectorDiff,nSfb*sizeof(FIXP_DBL));
848 FDKmemclear(guideVectors[est+1].guideVectorOrig,nSfb*sizeof(FIXP_DBL));
849 FDKmemclear(guideVectors[est+1].guideVectorDetected,nSfb*sizeof(UCHAR));
851 detection(quotaBuffer[est],
852 pDiffVecScfb[est],
854 detectionVectors[est],
856 sfmOrig[est],
857 sfmSbr[est],
858 guideVectors[est],
859 guideVectors[est+1],
863 FDKmemclear(guideVectors[est].guideVectorDiff,nSfb*sizeof(FIXP_DBL));
864 FDKmemclear(guideVectors[est].guideVectorOrig,nSfb*sizeof(FIXP_DBL));
865 FDKmemclear(guideVectors[est].guideVectorDetected,nSfb*sizeof(UCHAR));
867 detection(quotaBuffer[est],
868 pDiffVecScfb[est],
870 detectionVectors[est],
872 sfmOrig[est],
873 sfmSbr[est],
874 guideVectors[est],
875 guideVectors[est],
916 for(est=start; est < totNoEst; est++){
917 if(guideVectors[est].guideVectorDiff[i] != FL2FXCONST_DBL(0.0f)){
918 est].guideVectorDiff[i];
920 if(guideVectors[est].guideVectorOrig[i] != FL2FXCONST_DBL(0.0f)){
921 guideVectors[0].guideVectorOrig[i] = guideVectors[est].guideVectorOrig[i];
958 INT scfBand,est,l,ll,lu,maxPosF,maxPosT;
975 for(est=0;est<totNoEst;est++){
977 if(pTonalityMatrix[est][l] > maxVal){
978 maxVal = pTonalityMatrix[est][l];
980 maxPosT = est;
1085 int est;
1097 for (est=0; est < MAX_NO_OF_ESTIMATES/2; est++) {
1098 sfmSbr[est] = h_sbrMHDet->sfmSbr[est];
1099 sfmOrig[est] = h_sbrMHDet->sfmOrig[est];
1100 tonalityDiff[est] = h_sbrMHDet->tonalityDiff[est];
1105 for (; est < MAX_NO_OF_ESTIMATES; est++) {
1106 sfmSbr[est] = scratch; scratch+=MAX_FREQ_COEFFS;
1107 sfmOrig[est] = scratch; scratch+=MAX_FREQ_COEFFS;
1108 tonalityDiff[est] = scratch; scratch+=MAX_FREQ_COEFFS;
1172 for (est=0; est < move; est++) {
1173 FDKmemcpy(tonalityDiff[est], tonalityDiff[est + noEstPerFrame], sizeof(FIXP_DBL)*MAX_FREQ_COEFFS);
1174 FDKmemcpy(sfmOrig[est], sfmOrig[est + noEstPerFrame], sizeof(FIXP_DBL)*MAX_FREQ_COEFFS);
1175 FDKmemcpy(sfmSbr[est], sfmSbr[est + noEstPerFrame], sizeof(FIXP_DBL)*MAX_FREQ_COEFFS);