diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-03 22:40:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-03 22:40:41 +0200 |
commit | e6dc0da504c80d8dd0ed45f0d0b2c8b730eae54a (patch) | |
tree | 5ac3c88228829fae72d14c6e05cfa21a665f20b5 /libavformat | |
parent | 8cc77646c071e3c21600050b3a88d4a2b44b3185 (diff) | |
download | ffmpeg-e6dc0da504c80d8dd0ed45f0d0b2c8b730eae54a.tar.gz |
rmdec: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 84ebd55698..3cbf3f590f 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -322,7 +322,7 @@ ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVIOContext *pb, st->codec->codec_id = ff_codec_get_id(ff_rm_codec_tags, st->codec->codec_tag); } else if(mime && !strcmp(mime, "logical-fileinfo")){ - int stream_count, rule_count, property_count, i, type; + int stream_count, rule_count, property_count, i; ff_free_stream(s, st); if (avio_rb16(pb) != 0) { av_log(s, AV_LOG_WARNING, "Unsupported version\n"); |