summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-04-21 15:55:45 +0000
committerDiego Biurrun <diego@biurrun.de>2007-04-21 15:55:45 +0000
commit7f3f0dc2213c9022dd75285f4151f30f968410a6 (patch)
tree2135bc08f7cc280e6e56cd2f962888912be31b07
parent4a7a090834591d2ff090ce487038efa6b83af43e (diff)
Remove unused variable.
Originally committed as revision 8769 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/vc1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index 23a3d91df6..090b4f606d 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -4370,7 +4370,7 @@ static int vc1_decode_frame(AVCodecContext *avctx,
buf2 = av_mallocz(buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
if(IS_MARKER(AV_RB32(buf))){ /* frame starts with marker and needs to be parsed */
- uint8_t *dst = buf2, *start, *end, *next;
+ uint8_t *start, *end, *next;
int size;
next = buf;