diff options
-rw-r--r-- | libhb/muxavformat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 284e92718..34e76fd46 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -155,8 +155,9 @@ 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 ); + av_dict_set(&av_opts, "movflags", "faststart+disable_chpl", 0); + else + av_dict_set(&av_opts, "movflags", "+disable_chpl", 0); break; case HB_MUX_AV_MKV: |