HomeSort by relevance Sort by last modified time
    Searched full:totalcoeff (Results 1 - 11 of 11) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 49 TotalCoeff RN 5
66 TotalCoeff RN 5
83 TotalCoeff RN 5
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
124 MOVS TotalCoeff, Symbol, LSR #2
125 STRB TotalCoeff, [pNumCoeff]
126 M_PRINTF "TotalCoeff=%d\n", TotalCoeff
154 SUBS Count, TotalCoeff, TrailingOnes ;// Number of levels to read
158 CMP TotalCoeff, #1
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 49 TotalCoeff RN 5
66 TotalCoeff RN 5
83 TotalCoeff RN 5
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
124 MOVS TotalCoeff, Symbol, LSR #2
125 STRB TotalCoeff, [pNumCoeff]
126 M_PRINTF "TotalCoeff=%d\n", TotalCoeff
154 SUBS Count, TotalCoeff, TrailingOnes ;// Number of levels to read
158 CMP TotalCoeff, #1
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 71 int CoeffToken, TotalCoeff, TrailingOnes;
83 TotalCoeff = armVCM4P10_CAVLCTotalCoeff[CoeffToken];
84 *pNumCoeff = (OMX_U8)TotalCoeff;
86 DEBUG_PRINTF_2("TotalCoeff = %d, TrailingOnes = %d\n", TotalCoeff, TrailingOnes);
88 if (TotalCoeff == 0)
95 for (i=TotalCoeff-1; i>=TotalCoeff-TrailingOnes; i--)
112 if (TotalCoeff>10 && TrailingOnes<3)
147 if (i==TotalCoeff-1-TrailingOnes && TrailingOnes<3
    [all...]
armVCM4P10_CAVLCTables.c 25 /* Tables mapping a code to TrailingOnes and TotalCoeff */
  /frameworks/av/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...]
vlc_encode.cpp 125 AVCEnc_Status ce_TotalCoeffTrailingOnes(AVCEncBitstream *stream, int TrailingOnes, int TotalCoeff, int nC)
161 if (TotalCoeff)
163 code = ((TotalCoeff - 1) << 2) | (TrailingOnes);
186 len = totCoeffTrailOne[vlcnum][TrailingOnes][TotalCoeff][0];
187 code = totCoeffTrailOne[vlcnum][TrailingOnes][TotalCoeff][1];
194 AVCEnc_Status ce_TotalCoeffTrailingOnesChromaDC(AVCEncBitstream *stream, int TrailingOnes, int TotalCoeff)
207 len = totCoeffTrailOneChrom[TrailingOnes][TotalCoeff][0];
208 code = totCoeffTrailOneChrom[TrailingOnes][TotalCoeff][1];
215 AVCEnc_Status ce_TotalZeros(AVCEncBitstream *stream, int total_zeros, int TotalCoeff)
257 len = lenTotalZeros[TotalCoeff-1][total_zeros]
    [all...]
avcenc_lib.h     [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 336 tmp1 = mb1->totalCoeff[ind1];
337 tmp2 = mb1->totalCoeff[ind2];
363 InnerBoundaryStrength but without checking totalCoeff.
398 if (mb1->totalCoeff[ind1] || mb2->totalCoeff[ind2])
429 tmp1 = mb1->totalCoeff[0];
430 tmp2 = mb2->totalCoeff[10];
431 tmp3 = mb1->totalCoeff[1];
432 tmp4 = mb2->totalCoeff[11];
443 tmp1 = mb1->totalCoeff[4]
    [all...]
h264bsd_macroblock_layer.c 533 nc = (OMX_INT)DetermineNc(pMb, 0, pResidual->totalCoeff);
538 &pResidual->totalCoeff[24],
546 &pResidual->totalCoeff[24],
567 nc = (OMX_INT)DetermineNc(pMb,blockIndex,pResidual->totalCoeff);
574 &pResidual->totalCoeff[blockIndex],
582 &pResidual->totalCoeff[blockIndex],
594 &pResidual->totalCoeff[blockIndex],
602 &pResidual->totalCoeff[blockIndex],
624 &pResidual->totalCoeff[25],
630 &pResidual->totalCoeff[25]
    [all...]
h264bsd_macroblock_layer.h 143 u8 totalCoeff[27];
145 i16 totalCoeff[27];
171 u8 totalCoeff[27];
173 i16 totalCoeff[27];
h264bsd_cavlc.c 375 static u32 DecodeTotalZeros(u32 bits, u32 totalCoeff, u32 isChromaDC);
529 u32 totalCoeff total number of coefficients for the block
538 u32 DecodeTotalZeros(u32 bits, u32 totalCoeff, u32 isChromaDC)
547 ASSERT(totalCoeff);
551 ASSERT(totalCoeff < 16);
552 switch (totalCoeff)
619 ASSERT(totalCoeff < 4);
625 if (totalCoeff == 3)
631 else if (totalCoeff == 2)
757 u32 i, tmp, totalCoeff, trailingOnes, suffixLength, levelPrefix
    [all...]

Completed in 158 milliseconds