diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-06 23:18:31 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-06 23:18:31 +0000 |
| commit | f5eaedfacab25ca5cc1222962a1225e6ac20feb8 (patch) | |
| tree | 3234ec219d83b6e2242ce9e0302c8fb84a725087 /src | |
| parent | 21bbca806f60ae6ecc70ee4d2f51830403c68b33 (diff) | |
A bit more logging.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.cc | 2 | ||||
| -rw-r--r-- | src/lib/film.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 1abf8e91f..7daf825af 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -245,6 +245,8 @@ Film::make_dcp (bool transcode) char buffer[128]; gethostname (buffer, sizeof (buffer)); log()->log (String::compose ("Starting to make DCP on %1", buffer)); + log()->log (String::compose ("Content is %1; type %2", content_path(), (content_type() == STILL ? "still" : "video"))); + log()->log (String::compose ("Content length %1", length())); } if (format() == 0) { diff --git a/src/lib/film.h b/src/lib/film.h index b8a824233..eb199784e 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -458,7 +458,7 @@ private: /** Size, in pixels, of the source (ignoring cropping) */ Size _size; - /** Actual length of the source (in video frames) from examining it */ + /** The length of the source, in video frames (as far as we know) */ boost::optional<SourceFrame> _length; /** MD5 digest of our content file */ std::string _content_digest; |
