[FFmpeg-cvslog] dashenc: Simplify code by using a local variable
Timo Rothenpieler
git at videolan.org
Fri Mar 6 12:13:32 CET 2015
ffmpeg | branch: master | Timo Rothenpieler <timo at rothenpieler.org> | Wed Mar 4 22:48:43 2015 +0100| [6cf7f30655e95e27fd0394b5a80970d6f9517015] | committer: Martin Storsjö
dashenc: Simplify code by using a local variable
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6cf7f30655e95e27fd0394b5a80970d6f9517015
---
libavformat/dashenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 197af19..6b385ae 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list