diff options
author | jstebbins <[email protected]> | 2014-08-06 17:11:41 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-08-06 17:11:41 +0000 |
commit | fe74dd49d88433cf619aadbf0834bafc670356fd (patch) | |
tree | bbf659236022229fd03615d0c1bcb88a65e1d26a /libhb/muxavformat.c | |
parent | 8d93fa6d55e1c1fda021d37a816dd9747194c32c (diff) |
libhb: fix mp4 post tagging problems
A couple common mp4 taggers (mp3Tag and iTunes) fail to tag files
that have the Nero chapter atom (chpl). This atom was added when
we switched to libavformat for muxing. I haven't found any players
yet that rely on this for chapters. If we ever find any, we can
consider adding an option somewhere to enable chpl.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6269 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 9037dc074..a31aab321 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -158,6 +158,7 @@ static int avformatInit( hb_mux_object_t * m ) av_dict_set(&av_opts, "brand", "mp42", 0); if (job->mp4_optimize) av_dict_set( &av_opts, "movflags", "faststart", 0 ); + av_dict_set( &av_opts, "movflags", "disable_chpl", 0 ); break; case HB_MUX_AV_MKV: |