diff options
author | Jindřich Makovička | 2006-10-18 09:37:25 +0000 |
---|---|---|
committer | Guillaume Poirier | 2006-10-18 09:37:25 +0000 |
commit | a0f2c6ba38b2159f5f23edfffa204e11533b0b41 (patch) | |
tree | 9a89359b84be855e17b6a7437165db7466fbc6cf /libavcodec/cabac.c | |
parent | 30865e2aa1f643486e5df4ab0689fb5261c3eba1 (diff) |
Kill a warning with MSVC
Patch by Jindrich Makovicka makovick A gmail P com
Original thread:
Date: 08:21 AM
Subject Re: [Ffmpeg-devel] Weird line in cabac.h
Originally committed as revision 6726 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.c')
-rw-r--r-- | libavcodec/cabac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cabac.c b/libavcodec/cabac.c index 91db6c33ea..c6da6292a2 100644 --- a/libavcodec/cabac.c +++ b/libavcodec/cabac.c @@ -51,7 +51,7 @@ static const uint8_t lps_range[64][4]= { }; uint8_t ff_h264_mlps_state[4*64]; -uint8_t ff_h264_lps_range[4][2*64]; +uint8_t ff_h264_lps_range[4*2*64]; uint8_t ff_h264_lps_state[2*64]; uint8_t ff_h264_mps_state[2*64]; @@ -152,8 +152,8 @@ void ff_init_cabac_states(CABACContext *c){ for(i=0; i<64; i++){ for(j=0; j<4; j++){ //FIXME check if this is worth the 1 shift we save - ff_h264_lps_range[j][2*i+0]= - ff_h264_lps_range[j][2*i+1]= lps_range[i][j]; + ff_h264_lps_range[j*2*64+2*i+0]= + ff_h264_lps_range[j*2*64+2*i+1]= lps_range[i][j]; } ff_h264_mlps_state[128+2*i+0]= |