From 4964bbe4efaaf8f8d7076cfcfed841300fd7a66d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 7 Feb 2015 15:27:31 +0000 Subject: I can't see the point of rounding the image size again after calling size() with a round of 4. --- src/lib/player.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/lib') diff --git a/src/lib/player.cc b/src/lib/player.cc index de513ea17..bda791dd5 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -356,10 +356,6 @@ Player::get_video (DCPTime time, bool accurate) } dcp::Size image_size = content->scale().size (content, _video_container_size, _film->frame_size (), _approximate_size ? 4 : 1); - if (_approximate_size) { - image_size.width &= ~3; - image_size.height &= ~3; - } for (list::const_iterator i = content_video.begin(); i != content_video.end(); ++i) { pvf.push_back ( -- cgit v1.2.3