summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-10-15 15:24:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-10-15 15:24:08 +0000
commitd2975f8d4ff826b1f0477b48782927e5439896f8 (patch)
treec334274a0228be40d31087381d7ea4246f913321 /libavcodec/mpeg12.c
parentac2830ecd32a301bc6c3eecd44e62b3e734ebcc8 (diff)
warning fixes
Originally committed as revision 1044 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r--libavcodec/mpeg12.c2
1 files changed, 1 insertions, 1 deletions
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);