diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-05 21:57:03 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-21 23:18:23 +0200 |
| commit | c98d6fd22da1586ef3c1d64a2f7b1ee602f539e9 (patch) | |
| tree | 5b35a6c950b5e77befca22564ed93a5920089cab /src/lib/hints.cc | |
| parent | 55f1927db0565c74ff7c121645ec397c07f63d51 (diff) | |
Rename j2k_bandwidth -> video_bit_rate.
Diffstat (limited to 'src/lib/hints.cc')
| -rw-r--r-- | src/lib/hints.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/hints.cc b/src/lib/hints.cc index 7a6a2a4bf..fc59fa703 100644 --- a/src/lib/hints.cc +++ b/src/lib/hints.cc @@ -173,10 +173,10 @@ Hints::check_unusual_container () void -Hints::check_high_j2k_bandwidth () +Hints::check_high_video_bit_rate() { - if (film()->j2k_bandwidth() >= 245000000) { - hint (_("A few projectors have problems playing back very high bit-rate DCPs. It is a good idea to drop the JPEG2000 bandwidth down to about 200Mbit/s; this is unlikely to have any visible effect on the image.")); + if (film()->video_bit_rate() >= 245000000) { + hint (_("A few projectors have problems playing back very high bit-rate DCPs. It is a good idea to drop the video bit rate down to about 200Mbit/s; this is unlikely to have any visible effect on the image.")); } } @@ -468,7 +468,7 @@ try check_upmixers (); check_incorrect_container (); check_unusual_container (); - check_high_j2k_bandwidth (); + check_high_video_bit_rate(); check_frame_rate (); check_4k_3d (); check_speed_up (); |
