From c6e2f0831c604c5cf7c2c17e018fb9c7cb620117 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sun, 21 Oct 2007 22:16:28 +0000 Subject: [PATCH] remove unused context var Originally committed as revision 10828 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/adpcm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 84543f3719..b5420a8d2a 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -145,7 +145,6 @@ typedef struct ADPCMChannelStatus { typedef struct ADPCMContext { int channel; /* for stereo MOVs, decode left, then decode right, then tell it's decoded */ ADPCMChannelStatus status[2]; - short sample_buffer[32]; /* hold left samples while waiting for right samples */ } ADPCMContext; /* XXX: implement encoding */