diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-10 11:28:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-10 11:28:19 +0100 |
| commit | 0806df40e8739b83945b62b61eaf4f18bbfa6320 (patch) | |
| tree | bb5d6a477679f97c3b68c05c7dc7d214bf08d772 /src/lib/format.cc | |
| parent | 38fdfb05aec760d44137b8ca09d6dcc2f9f4111f (diff) | |
Fix variable format ratio under crop (part of #113).
Diffstat (limited to 'src/lib/format.cc')
| -rw-r--r-- | src/lib/format.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/format.cc b/src/lib/format.cc index 3ee11a132..faadcd797 100644 --- a/src/lib/format.cc +++ b/src/lib/format.cc @@ -230,7 +230,8 @@ VariableFormat::ratio_as_integer (shared_ptr<const Film> f) const float VariableFormat::ratio_as_float (shared_ptr<const Film> f) const { - return float (f->size().width) / f->size().height; + libdcp::Size const c = f->cropped_size (f->size ()); + return float (c.width) / c.height; } /** @return A name to be presented to the user */ |
