summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-25 15:10:33 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-25 15:10:33 +0000
commit62377fec30e29c1705f96f7fa827435946f2767d (patch)
tree3f023ffe7130ccf15f4463bce5aafcbcc1fbf5be /libavcodec/adpcm.c
parent9ff8976dad1b2768857a6129daf9dac069ac5bee (diff)
remove unused var
Originally committed as revision 12967 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r--libavcodec/adpcm.c2
1 files changed, 1 insertions, 1 deletions
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: