Mercurial > libavcodec.hg
changeset 4033:f7a6b2bb3a2f libavcodec
Expand some #endif comments.
author | diego |
---|---|
date | Mon, 16 Oct 2006 21:22:47 +0000 |
parents | 0f2bb0baf6f0 |
children | fbe263601152 |
files | cabac.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/cabac.h Mon Oct 16 19:06:56 2006 +0000 +++ b/cabac.h Mon Oct 16 21:22:47 2006 +0000 @@ -522,7 +522,7 @@ ); bit&=1; #endif /* BRANCHLESS_CABAC_DECODER */ -#else /* ARCH_X86 */ +#else /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */ int s = *state; int RangeLPS= ff_h264_lps_range[0][2*(c->range&0xC0) + s]; int bit, lps_mask attribute_unused; @@ -561,7 +561,7 @@ if(!(c->low & CABAC_MASK)) refill2(c); #endif /* BRANCHLESS_CABAC_DECODER */ -#endif /* ARCH_X86 */ +#endif /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */ return bit; }