diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-02-07 15:27:31 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-02-07 15:27:31 +0000 |
| commit | 4964bbe4efaaf8f8d7076cfcfed841300fd7a66d (patch) | |
| tree | 025e7d66bac2f89fbb96d075537e0f66be8bd203 /src/lib | |
| parent | a358fad9e623c0913ab7d6e94dddc3fb6fb2ee0b (diff) | |
I can't see the point of rounding the image size again after calling
size() with a round of 4.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/player.cc | 4 |
1 files changed, 0 insertions, 4 deletions
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<ContentVideo>::const_iterator i = content_video.begin(); i != content_video.end(); ++i) { pvf.push_back ( |
