From 1084771ac0f77d6cdcfc6f39e3a61dcb72001c4e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 12 Oct 2007 09:38:34 +0000 Subject: [PATCH] 10l: refill2() is not unused, it is used conditionally. Fix the preprocessor directives to enable refill2() only when the conditions under which it is used apply. Originally committed as revision 10715 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cabac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index f4feb493d7..1a1d113ba1 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -272,7 +272,7 @@ static void refill(CABACContext *c){ c->bytestream+= CABAC_BITS/8; } -#if 0 +#if ! ( defined(ARCH_X86) && defined(HAVE_7REGS) && defined(HAVE_EBX_AVAILABLE) && !defined(BROKEN_RELOCATIONS) ) static void refill2(CABACContext *c){ int i, x;