diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2013-07-01 12:06:22 -0700 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-07-04 16:06:10 +0200 |
commit | d222f6e39e263c3455b9e1108cccda035889622d (patch) | |
tree | 8f60be0d4dfbd3c4895cdf2d5b7174ebc440034e /libavcodec/cabac_functions.h | |
parent | 410066986f443112ed88f501e987b6ca51ed7bd4 (diff) | |
download | ffmpeg-d222f6e39e263c3455b9e1108cccda035889622d.tar.gz |
cabac: x86 version of get_cabac_bypass
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/cabac_functions.h')
-rw-r--r-- | libavcodec/cabac_functions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/cabac_functions.h b/libavcodec/cabac_functions.h index 484ba85db6..afc7c98358 100644 --- a/libavcodec/cabac_functions.h +++ b/libavcodec/cabac_functions.h @@ -113,6 +113,7 @@ static int av_unused get_cabac(CABACContext *c, uint8_t * const state){ return get_cabac_inline(c,state); } +#ifndef get_cabac_bypass static int av_unused get_cabac_bypass(CABACContext *c){ int range; c->low += c->low; @@ -128,7 +129,7 @@ static int av_unused get_cabac_bypass(CABACContext *c){ return 1; } } - +#endif #ifndef get_cabac_bypass_sign static av_always_inline int get_cabac_bypass_sign(CABACContext *c, int val){ |