summaryrefslogtreecommitdiff
path: root/libavformat/rmdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-03 22:40:41 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-03 22:40:41 +0200
commite6dc0da504c80d8dd0ed45f0d0b2c8b730eae54a (patch)
tree5ac3c88228829fae72d14c6e05cfa21a665f20b5 /libavformat/rmdec.c
parent8cc77646c071e3c21600050b3a88d4a2b44b3185 (diff)
rmdec: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rmdec.c')
-rw-r--r--libavformat/rmdec.c2
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");