[FFmpeg-cvslog] smoothstreamingenc: Copy the SAR on the AVStreams as well
Martin Storsjö
git at videolan.org
Mon Sep 24 14:04:39 CEST 2012
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Sun Sep 23 00:18:23 2012 +0300| [71908f0838126146cbce025dd37787e1b9ca171d] | committer: Martin Storsjö
smoothstreamingenc: Copy the SAR on the AVStreams as well
This is required in chained muxers, if the SAR happens to be set.
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=71908f0838126146cbce025dd37787e1b9ca171d
---
libavformat/smoothstreamingenc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c
index 08e6526..339a9bb 100644
--- a/libavformat/smoothstreamingenc.c
+++ b/libavformat/smoothstreamingenc.c
@@ -239,6 +239,7 @@ static int ism_write_header(AVFormatContext *s)
goto fail;
}
avcodec_copy_context(st->codec, s->streams[i]->codec);
+ st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), AVIO_FLAG_WRITE, os, NULL, ism_write, ism_seek);
if (!ctx->pb) {
More information about the ffmpeg-cvslog
mailing list