diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-11-27 10:56:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-11-27 10:56:10 +0000 |
commit | c61b9d4473c4023415ddc35b4562bfc8dc1e6b0c (patch) | |
tree | e7ac783b095cb788d92a5908d3f73b303a353aed /libavcodec | |
parent | 49cef7443a37a91827f0b8d8f7494f1fec563a1b (diff) | |
download | ffmpeg-c61b9d4473c4023415ddc35b4562bfc8dc1e6b0c.tar.gz |
PIC fix
Originally committed as revision 7173 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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 5956f5c019..43fe78e3bb 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -632,7 +632,7 @@ static int get_cabac_bypass(CABACContext *c){ static always_inline int get_cabac_bypass_sign(CABACContext *c, int val){ -#ifdef ARCH_X86 +#if defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) asm volatile( "movl "RANGE "(%1), %%ebx \n\t" "movl "LOW "(%1), %%eax \n\t" |