Commit b04e151f authored by diego's avatar diego

Remove unused variables, fixes the following warnings:

siff.c:187: warning: unused variable 'snddata'
siff.c:186: warning: unused variable 'size2'


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10884 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 59bfb30e
......@@ -183,8 +183,7 @@ static int siff_read_header(AVFormatContext *s, AVFormatParameters *ap)
static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
{
SIFFContext *c = s->priv_data;
int size, size2;
uint8_t *snddata;
int size;
if (c->has_video){
if (c->cur_frame >= c->frames)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment