From 58e28fd5c4e24403985f99cea9ee655c6bcebb06 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sat, 7 Jul 2007 23:03:14 +0000 Subject: simplify ff_copy_bits() when compiled with config-small Originally committed as revision 9526 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bitstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/bitstream.c b/libavcodec/bitstream.c index a69e20d42f..2838e9304b 100644 --- a/libavcodec/bitstream.c +++ b/libavcodec/bitstream.c @@ -69,7 +69,7 @@ void ff_copy_bits(PutBitContext *pb, uint8_t *src, int length) if(length==0) return; - if(words < 16 || put_bits_count(pb)&7){ + if(ENABLE_SMALL || words < 16 || put_bits_count(pb)&7){ for(i=0; i