diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-25 10:49:36 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-25 10:49:36 +0100 |
| commit | 987a92d9906b306fb74ab65b578aa5bb510bea43 (patch) | |
| tree | cb92fc71d7cdef5927653d181438e76d3a64f2bc /src/lib | |
| parent | ec7c27b80a07bffcdb175512fa6d3811c277d959 (diff) | |
Fix a couple of logging things.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 1 | ||||
| -rw-r--r-- | src/lib/film.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index 24378ed3d..84be76d27 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -187,6 +187,7 @@ FFmpegContent::technical_summary () const return Content::technical_summary() + " - " + VideoContent::technical_summary() + " - " + + AudioContent::technical_summary() + " - " + String::compose ( "ffmpeg: audio %1, subtitle %2, filters %3 %4", as, ss, filt.first, filt.second ); diff --git a/src/lib/film.cc b/src/lib/film.cc index 02b7dda69..13c1558e9 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -229,7 +229,7 @@ Film::make_dcp () for (ContentList::const_iterator i = cl.begin(); i != cl.end(); ++i) { log()->log (String::compose ("Content: %1", (*i)->technical_summary())); } - log()->log (String::compose ("DCP video rate %2 fps", video_frame_rate())); + log()->log (String::compose ("DCP video rate %1 fps", video_frame_rate())); log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads())); log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth())); #ifdef DCPOMATIC_DEBUG |
