Commit 25071309 authored by diego's avatar diego

Remove unused variable, fixes the warning:

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13909 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8efbbf8a
...@@ -277,7 +277,7 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -277,7 +277,7 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap)
AVStream *st; AVStream *st;
ByteIOContext *pb = s->pb; ByteIOContext *pb = s->pb;
unsigned int tag; unsigned int tag;
int tag_size, i; int tag_size;
unsigned int start_time, duration; unsigned int start_time, duration;
char buf[128]; char buf[128];
int flags = 0; int flags = 0;
......
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