diff options
author | Martin Storsjö <martin@martin.st> | 2015-03-02 14:10:22 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-03-02 20:34:43 +0200 |
commit | 33d412eb4a2a083c1514ddbe69295b37e1918a8c (patch) | |
tree | 32f21c0886be31d92c45b786d00a26e911a97339 | |
parent | 91eee2af87278b3c2008f7a86d2cdfe6934e9f42 (diff) | |
download | ffmpeg-33d412eb4a2a083c1514ddbe69295b37e1918a8c.tar.gz |
dashenc: Simplify code by using a local variable
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavformat/dashenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 25766155bf..197af19956 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -498,7 +498,7 @@ static int write_manifest(AVFormatContext *s, int final) for (i = 0; i < s->nb_streams; i++) { AVStream *st = s->streams[i]; OutputStream *os = &c->streams[i]; - if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_VIDEO) + if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO) continue; avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"video/mp4\" codecs=\"%s\"%s width=\"%d\" height=\"%d\">\n", i, os->codec_str, os->bandwidth_str, st->codec->width, st->codec->height); output_segment_list(&c->streams[i], out, c); @@ -511,7 +511,7 @@ static int write_manifest(AVFormatContext *s, int final) for (i = 0; i < s->nb_streams; i++) { AVStream *st = s->streams[i]; OutputStream *os = &c->streams[i]; - if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_AUDIO) + if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO) continue; avio_printf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"audio/mp4\" codecs=\"%s\"%s audioSamplingRate=\"%d\">\n", i, os->codec_str, os->bandwidth_str, st->codec->sample_rate); avio_printf(out, "\t\t\t\t<AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"%d\" />\n", st->codec->channels); |