HomeSort by relevance Sort by last modified time
    Searched defs:TotalCoeff (Results 1 - 2 of 2) sorted by null

  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
residual.cpp 156 int TotalCoeff;
167 TotalCoeff = currMB->nz_coeff[bindx];
173 TotalCoeff = cindx; /* special case */
181 TotalCoeff = currMB->nz_coeff[bindx];
190 TotalCoeff = cindx - 8; /* special case */
196 TotalCoeff = cindx; /* special case */
207 TotalCoeff = currMB->nz_coeff[bindx];
217 i = TotalCoeff - 1;
248 status = ce_TotalCoeffTrailingOnes(stream, TrailingOnes, TotalCoeff, nC);
253 status = ce_TotalCoeffTrailingOnesChromaDC(stream, TrailingOnes, TotalCoeff);
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
residual.cpp 356 int TrailingOnes, TotalCoeff;
366 ce_TotalCoeffTrailingOnes(stream, &TrailingOnes, &TotalCoeff, nC);
370 ce_TotalCoeffTrailingOnesChromaDC(stream, &TrailingOnes, &TotalCoeff);
373 *numcoeff = TotalCoeff;
376 if (TotalCoeff == 0)
394 if (TotalCoeff > TrailingOnes)
397 if (TotalCoeff < 11 || TrailingOnes == 3)
452 for (j = TotalCoeff - i; j > 0 ; j--)
479 if (TotalCoeff < maxNumCoeff)
483 ce_TotalZeros(stream, &zerosLeft, TotalCoeff);
    [all...]

Completed in 2226 milliseconds