diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-10-15 21:04:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-10-15 21:04:10 +0000 |
commit | 1d7c1118565d6e8697e17713e203cc1522c38f45 (patch) | |
tree | eb001d7218783986da52500380e00bd196e394c3 /libavcodec/cabac.h | |
parent | faff3a7ad00749ac5df7daec981d448344b10ac3 (diff) | |
download | ffmpeg-1d7c1118565d6e8697e17713e203cc1522c38f45.tar.gz |
10l
Originally committed as revision 6704 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r-- | libavcodec/cabac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index b17667cd5a..836663034e 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -362,7 +362,7 @@ static inline void renorm_cabac_decoder_once(CABACContext *c){ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state){ //FIXME gcc generates duplicate load/stores for c->low and c->range -#if defined(ARCH_X86) && !defined(PIC) +#if defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) int bit; #define LOW "0" |