diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-10-21 22:16:28 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-10-21 22:16:28 +0000 |
commit | c6e2f0831c604c5cf7c2c17e018fb9c7cb620117 (patch) | |
tree | 806323e009db4162f5dfa4d4657ae7aef3a8ad75 | |
parent | fe7e750fb519e6989136ba081d5c37aee8a51298 (diff) | |
download | ffmpeg-c6e2f0831c604c5cf7c2c17e018fb9c7cb620117.tar.gz |
remove unused context var
Originally committed as revision 10828 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/adpcm.c | 1 |
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 */ |