diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-02 20:20:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-05-02 20:20:32 +0100 |
| commit | ae15eeca8588c6928d7671894db98c2e289fa601 (patch) | |
| tree | d284aff5b975d57c3a69926634f2259a8828583e /src/lib/video_content.cc | |
| parent | a38095fc533b2620e375695024beca5f5540b10d (diff) | |
Remove approximate size stuff where playback viewer would round
down to nearest 4 pixels to try and speed up scaling. It didn't
work as the two estimates of what would be scaled didn't always
agree. It could probably be resurrected.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index bfbcef9bf..68db672f1 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -540,7 +540,7 @@ VideoContent::processing_description () const DCPOMATIC_ASSERT (film); dcp::Size const container_size = film->frame_size (); - dcp::Size const scaled = scale().size (dynamic_pointer_cast<const VideoContent> (shared_from_this ()), container_size, container_size, 1); + dcp::Size const scaled = scale().size (dynamic_pointer_cast<const VideoContent> (shared_from_this ()), container_size, container_size); if (scaled != video_size_after_crop ()) { d << String::compose ( |
