X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_content.cc;h=6c3f23a5702ebd2735936c914b204bc8c366bfc4;hb=213afdc4e9399e3f2aaea3df54ab79535d43045e;hp=86efeee7b3606ed7d0262da664aa6c4b33bdadec;hpb=eeaca1992aa117fe3a2a4a079d8a20a01d88e933;p=dcpomatic.git diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 86efeee7b..6c3f23a57 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -105,12 +105,6 @@ VideoContent::VideoContent (Content* parent, cxml::ConstNodePtr node, int versio _size.width = node->number_child ("VideoWidth"); _size.height = node->number_child ("VideoHeight"); - /* Backwards compatibility */ - auto r = node->optional_number_child("VideoFrameRate"); - if (r) { - _parent->set_video_frame_rate (r.get ()); - } - _use = node->optional_bool_child("Use").get_value_or(true); _length = node->number_child ("VideoLength"); @@ -311,7 +305,7 @@ VideoContent::as_xml (xmlpp::Node* node) const } void -VideoContent::take_from_examiner (shared_ptr d) +VideoContent::take_from_examiner(shared_ptr film, shared_ptr d) { /* These examiner calls could call other content methods which take a lock on the mutex */ auto const vs = d->video_size (); @@ -338,7 +332,7 @@ VideoContent::take_from_examiner (shared_ptr d) LOG_GENERAL ("Video length obtained from header as %1 frames", _length); if (d->video_frame_rate()) { - _parent->set_video_frame_rate (d->video_frame_rate().get()); + _parent->set_video_frame_rate(film, d->video_frame_rate().get()); } } @@ -529,6 +523,12 @@ VideoContent::set_length (Frame len) maybe_set (_length, len, ContentProperty::LENGTH); } +void +VideoContent::set_crop (Crop c) +{ + maybe_set (_crop, c, VideoContentProperty::CROP); +} + void VideoContent::set_left_crop (int c) { @@ -623,6 +623,7 @@ VideoContent::take_settings_from (shared_ptr c) set_fade_in (c->_fade_in); set_fade_out (c->_fade_out); set_burnt_subtitle_language (c->_burnt_subtitle_language); + set_range(c->_range); } @@ -650,11 +651,14 @@ VideoContent::scaled_size (dcp::Size film_container) } if (_custom_size) { - return *_custom_size; + if (_custom_size->width <= film_container.width && _custom_size->height <= film_container.height) { + return *_custom_size; + } + return fit_ratio_within(_custom_size->ratio(), film_container); } auto size = size_after_crop (); - size.width *= _sample_aspect_ratio.get_value_or(1); + size.width = std::lrint(size.width * _sample_aspect_ratio.get_value_or(1)); /* This is what we will return unless there is any legacy stuff to take into account */ auto auto_size = fit_ratio_within (size.ratio(), film_container);