Various improvements to dcpomatic_kdm.
[dcpomatic.git] / src / lib / ffmpeg_content.cc
index 24378ed3da0aebb2e64adea52e4ead5fa5f88344..de967c04554cb843c08a8cbb09330078d483e1a6 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
                        );
@@ -345,7 +346,7 @@ FFmpegSubtitleStream::as_xml (xmlpp::Node* root) const
 }
 
 Time
-FFmpegContent::length () const
+FFmpegContent::full_length () const
 {
        shared_ptr<const Film> film = _film.lock ();
        assert (film);