Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2005-12-12 04:42:06 +0300
committerMåns Rullgård <mans@mansr.com>2005-12-12 04:42:06 +0300
commit7e491fa5f955fc1c684cdfa5891ceadc9369d55a (patch)
tree93e4c5bd73f69bfb2d2443a8d8cc6e573943000b /libavcodec/alpha
parent8d1018bfec6c27ed90a3746afb4506c82cfb4df5 (diff)
remove unused variables
Originally committed as revision 4738 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alpha')
-rw-r--r--libavcodec/alpha/mpegvideo_alpha.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/alpha/mpegvideo_alpha.c b/libavcodec/alpha/mpegvideo_alpha.c
index f64fb7472a..2f05e3eb06 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;