Commit d2c552ba authored by diego's avatar diego

Expand some #endif comments.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6714 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4e5b0dca
...@@ -522,7 +522,7 @@ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state ...@@ -522,7 +522,7 @@ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state
); );
bit&=1; bit&=1;
#endif /* BRANCHLESS_CABAC_DECODER */ #endif /* BRANCHLESS_CABAC_DECODER */
#else /* ARCH_X86 */ #else /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */
int s = *state; int s = *state;
int RangeLPS= ff_h264_lps_range[0][2*(c->range&0xC0) + s]; int RangeLPS= ff_h264_lps_range[0][2*(c->range&0xC0) + s];
int bit, lps_mask attribute_unused; int bit, lps_mask attribute_unused;
...@@ -561,7 +561,7 @@ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state ...@@ -561,7 +561,7 @@ static int always_inline get_cabac_inline(CABACContext *c, uint8_t * const state
if(!(c->low & CABAC_MASK)) if(!(c->low & CABAC_MASK))
refill2(c); refill2(c);
#endif /* BRANCHLESS_CABAC_DECODER */ #endif /* BRANCHLESS_CABAC_DECODER */
#endif /* ARCH_X86 */ #endif /* defined(ARCH_X86) && !(defined(PIC) && defined(__GNUC__)) */
return bit; return bit;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment