Lines Matching refs:group
326 INT group = 0; in initSlotBasedRotation() local
346 for (group = 0; group < NO_IID_GROUPS; group++) { in initSlotBasedRotation()
347 bin = bins2groupMap20[group]; in initSlotBasedRotation()
401 h_ps_d->specificTo.mpeg.pCoef->H11r[group] = in initSlotBasedRotation()
402 h_ps_d->specificTo.mpeg.h11rPrev[group]; in initSlotBasedRotation()
403 h_ps_d->specificTo.mpeg.pCoef->H12r[group] = in initSlotBasedRotation()
404 h_ps_d->specificTo.mpeg.h12rPrev[group]; in initSlotBasedRotation()
405 h_ps_d->specificTo.mpeg.pCoef->H21r[group] = in initSlotBasedRotation()
406 h_ps_d->specificTo.mpeg.h21rPrev[group]; in initSlotBasedRotation()
407 h_ps_d->specificTo.mpeg.pCoef->H22r[group] = in initSlotBasedRotation()
408 h_ps_d->specificTo.mpeg.h22rPrev[group]; in initSlotBasedRotation()
410 h_ps_d->specificTo.mpeg.pCoef->DeltaH11r[group] = in initSlotBasedRotation()
411 fMult(h11r - h_ps_d->specificTo.mpeg.pCoef->H11r[group], invL); in initSlotBasedRotation()
412 h_ps_d->specificTo.mpeg.pCoef->DeltaH12r[group] = in initSlotBasedRotation()
413 fMult(h12r - h_ps_d->specificTo.mpeg.pCoef->H12r[group], invL); in initSlotBasedRotation()
414 h_ps_d->specificTo.mpeg.pCoef->DeltaH21r[group] = in initSlotBasedRotation()
415 fMult(h21r - h_ps_d->specificTo.mpeg.pCoef->H21r[group], invL); in initSlotBasedRotation()
416 h_ps_d->specificTo.mpeg.pCoef->DeltaH22r[group] = in initSlotBasedRotation()
417 fMult(h22r - h_ps_d->specificTo.mpeg.pCoef->H22r[group], invL); in initSlotBasedRotation()
421 h_ps_d->specificTo.mpeg.h11rPrev[group] = h11r; in initSlotBasedRotation()
422 h_ps_d->specificTo.mpeg.h12rPrev[group] = h12r; in initSlotBasedRotation()
423 h_ps_d->specificTo.mpeg.h21rPrev[group] = h21r; in initSlotBasedRotation()
424 h_ps_d->specificTo.mpeg.h22rPrev[group] = h22r; in initSlotBasedRotation()
442 INT group; in applySlotBasedRotation() local
509 for (group = 0; group < NO_IID_GROUPS; group++) { in applySlotBasedRotation()
510 pCoef->H11r[group] += pCoef->DeltaH11r[group]; in applySlotBasedRotation()
511 pCoef->H12r[group] += pCoef->DeltaH12r[group]; in applySlotBasedRotation()
512 pCoef->H21r[group] += pCoef->DeltaH21r[group]; in applySlotBasedRotation()
513 pCoef->H22r[group] += pCoef->DeltaH22r[group]; in applySlotBasedRotation()
515 const int start = groupTable[group]; in applySlotBasedRotation()
516 const int stop = groupTable[group + 1]; in applySlotBasedRotation()
519 fMultAdd(fMultDiv2(pCoef->H11r[group], mHybridRealLeft[subband]), in applySlotBasedRotation()
520 pCoef->H21r[group], mHybridRealRight[subband]); in applySlotBasedRotation()
522 fMultAdd(fMultDiv2(pCoef->H12r[group], mHybridRealLeft[subband]), in applySlotBasedRotation()
523 pCoef->H22r[group], mHybridRealRight[subband]); in applySlotBasedRotation()
528 fMultAdd(fMultDiv2(pCoef->H11r[group], mHybridImagLeft[subband]), in applySlotBasedRotation()
529 pCoef->H21r[group], mHybridImagRight[subband]); in applySlotBasedRotation()
531 fMultAdd(fMultDiv2(pCoef->H12r[group], mHybridImagLeft[subband]), in applySlotBasedRotation()
532 pCoef->H22r[group], mHybridImagRight[subband]); in applySlotBasedRotation()