Module: libav Branch: master Commit: 8e2763786dd0ba0e895eafd6959a768608513eb6
Author: Martin Storsjö <[email protected]> Committer: Martin Storsjö <[email protected]> Date: Sat Oct 6 02:30:18 2012 +0300 smoothstreamingenc: Try writing a manifest when opening the muxer This allows failing cleaner and earlier if unable to write to the output directory. Signed-off-by: Martin Storsjö <[email protected]> --- libavformat/smoothstreamingenc.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c index cc34f7e..bafed70 100644 --- a/libavformat/smoothstreamingenc.c +++ b/libavformat/smoothstreamingenc.c @@ -386,6 +386,7 @@ static int ism_write_header(AVFormatContext *s) av_log(s, AV_LOG_WARNING, "no video stream and no min frag duration set\n"); ret = AVERROR(EINVAL); } + ret = write_manifest(s, 0); fail: if (ret) _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
