summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/film.cc2
-rw-r--r--src/lib/film.h2
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;