From 62377fec30e29c1705f96f7fa827435946f2767d Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 25 Apr 2008 15:10:33 +0000 Subject: [PATCH] remove unused var Originally committed as revision 12967 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/adpcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index f17fa62ad3..7db776d547 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -667,7 +667,7 @@ static int adpcm_encode_frame(AVCodecContext *avctx, static av_cold int adpcm_decode_init(AVCodecContext * avctx) { ADPCMContext *c = avctx->priv_data; - unsigned int max_channels = 2, channel; + unsigned int max_channels = 2; switch(avctx->codec->id) { case CODEC_ID_ADPCM_EA_R1: