Module: libav Branch: master Commit: db03cb37fd9650b4a7c752d24a2e84ff27508ee8
Author: John Stebbins <[email protected]> Committer: Martin Storsjö <[email protected]> Date: Mon Aug 19 16:05:29 2013 -0700 movenc: Allow chapter track in default MODE_MP4 Signed-off-by: Martin Storsjö <[email protected]> --- libavformat/movenc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index b83b0c0..3338f46 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -3059,7 +3059,7 @@ static int mov_write_header(AVFormatContext *s) } mov->nb_streams = s->nb_streams; - if (mov->mode & (MODE_MOV|MODE_IPOD) && s->nb_chapters) + if (mov->mode & (MODE_MP4|MODE_MOV|MODE_IPOD) && s->nb_chapters) mov->chapter_track = mov->nb_streams++; if (mov->flags & FF_MOV_FLAG_RTP_HINT) { _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
