summaryrefslogtreecommitdiff
path: root/src/lib/video_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-28 22:52:13 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-28 22:52:13 +0000
commita112eeb4d052b1212f94e95efd83a215213da691 (patch)
treecc023a901e0cbbd14e79a3ce084691fd9445c03a /src/lib/video_content.cc
parenta76f484d1e5c6c44c8d2e4938340e8559b2ef65a (diff)
Small fixes and tidy-ups spotted by cppcheck.
Diffstat (limited to 'src/lib/video_content.cc')
-rw-r--r--src/lib/video_content.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc
index 5dc9e3d66..823517bfc 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -443,17 +443,6 @@ VideoContent::video_size_after_crop () const
return crop().apply (video_size_after_3d_split ());
}
-/** @param t A time offset from the start of this piece of content.
- * @return Corresponding time with respect to the content.
- */
-ContentTime
-VideoContent::dcp_time_to_content_time (DCPTime t) const
-{
- shared_ptr<const Film> film = _film.lock ();
- DCPOMATIC_ASSERT (film);
- return ContentTime (t, FrameRateChange (video_frame_rate(), film->video_frame_rate()));
-}
-
void
VideoContent::scale_and_crop_to_fit_width ()
{