From 75c998a21916f990cff5eaca59c4dc9d592a273f Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Mon, 28 Aug 2006 18:46:01 +0000 Subject: force usage of ALT_BITSTREAM_READER where needed Originally committed as revision 6118 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dv.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libavcodec/dv.c') diff --git a/libavcodec/dv.c b/libavcodec/dv.c index c39d70c542..90d101813b 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -31,6 +31,7 @@ * @file dv.c * DV codec. */ +#define ALT_BITSTREAM_READER #include "avcodec.h" #include "dsputil.h" #include "mpegvideo.h" @@ -270,11 +271,6 @@ static const int vs_total_ac_bits = (100 * 4 + 68*2) * 5; /* see dv_88_areas and dv_248_areas for details */ static const int mb_area_start[5] = { 1, 6, 21, 43, 64 }; -#ifndef ALT_BITSTREAM_READER -#warning only works with ALT_BITSTREAM_READER -static int re_index; //Hack to make it compile -#endif - static inline int get_bits_left(GetBitContext *s) { return s->size_in_bits - get_bits_count(s); -- cgit v1.2.3