diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-09 22:03:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-09 22:03:13 +0000 |
| commit | 3a9bea8c3727af6ebbce860b8223371cd7f87b3f (patch) | |
| tree | 4c2afdd6badac88017ed42c3cd971821e2f3a201 /src/lib/writer.cc | |
| parent | 3190fb98298ebdd29c41b2cf6019a381e71a6248 (diff) | |
Fix display of no-scale mode in the player; the image still has to be scaled for the film viewer as its image must represent a (scaled down) version of the film's frame.
Diffstat (limited to 'src/lib/writer.cc')
| -rw-r--r-- | src/lib/writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 42187dc6e..f689ace7c 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -86,7 +86,7 @@ Writer::Writer (shared_ptr<const Film> f, weak_ptr<Job> j) } _picture_asset->set_edit_rate (_film->video_frame_rate ()); - _picture_asset->set_size (fit_ratio_within (_film->container()->ratio(), _film->full_frame ())); + _picture_asset->set_size (_film->frame_size ()); _picture_asset->set_interop (_film->interop ()); if (_film->encrypted ()) { |
