diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-09-08 01:09:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-09-08 01:09:22 +0100 |
| commit | 946dbad9821e676f1d8fdc5abba459da54b8e84c (patch) | |
| tree | 41c304d90a6609dbd5f1d4e2dc9b2331d137b541 /src/lib/video_content.cc | |
| parent | 5dc2dbdb6639f8d617a40209ad603d2a38f9df2a (diff) | |
| parent | 34be35fc1ba9a0c0eaebd3e2a6be3eab134e80af (diff) | |
Merge master.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 137 |
1 files changed, 0 insertions, 137 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 9822d7763..b5097b355 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -56,8 +56,6 @@ using boost::optional; using boost::dynamic_pointer_cast; using dcp::raw_convert; -vector<VideoContentScale> VideoContentScale::_scales; - VideoContent::VideoContent (shared_ptr<const Film> f) : Content (f) , _video_length (0) @@ -433,138 +431,3 @@ VideoContent::set_video_frame_rate (float r) signal_changed (VideoContentProperty::VIDEO_FRAME_RATE); } -VideoContentScale::VideoContentScale (Ratio const * r) - : _ratio (r) - , _scale (true) -{ - -} - -VideoContentScale::VideoContentScale () - : _ratio (0) - , _scale (false) -{ - -} - -VideoContentScale::VideoContentScale (bool scale) - : _ratio (0) - , _scale (scale) -{ - -} - -VideoContentScale::VideoContentScale (cxml::NodePtr node) - : _ratio (0) - , _scale (true) -{ - optional<string> r = node->optional_string_child ("Ratio"); - if (r) { - _ratio = Ratio::from_id (r.get ()); - } else { - _scale = node->bool_child ("Scale"); - } -} - -void -VideoContentScale::as_xml (xmlpp::Node* node) const -{ - if (_ratio) { - node->add_child("Ratio")->add_child_text (_ratio->id ()); - } else { - node->add_child("Scale")->add_child_text (_scale ? "1" : "0"); - } -} - -string -VideoContentScale::id () const -{ - SafeStringStream s; - - if (_ratio) { - s << _ratio->id (); - } else { - s << (_scale ? "S1" : "S0"); - } - - return s.str (); -} - -string -VideoContentScale::name () const -{ - if (_ratio) { - return _ratio->nickname (); - } - - if (_scale) { - return _("No stretch"); - } - - return _("No scale"); -} - -VideoContentScale -VideoContentScale::from_id (string id) -{ - Ratio const * r = Ratio::from_id (id); - if (r) { - return VideoContentScale (r); - } - - if (id == "S0") { - return VideoContentScale (false); - } - - return VideoContentScale (true); -} - -/** @param display_container Size of the container that we are displaying this content in. - * @param film_container The size of the film's image. - */ -dcp::Size -VideoContentScale::size (shared_ptr<const VideoContent> c, dcp::Size display_container, dcp::Size film_container, int round) const -{ - if (_ratio) { - return fit_ratio_within (_ratio->ratio (), display_container, round); - } - - dcp::Size const ac = c->video_size_after_crop (); - - /* Force scale if the film_container is smaller than the content's image */ - if (_scale || film_container.width < ac.width || film_container.height < ac.height) { - return fit_ratio_within (ac.ratio (), display_container, 1); - } - - /* Scale the image so that it will be in the right place in film_container, even if display_container is a - different size. - */ - return dcp::Size ( - round_to (c->video_size().width * float(display_container.width) / film_container.width, round), - round_to (c->video_size().height * float(display_container.height) / film_container.height, round) - ); -} - -void -VideoContentScale::setup_scales () -{ - vector<Ratio const *> ratios = Ratio::all (); - for (vector<Ratio const *>::const_iterator i = ratios.begin(); i != ratios.end(); ++i) { - _scales.push_back (VideoContentScale (*i)); - } - - _scales.push_back (VideoContentScale (true)); - _scales.push_back (VideoContentScale (false)); -} - -bool -operator== (VideoContentScale const & a, VideoContentScale const & b) -{ - return (a.ratio() == b.ratio() && a.scale() == b.scale()); -} - -bool -operator!= (VideoContentScale const & a, VideoContentScale const & b) -{ - return (a.ratio() != b.ratio() || a.scale() != b.scale()); -} |
