Remove unused variable, fixes the warning:

libavformat/rmdec.c:280: warning: unused variable 'i'

Originally committed as revision 13909 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-06-23 08:52:44 +00:00
parent ace21da3cf
commit 07cb073bf9
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap)
AVStream *st;
ByteIOContext *pb = s->pb;
unsigned int tag;
int tag_size, i;
int tag_size;
unsigned int start_time, duration;
char buf[128];
int flags = 0;