summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-10-16 21:22:47 +0000
committerDiego Biurrun <diego@biurrun.de>2006-10-16 21:22:47 +0000
commite962604f1c9b6038dfbcb0eabbcf071aa90bee77 (patch)
tree102969e8f21cd2ac15495be8e47ac9f4a7b6db04 /libavcodec/cabac.h
parent2c409cc7af4a593a9a96162b6faeb9e814ee3eeb (diff)
Expand some #endif comments.
Originally committed as revision 6714 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r--libavcodec/cabac.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index 27869b154a..55f6bf6b83 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -522,7 +522,7 @@ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state
);
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 @@ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state
if(!(c->low & CABAC_MASK))
refill2(c);
#endif /* BRANCHLESS_CABAC_DECODER */
-#endif /* ARCH_X86 */
+#endif /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */
return bit;
}