From d2975f8d4ff826b1f0477b48782927e5439896f8 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 15 Oct 2002 15:24:08 +0000 Subject: [PATCH] warning fixes Originally committed as revision 1044 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.c | 2 +- libavcodec/h263.c | 27 ++++++++++++++++++--------- libavcodec/mpeg12.c | 2 +- 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 182433033d..75441f1348 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -1512,7 +1512,7 @@ void clear_blocks_c(DCTELEM *blocks) void dsputil_init(void) { - int i, j; + int i; for(i=0;i<256;i++) cropTbl[i + MAX_NEG_CROP] = i; for(i=0;iscalability) { GetBitContext bak= *gb; - int dummy= s->hierachy_type= get_bits1(gb); - int ref_layer_id= get_bits(gb, 4); - int ref_layer_sampling_dir= get_bits1(gb); - int h_sampling_factor_n= get_bits(gb, 5); - int h_sampling_factor_m= get_bits(gb, 5); - int v_sampling_factor_n= get_bits(gb, 5); - int v_sampling_factor_m= get_bits(gb, 5); + int ref_layer_id; + int ref_layer_sampling_dir; + int h_sampling_factor_n; + int h_sampling_factor_m; + int v_sampling_factor_n; + int v_sampling_factor_m; + + s->hierachy_type= get_bits1(gb); + ref_layer_id= get_bits(gb, 4); + ref_layer_sampling_dir= get_bits1(gb); + h_sampling_factor_n= get_bits(gb, 5); + h_sampling_factor_m= get_bits(gb, 5); + v_sampling_factor_n= get_bits(gb, 5); + v_sampling_factor_m= get_bits(gb, 5); s->enhancement_type= get_bits1(gb); if( h_sampling_factor_n==0 || h_sampling_factor_m==0 diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index cc81d898bf..84c424915e 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -698,7 +698,7 @@ static inline int get_qscale(MpegEncContext *s) static int mpeg_decode_mb(MpegEncContext *s, DCTELEM block[6][64]) { - int i, j, k, cbp, val, code, mb_type, motion_type; + int i, j, k, cbp, val, mb_type, motion_type; dprintf("decode_mb: x=%d y=%d\n", s->mb_x, s->mb_y);