Commit 0b9535b9 authored by Ronald S. Bultje's avatar Ronald S. Bultje

Remove dead initialization.

Originally committed as revision 22780 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 636da41a
......@@ -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) {
......
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