diff options
author | Jindřich Makovička <makovick@gmail.com> | 2006-10-18 09:37:25 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-10-18 09:37:25 +0000 |
commit | a0f2c6ba38b2159f5f23edfffa204e11533b0b41 (patch) | |
tree | 9a89359b84be855e17b6a7437165db7466fbc6cf /libavcodec/cabac.h | |
parent | 30865e2aa1f643486e5df4ab0689fb5261c3eba1 (diff) | |
download | ffmpeg-a0f2c6ba38b2159f5f23edfffa204e11533b0b41.tar.gz |
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.h')
-rw-r--r-- | libavcodec/cabac.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index d50c181010..8059ba65d6 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -33,6 +33,7 @@ #define CABAC_MASK ((1<<CABAC_BITS)-1) #define BRANCHLESS_CABAC_DECODER 1 #define CMOV_IS_FAST 1 +//#define ARCH_X86_DISABLED 1 typedef struct CABACContext{ int low; @@ -48,7 +49,7 @@ typedef struct CABACContext{ }CABACContext; extern uint8_t ff_h264_mlps_state[4*64]; -extern uint8_t ff_h264_lps_range[4][2*64]; ///< rangeTabLPS +extern uint8_t ff_h264_lps_range[4*2*64]; ///< rangeTabLPS extern uint8_t ff_h264_mps_state[2*64]; ///< transIdxMPS extern uint8_t ff_h264_lps_state[2*64]; ///< transIdxLPS extern const uint8_t ff_h264_norm_shift[512]; @@ -524,7 +525,7 @@ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state #endif /* BRANCHLESS_CABAC_DECODER */ #else /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */ int s = *state; - int RangeLPS= ff_h264_lps_range[0][2*(c->range&0xC0) + s]; + int RangeLPS= ff_h264_lps_range[2*(c->range&0xC0) + s]; int bit, lps_mask attribute_unused; c->range -= RangeLPS; |