diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-04 20:27:27 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-04 20:27:27 +0000 |
| commit | a79d78d8bb6d51f6662f1f63b9f8fd19e1a0c5f1 (patch) | |
| tree | 4b696815a80903ade7df8eccec23160b97e5ee05 /src/lib | |
| parent | 1b1bc528ee5ca1fee1bd33f9fb6f79cd551e3b33 (diff) | |
| parent | 5f66a692647fc901f7dca709ad08c65010bd84e7 (diff) | |
Merge master.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 4 | ||||
| -rw-r--r-- | src/lib/film.cc | 4 | ||||
| -rw-r--r-- | src/lib/image.cc | 25 | ||||
| -rw-r--r-- | src/lib/image_content.cc | 6 | ||||
| -rw-r--r-- | src/lib/image_content.h | 2 | ||||
| -rw-r--r-- | src/lib/player.cc | 5 | ||||
| -rw-r--r-- | src/lib/util.cc | 2 | ||||
| -rw-r--r-- | src/lib/video_content.cc | 162 | ||||
| -rw-r--r-- | src/lib/video_content.h | 53 |
9 files changed, 214 insertions, 49 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index 4a6cf9e04..bd5648ecb 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -60,7 +60,7 @@ FFmpegContent::FFmpegContent (shared_ptr<const Film> f, boost::filesystem::path FFmpegContent::FFmpegContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node, int version) : Content (f, node) - , VideoContent (f, node) + , VideoContent (f, node, version) , AudioContent (f, node) , SubtitleContent (f, node, version) { diff --git a/src/lib/film.cc b/src/lib/film.cc index 11fb9e4b0..aecb389fd 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -85,8 +85,10 @@ using dcp::Signer; * AudioMapping XML changed. * 6 -> 7 * Subtitle offset changed to subtitle y offset, and subtitle x offset added. + * 7 -> 8 + * Use <Scale> tag in <VideoContent> rather than <Ratio>. */ -int const Film::current_state_version = 7; +int const Film::current_state_version = 8; /** Construct a Film object in a given directory. * diff --git a/src/lib/image.cc b/src/lib/image.cc index b706f7fdc..98645c299 100644 --- a/src/lib/image.cc +++ b/src/lib/image.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,9 +33,12 @@ extern "C" { #include "scaler.h" #include "timer.h" +#include "i18n.h" + using std::string; using std::min; using std::cout; +using std::cerr; using boost::shared_ptr; using dcp::Size; @@ -89,26 +92,38 @@ Image::crop_scale_window (Crop crop, dcp::Size inter_size, dcp::Size out_size, S */ assert (aligned ()); + assert (out_size.width >= inter_size.width); + assert (out_size.height >= inter_size.height); + + /* Here's an image of out_size */ shared_ptr<Image> out (new Image (out_format, out_size, out_aligned)); out->make_black (); - - dcp::Size cropped_size = crop.apply (size ()); + /* Size of the image after any crop */ + dcp::Size const cropped_size = crop.apply (size ()); + + /* Scale context for a scale from cropped_size to inter_size */ struct SwsContext* scale_context = sws_getContext ( cropped_size.width, cropped_size.height, pixel_format(), inter_size.width, inter_size.height, out_format, scaler->ffmpeg_id (), 0, 0, 0 ); + if (!scale_context) { + throw StringError (N_("Could not allocate SwsContext")); + } + + /* Prepare input data pointers with crop */ uint8_t* scale_in_data[components()]; for (int c = 0; c < components(); ++c) { scale_in_data[c] = data()[c] + int (rint (bytes_per_pixel(c) * crop.left)) + stride()[c] * (crop.top / line_factor(c)); } + /* Corner of the image within out_size */ Position<int> const corner ((out_size.width - inter_size.width) / 2, (out_size.height - inter_size.height) / 2); - uint8_t* scale_out_data[components()]; - for (int c = 0; c < components(); ++c) { + uint8_t* scale_out_data[out->components()]; + for (int c = 0; c < out->components(); ++c) { scale_out_data[c] = out->data()[c] + int (rint (out->bytes_per_pixel(c) * corner.x)) + out->stride()[c] * corner.y; } diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index 2713280b4..db02c6059 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -50,9 +50,9 @@ ImageContent::ImageContent (shared_ptr<const Film> f, boost::filesystem::path p) } -ImageContent::ImageContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node, int) +ImageContent::ImageContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node, int version) : Content (f, node) - , VideoContent (f, node) + , VideoContent (f, node, version) { } diff --git a/src/lib/image_content.h b/src/lib/image_content.h index 1aff043d2..6db24767d 100644 --- a/src/lib/image_content.h +++ b/src/lib/image_content.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/lib/player.cc b/src/lib/player.cc index fc2f32d40..59d046956 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -275,8 +275,7 @@ Player::emit_video (weak_ptr<Piece> weak_piece, shared_ptr<DecodedVideo> video) FrameRateChange frc (content->video_frame_rate(), _film->video_frame_rate()); - float const ratio = content->ratio() ? content->ratio()->ratio() : content->video_size_after_crop().ratio(); - dcp::Size image_size = fit_ratio_within (ratio, _video_container_size); + dcp::Size const image_size = content->scale().size (content, _video_container_size); if (_approximate_size) { image_size.width &= ~3; image_size.height &= ~3; @@ -568,7 +567,7 @@ Player::content_changed (weak_ptr<Content> w, int property, bool frequent) Changed (frequent); } else if ( - property == VideoContentProperty::VIDEO_CROP || property == VideoContentProperty::VIDEO_RATIO || + property == VideoContentProperty::VIDEO_CROP || property == VideoContentProperty::VIDEO_SCALE || property == VideoContentProperty::VIDEO_FRAME_RATE ) { diff --git a/src/lib/util.cc b/src/lib/util.cc index 78e7b480c..e8f83d4e4 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -71,6 +71,7 @@ extern "C" { #include "ratio.h" #include "job.h" #include "cross.h" +#include "video_content.h" #ifdef DCPOMATIC_WINDOWS #include "stack.hpp" #endif @@ -347,6 +348,7 @@ dcpomatic_setup () dcp::init (); Ratio::setup_ratios (); + VideoContentScale::setup_scales (); DCPContentType::setup_dcp_content_types (); Scaler::setup_scalers (); Filter::setup_filters (); diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index b30aa3df4..b33a37cb8 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,8 +22,8 @@ #include <dcp/colour_matrix.h> #include "video_content.h" #include "video_examiner.h" -#include "ratio.h" #include "compose.hpp" +#include "ratio.h" #include "config.h" #include "colour_conversion.h" #include "util.h" @@ -36,7 +36,7 @@ int const VideoContentProperty::VIDEO_SIZE = 0; int const VideoContentProperty::VIDEO_FRAME_RATE = 1; int const VideoContentProperty::VIDEO_FRAME_TYPE = 2; int const VideoContentProperty::VIDEO_CROP = 3; -int const VideoContentProperty::VIDEO_RATIO = 4; +int const VideoContentProperty::VIDEO_SCALE = 4; int const VideoContentProperty::COLOUR_CONVERSION = 5; using std::string; @@ -49,12 +49,14 @@ using boost::lexical_cast; using boost::optional; using boost::dynamic_pointer_cast; +vector<VideoContentScale> VideoContentScale::_scales; + VideoContent::VideoContent (shared_ptr<const Film> f) : Content (f) , _video_length (0) , _video_frame_rate (0) , _video_frame_type (VIDEO_FRAME_TYPE_2D) - , _ratio (Ratio::from_id ("185")) + , _scale (Ratio::from_id ("185")) { setup_default_colour_conversion (); } @@ -64,7 +66,7 @@ VideoContent::VideoContent (shared_ptr<const Film> f, DCPTime s, ContentTime len , _video_length (len) , _video_frame_rate (0) , _video_frame_type (VIDEO_FRAME_TYPE_2D) - , _ratio (Ratio::from_id ("185")) + , _scale (Ratio::from_id ("185")) { setup_default_colour_conversion (); } @@ -74,14 +76,13 @@ VideoContent::VideoContent (shared_ptr<const Film> f, boost::filesystem::path p) , _video_length (0) , _video_frame_rate (0) , _video_frame_type (VIDEO_FRAME_TYPE_2D) - , _ratio (Ratio::from_id ("185")) + , _scale (Ratio::from_id ("185")) { setup_default_colour_conversion (); } -VideoContent::VideoContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node) +VideoContent::VideoContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node, int version) : Content (f, node) - , _ratio (0) { _video_length = ContentTime (node->number_child<int64_t> ("VideoLength")); _video_size.width = node->number_child<int> ("VideoWidth"); @@ -92,10 +93,16 @@ VideoContent::VideoContent (shared_ptr<const Film> f, shared_ptr<const cxml::Nod _crop.right = node->number_child<int> ("RightCrop"); _crop.top = node->number_child<int> ("TopCrop"); _crop.bottom = node->number_child<int> ("BottomCrop"); - optional<string> r = node->optional_string_child ("Ratio"); - if (r) { - _ratio = Ratio::from_id (r.get ()); + + if (version <= 7) { + optional<string> r = node->optional_string_child ("Ratio"); + if (r) { + _scale = VideoContentScale (Ratio::from_id (r.get ())); + } + } else { + _scale = VideoContentScale (node->node_child ("Scale")); } + _colour_conversion = ColourConversion (node->node_child ("ColourConversion")); } @@ -125,8 +132,8 @@ VideoContent::VideoContent (shared_ptr<const Film> f, vector<shared_ptr<Content> throw JoinError (_("Content to be joined must have the same crop.")); } - if (vc->ratio() != ref->ratio()) { - throw JoinError (_("Content to be joined must have the same ratio.")); + if (vc->scale() != ref->scale()) { + throw JoinError (_("Content to be joined must have the same scale setting.")); } if (vc->colour_conversion() != ref->colour_conversion()) { @@ -140,7 +147,7 @@ VideoContent::VideoContent (shared_ptr<const Film> f, vector<shared_ptr<Content> _video_frame_rate = ref->video_frame_rate (); _video_frame_type = ref->video_frame_type (); _crop = ref->crop (); - _ratio = ref->ratio (); + _scale = ref->scale (); _colour_conversion = ref->colour_conversion (); } @@ -157,9 +164,7 @@ VideoContent::as_xml (xmlpp::Node* node) const node->add_child("RightCrop")->add_child_text (boost::lexical_cast<string> (_crop.right)); node->add_child("TopCrop")->add_child_text (boost::lexical_cast<string> (_crop.top)); node->add_child("BottomCrop")->add_child_text (boost::lexical_cast<string> (_crop.bottom)); - if (_ratio) { - node->add_child("Ratio")->add_child_text (_ratio->id ()); - } + _scale.as_xml (node->add_child("Scale")); _colour_conversion.as_xml (node->add_child("ColourConversion")); } @@ -268,18 +273,18 @@ VideoContent::set_bottom_crop (int c) } void -VideoContent::set_ratio (Ratio const * r) +VideoContent::set_scale (VideoContentScale s) { { boost::mutex::scoped_lock lm (_mutex); - if (_ratio == r) { + if (_scale == s) { return; } - _ratio = r; + _scale = s; } - signal_changed (VideoContentProperty::VIDEO_RATIO); + signal_changed (VideoContentProperty::VIDEO_SCALE); } /** @return string which includes everything about how this content looks */ @@ -292,12 +297,9 @@ VideoContent::identifier () const << "_" << crop().right << "_" << crop().top << "_" << crop().bottom + << "_" << scale().id() << "_" << colour_conversion().identifier (); - if (ratio()) { - s << "_" << ratio()->id (); - } - return s.str (); } @@ -362,3 +364,113 @@ VideoContent::dcp_time_to_content_time (DCPTime t) const assert (film); return ContentTime (t, FrameRateChange (video_frame_rate(), film->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 (shared_ptr<cxml::Node> 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 +{ + stringstream 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"); +} + +libdcp::Size +VideoContentScale::size (shared_ptr<const VideoContent> c, libdcp::Size container) const +{ + if (_ratio) { + return fit_ratio_within (_ratio->ratio (), container); + } + + /* Force scale if the container is smaller than the content's image */ + if (_scale || container.width < c->video_size().width || container.height < c->video_size().height) { + return fit_ratio_within (c->video_size().ratio (), container); + } + + return c->video_size (); +} + +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()); +} diff --git a/src/lib/video_content.h b/src/lib/video_content.h index d673d5372..ebd9f8c72 100644 --- a/src/lib/video_content.h +++ b/src/lib/video_content.h @@ -33,10 +33,46 @@ public: static int const VIDEO_FRAME_RATE; static int const VIDEO_FRAME_TYPE; static int const VIDEO_CROP; - static int const VIDEO_RATIO; + static int const VIDEO_SCALE; static int const COLOUR_CONVERSION; }; +class VideoContentScale +{ +public: + VideoContentScale (); + VideoContentScale (Ratio const *); + VideoContentScale (bool); + VideoContentScale (boost::shared_ptr<cxml::Node>); + + libdcp::Size size (boost::shared_ptr<const VideoContent>, libdcp::Size) const; + std::string id () const; + std::string name () const; + void as_xml (xmlpp::Node *) const; + + Ratio const * ratio () const { + return _ratio; + } + + bool scale () const { + return _scale; + } + + static void setup_scales (); + static std::vector<VideoContentScale> all () { + return _scales; + } + +private: + Ratio const * _ratio; + bool _scale; + + static std::vector<VideoContentScale> _scales; +}; + +bool operator== (VideoContentScale const & a, VideoContentScale const & b); +bool operator!= (VideoContentScale const & a, VideoContentScale const & b); + class VideoContent : public virtual Content { public: @@ -45,7 +81,7 @@ public: VideoContent (boost::shared_ptr<const Film>); VideoContent (boost::shared_ptr<const Film>, DCPTime, ContentTime); VideoContent (boost::shared_ptr<const Film>, boost::filesystem::path); - VideoContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>); + VideoContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>, int); VideoContent (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >); void as_xml (xmlpp::Node *) const; @@ -75,8 +111,9 @@ public: void set_top_crop (int); void set_bottom_crop (int); + void set_scale (VideoContentScale); void set_colour_conversion (ColourConversion); - + VideoFrameType video_frame_type () const { boost::mutex::scoped_lock lm (_mutex); return _video_frame_type; @@ -106,13 +143,11 @@ public: boost::mutex::scoped_lock lm (_mutex); return _crop.bottom; } - - void set_ratio (Ratio const *); - /** @return ratio to scale to, or 0 if the content's own ratio should be preserved. */ - Ratio const * ratio () const { + /** @return Description of how to scale this content (if indeed it should be scaled) */ + VideoContentScale scale () const { boost::mutex::scoped_lock lm (_mutex); - return _ratio; + return _scale; } ColourConversion colour_conversion () const { @@ -142,7 +177,7 @@ private: dcp::Size _video_size; VideoFrameType _video_frame_type; Crop _crop; - Ratio const * _ratio; + VideoContentScale _scale; ColourConversion _colour_conversion; }; |
