From 0b9535b9a2a8a95c0626866ef792881ca51c0926 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 2 Apr 2010 14:55:01 +0000 Subject: [PATCH] Remove dead initialization. Originally committed as revision 22780 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 268d5dedac..5dfa86128a 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -417,7 +417,7 @@ rdt_parse_sdp_line (AVFormatContext *s, int st_index, } else if (av_strstart(p, "StartTime:integer;", &p)) stream->first_dts = atoi(p); else if (av_strstart(p, "ASMRuleBook:string;", &p)) { - int n = st_index, first = -1; + int n, first = -1; for (n = 0; n < s->nb_streams; n++) if (s->streams[n]->priv_data == stream->priv_data) {