From: Måns Rullgård Date: Mon, 12 Dec 2005 01:42:06 +0000 (+0000) Subject: remove unused variables X-Git-Tag: v0.5~13419 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e491fa5f955fc1c684cdfa5891ceadc9369d55a;p=platform%2Fupstream%2Flibav.git remove unused variables Originally committed as revision 4738 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/alpha/mpegvideo_alpha.c b/libavcodec/alpha/mpegvideo_alpha.c index f64fb7472..2f05e3eb0 100644 --- a/libavcodec/alpha/mpegvideo_alpha.c +++ b/libavcodec/alpha/mpegvideo_alpha.c @@ -28,7 +28,7 @@ static void dct_unquantize_h263_intra_axp(MpegEncContext *s, DCTELEM *block, uint64_t qmul, qadd; uint64_t correction; DCTELEM *orig_block = block; - DCTELEM block0; + DCTELEM block0; /* might not be used uninitialized */ qadd = WORD_VEC((qscale - 1) | 1); qmul = qscale << 1; @@ -92,8 +92,6 @@ static void dct_unquantize_h263_inter_axp(MpegEncContext *s, DCTELEM *block, int i, n_coeffs; uint64_t qmul, qadd; uint64_t correction; - DCTELEM *orig_block = block; - DCTELEM block0; qadd = WORD_VEC((qscale - 1) | 1); qmul = qscale << 1;