Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2010-04-02 18:55:01 +0400
committerRonald S. Bultje <rsbultje@gmail.com>2010-04-02 18:55:01 +0400
commit0b9535b9a2a8a95c0626866ef792881ca51c0926 (patch)
treee03f3343a93ee1c3a0af434d18c6b756d5f48a0e /libavformat/rdt.c
parent636da41a2014e8939d23bf5c8ab408f0071c9f78 (diff)
Remove dead initialization.
Originally committed as revision 22780 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r--libavformat/rdt.c2
1 files changed, 1 insertions, 1 deletions
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) {