Browse Source

1 cpu cycle faster suffix_length calculation.

Originally committed as revision 21425 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 15 years ago
parent
commit
8ba436171f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264_cavlc.c

+ 1
- 1
libavcodec/h264_cavlc.c View File

@@ -408,7 +408,7 @@ static int decode_residual(H264Context *h, GetBitContext *gb, DCTELEM *block, in

if(trailing_ones<total_coeff) {
int mask, prefix;
int suffix_length = total_coeff > 10 && trailing_ones < 3;
int suffix_length = total_coeff > 10 & trailing_ones < 3;
int bitsi= show_bits(gb, LEVEL_TAB_BITS);
int level_code= cavlc_level_tab[suffix_length][bitsi][0];



Loading…
Cancel
Save