summaryrefslogtreecommitdiff
path: root/src/lib/sndfile_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-23 16:51:07 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-23 16:51:07 +0100
commit38fda7888663429d452b9c71902e8bb5239dd720 (patch)
tree93d05ef9dc1e3d04d198452393dd626717f6346c /src/lib/sndfile_content.cc
parent89ea093ab1ed7a526b9332922c674d9eca42d7f2 (diff)
Remove some dcp prefixes; better logging of content on DCP creation.
Diffstat (limited to 'src/lib/sndfile_content.cc')
-rw-r--r--src/lib/sndfile_content.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib/sndfile_content.cc b/src/lib/sndfile_content.cc
index e5491480f..ee55ede91 100644
--- a/src/lib/sndfile_content.cc
+++ b/src/lib/sndfile_content.cc
@@ -59,6 +59,14 @@ SndfileContent::summary () const
}
string
+SndfileContent::technical_summary () const
+{
+ return Content::technical_summary() + " - "
+ + AudioContent::technical_summary ()
+ + "sndfile";
+}
+
+string
SndfileContent::information () const
{
if (_audio_frame_rate == 0) {
@@ -141,7 +149,7 @@ SndfileContent::output_audio_frame_rate () const
shared_ptr<const Film> film = _film.lock ();
assert (film);
- return film->dcp_audio_frame_rate ();
+ return film->audio_frame_rate ();
}
void