mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-30 21:08:59 +08:00
Expand some #endif comments.
Originally committed as revision 6714 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -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
|
|||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user