Home | History | Annotate | Download | only in decoder

Lines Matching refs:DecodedValue

187      * DecodedValue has the Run, Level and the number of bits used by Vld code
259 * DecodedValue has the Run, Level and the number of bits used by Vld code
636 WORD16 DecodedValue;
650 DecodedValue = gau2_impeg2d_tab_one_1_9[u4_bits >> 8];
651 u4_sym_len = (DecodedValue & 0xf);
652 u4_level = DecodedValue >> 9;
656 u4_run = ((DecodedValue >> 4) & 0x1f);
672 if (DecodedValue == END_OF_BLOCK_ONE)
702 DecodedValue = gau2_impeg2d_tab_one_10_16[u4_bits];
704 u4_run = BITS(DecodedValue, 8,4);
705 u4_level = ((WORD16) DecodedValue) >> 9;
827 UWORD16 DecodedValue;
841 DecodedValue = gau2_impeg2d_tab_zero_1_9[u4_bits >> 8];
842 u4_sym_len = BITS(DecodedValue, 3, 0);
843 u4_level = ((WORD16) DecodedValue) >> 9;
847 u4_run = BITS(DecodedValue, 8,4);
864 if(DecodedValue == END_OF_BLOCK_ZERO)
884 DecodedValue = gau2_impeg2d_tab_zero_10_16[u4_bits];
886 u4_run = BITS(DecodedValue, 8,4);
887 u4_level = ((WORD16) DecodedValue) >> 9;