Fix a couple of logging things.
authorCarl Hetherington <cth@carlh.net>
Thu, 25 Jul 2013 09:49:36 +0000 (10:49 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 25 Jul 2013 09:49:36 +0000 (10:49 +0100)
src/lib/ffmpeg_content.cc
src/lib/film.cc

index 24378ed3da0aebb2e64adea52e4ead5fa5f88344..84be76d27ccf7b0a26406e00fc6a034528e6ba0f 100644 (file)
@@ -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
                        );
index 02b7dda6929890aaf5664db1a9f46cf5c716e863..13c1558e96a077b53d87058614dbffc6dd9ecc05 100644 (file)
@@ -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