summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-10-21 22:16:28 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-10-21 22:16:28 +0000
commitc6e2f0831c604c5cf7c2c17e018fb9c7cb620117 (patch)
tree806323e009db4162f5dfa4d4657ae7aef3a8ad75 /libavcodec
parentfe7e750fb519e6989136ba081d5c37aee8a51298 (diff)
remove unused context var
Originally committed as revision 10828 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/adpcm.c1
1 files changed, 0 insertions, 1 deletions
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 */