diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-10-02 11:34:01 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-10-02 11:34:01 +0200 |
| commit | 6d1a6b588c1c8add26a42dafc971146462cfccf0 (patch) | |
| tree | 4ce47b80f6e161650182d4d8efb1d52d88b94c85 /src/tools | |
| parent | fae11d166fd4f1d56ce8cfe59a3af78feb336733 (diff) | |
Replace crop() with actual_crop and requested_crop()yuv-cropping
This means that the crop rounding we do is reported properly,
not done behind the user's back.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_cli.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index 59d85d4c4..75f57fa89 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -92,10 +92,10 @@ print_dump (shared_ptr<Film> film) if (c->video) { cout << "\t" << c->video->size().width << "x" << c->video->size().height << "\n" << "\t" << c->active_video_frame_rate(film) << "fps\n" - << "\tcrop left " << c->video->left_crop() - << " right " << c->video->right_crop() - << " top " << c->video->top_crop() - << " bottom " << c->video->bottom_crop() << "\n"; + << "\tcrop left " << c->video->requested_left_crop() + << " right " << c->video->requested_right_crop() + << " top " << c->video->requested_top_crop() + << " bottom " << c->video->requested_bottom_crop() << "\n"; if (c->video->custom_ratio()) { cout << "\tscale to custom ratio " << *c->video->custom_ratio() << ":1\n"; } |
