Tweak position of existing translator in the list.
[dcpomatic.git] / src / lib / ffmpeg_encoder.cc
index d4f0b4b472612bb7ee449bd7b51bad00d81fd9f6..6b31c4201901bf5004b7a1efc9a848615799c5fd 100644 (file)
@@ -48,7 +48,6 @@ using namespace boost::placeholders;
 #endif
 
 
-/** @param key Key to use to encrypt MP4 outputs */
 FFmpegEncoder::FFmpegEncoder (
        shared_ptr<const Film> film,
        weak_ptr<Job> job,
@@ -108,7 +107,16 @@ FFmpegEncoder::FFmpegEncoder (
        }
 
        _butler = std::make_shared<Butler>(
-               _film, _player, map, _output_audio_channels, bind(&PlayerVideo::force, FFmpegFileEncoder::pixel_format(format)), VideoRange::VIDEO, Image::Alignment::PADDED, false, false
+               _film,
+               _player,
+               map,
+               _output_audio_channels,
+               bind(&PlayerVideo::force, FFmpegFileEncoder::pixel_format(format)),
+               VideoRange::VIDEO,
+               Image::Alignment::PADDED,
+               false,
+               false,
+               Butler::Audio::ENABLED
                );
 }