From 6d1a6b588c1c8add26a42dafc971146462cfccf0 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 2 Oct 2021 11:34:01 +0200 Subject: Replace crop() with actual_crop and requested_crop() This means that the crop rounding we do is reported properly, not done behind the user's back. --- src/tools/dcpomatic_cli.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tools/dcpomatic_cli.cc') 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) 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"; } -- cgit v1.2.3