diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-28 13:12:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-28 13:12:28 +0100 |
| commit | 1151383f93f1322409d533da203c6d517268b3ed (patch) | |
| tree | 3d7b40a61cc35cca886f7f0bb935b81b562ea1ee /src/lib | |
| parent | 0efe8420071f0184d668bc363a1096b8ffc33b2d (diff) | |
Log state of use_content_audio when starting a DCP transcode.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/film.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 6bc503dc1..ab0e6218e 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -318,6 +318,11 @@ Film::make_dcp () log()->log (String::compose ("Content at %1 fps, DCP at %2 fps", source_frame_rate(), dcp_frame_rate())); log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads())); log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth())); + if (use_content_audio()) { + log()->log ("Using content's audio"); + } else { + log()->log (String::compose ("Using external audio (%1 files)", external_audio().size())); + } #ifdef DVDOMATIC_DEBUG log()->log ("DVD-o-matic built in debug mode."); #else |
