dashenc: Simplify code by using a local variable

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Timo Rothenpieler 2015-03-04 22:48:43 +01:00 committed by Martin Storsjö
parent 25c29d3283
commit 6cf7f30655
1 changed files with 1 additions and 1 deletions

View File

@ -645,7 +645,7 @@ static int dash_write_header(AVFormatContext *s)
else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
c->has_audio = 1;
set_codec_str(s, os->ctx->streams[0]->codec, os->codec_str, sizeof(os->codec_str));
set_codec_str(s, st->codec, os->codec_str, sizeof(os->codec_str));
os->first_pts = AV_NOPTS_VALUE;
os->max_pts = AV_NOPTS_VALUE;
os->segment_index = 1;