1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

Remove unused variable.

Originally committed as revision 8769 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2007-04-21 15:55:45 +00:00
parent 4a7a090834
commit 7f3f0dc221

View File

@ -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;