diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-09-12 22:45:24 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-09-12 22:45:24 +0100 |
| commit | 4265db19ba68a995fca42bdd5fa815aead9c5c50 (patch) | |
| tree | bfce12d663f71080430cf4da74229fd5f48f214f /src/lib | |
| parent | a8f51733f93bcf88d867d5a4b359e6e14ddad91a (diff) | |
Allow separate X and Y scale for subtitles.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/film.cc | 6 | ||||
| -rw-r--r-- | src/lib/player.cc | 3 | ||||
| -rw-r--r-- | src/lib/subtitle.cc | 14 | ||||
| -rw-r--r-- | src/lib/subtitle_content.cc | 48 | ||||
| -rw-r--r-- | src/lib/subtitle_content.h | 21 |
5 files changed, 64 insertions, 28 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index b4d12a062..54503ef72 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -91,9 +91,11 @@ using libdcp::raw_convert; * 7 -> 8 * Use <Scale> tag in <VideoContent> rather than <Ratio>. * 8 -> 9 - * DCI -> ISDCF + * DCI -> ISDCF. + * 9 -> 10 + * Subtitle X and Y scale. */ -int const Film::current_state_version = 9; +int const Film::current_state_version = 10; /** Construct a Film object in a given directory. * diff --git a/src/lib/player.cc b/src/lib/player.cc index 2d2977606..8063d1212 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -497,7 +497,8 @@ Player::content_changed (weak_ptr<Content> w, int property, bool frequent) } else if ( property == SubtitleContentProperty::SUBTITLE_X_OFFSET || property == SubtitleContentProperty::SUBTITLE_Y_OFFSET || - property == SubtitleContentProperty::SUBTITLE_SCALE + property == SubtitleContentProperty::SUBTITLE_X_SCALE || + property == SubtitleContentProperty::SUBTITLE_Y_SCALE ) { for (list<Subtitle>::iterator i = _subtitles.begin(); i != _subtitles.end(); ++i) { diff --git a/src/lib/subtitle.cc b/src/lib/subtitle.cc index 0d18861c4..03d4ccf2f 100644 --- a/src/lib/subtitle.cc +++ b/src/lib/subtitle.cc @@ -60,9 +60,9 @@ Subtitle::update (shared_ptr<const Film> film, libdcp::Size video_container_size in_rect.x += sc->subtitle_x_offset (); in_rect.y += sc->subtitle_y_offset (); - /* We will scale the subtitle up to fit _video_container_size, and also by the additional subtitle_scale */ - scaled_size.width = in_rect.width * video_container_size.width * sc->subtitle_scale (); - scaled_size.height = in_rect.height * video_container_size.height * sc->subtitle_scale (); + /* We will scale the subtitle up to fit _video_container_size, and also by the additional subtitle scale */ + scaled_size.width = in_rect.width * video_container_size.width * sc->subtitle_x_scale (); + scaled_size.height = in_rect.height * video_container_size.height * sc->subtitle_y_scale (); /* Then we need a corrective translation, consisting of two parts: * @@ -70,14 +70,14 @@ Subtitle::update (shared_ptr<const Film> film, libdcp::Size video_container_size * rect.x * _video_container_size.width and rect.y * _video_container_size.height. * * 2. that to shift the origin of the scale by subtitle_scale to the centre of the subtitle; this will be - * (width_before_subtitle_scale * (1 - subtitle_scale) / 2) and - * (height_before_subtitle_scale * (1 - subtitle_scale) / 2). + * (width_before_subtitle_scale * (1 - subtitle_x_scale) / 2) and + * (height_before_subtitle_scale * (1 - subtitle_y_scale) / 2). * * Combining these two translations gives these expressions. */ - _out_position.x = rint (video_container_size.width * (in_rect.x + (in_rect.width * (1 - sc->subtitle_scale ()) / 2))); - _out_position.y = rint (video_container_size.height * (in_rect.y + (in_rect.height * (1 - sc->subtitle_scale ()) / 2))); + _out_position.x = rint (video_container_size.width * (in_rect.x + (in_rect.width * (1 - sc->subtitle_x_scale ()) / 2))); + _out_position.y = rint (video_container_size.height * (in_rect.y + (in_rect.height * (1 - sc->subtitle_y_scale ()) / 2))); _out_image = _in_image->scale ( scaled_size, diff --git a/src/lib/subtitle_content.cc b/src/lib/subtitle_content.cc index 0abb7d491..3702eef41 100644 --- a/src/lib/subtitle_content.cc +++ b/src/lib/subtitle_content.cc @@ -33,13 +33,15 @@ using libdcp::raw_convert; int const SubtitleContentProperty::SUBTITLE_X_OFFSET = 500; int const SubtitleContentProperty::SUBTITLE_Y_OFFSET = 501; -int const SubtitleContentProperty::SUBTITLE_SCALE = 502; +int const SubtitleContentProperty::SUBTITLE_X_SCALE = 502; +int const SubtitleContentProperty::SUBTITLE_Y_SCALE = 503; SubtitleContent::SubtitleContent (shared_ptr<const Film> f, boost::filesystem::path p) : Content (f, p) , _subtitle_x_offset (0) , _subtitle_y_offset (0) - , _subtitle_scale (1) + , _subtitle_x_scale (1) + , _subtitle_y_scale (1) { } @@ -48,7 +50,8 @@ SubtitleContent::SubtitleContent (shared_ptr<const Film> f, shared_ptr<const cxm : Content (f, node) , _subtitle_x_offset (0) , _subtitle_y_offset (0) - , _subtitle_scale (1) + , _subtitle_x_scale (1) + , _subtitle_y_scale (1) { if (version >= 7) { _subtitle_x_offset = node->number_child<float> ("SubtitleXOffset"); @@ -56,8 +59,13 @@ SubtitleContent::SubtitleContent (shared_ptr<const Film> f, shared_ptr<const cxm } else { _subtitle_y_offset = node->number_child<float> ("SubtitleOffset"); } - - _subtitle_scale = node->number_child<float> ("SubtitleScale"); + + if (version >= 10) { + _subtitle_x_scale = node->number_child<float> ("SubtitleXScale"); + _subtitle_y_scale = node->number_child<float> ("SubtitleYScale"); + } else { + _subtitle_x_scale = _subtitle_y_scale = node->number_child<float> ("SubtitleScale"); + } } SubtitleContent::SubtitleContent (shared_ptr<const Film> f, vector<shared_ptr<Content> > c) @@ -77,14 +85,19 @@ SubtitleContent::SubtitleContent (shared_ptr<const Film> f, vector<shared_ptr<Co throw JoinError (_("Content to be joined must have the same subtitle Y offset.")); } - if (sc->subtitle_scale() != ref->subtitle_scale()) { - throw JoinError (_("Content to be joined must have the same subtitle scale.")); + if (sc->subtitle_x_scale() != ref->subtitle_x_scale()) { + throw JoinError (_("Content to be joined must have the same subtitle X scale.")); + } + + if (sc->subtitle_y_scale() != ref->subtitle_y_scale()) { + throw JoinError (_("Content to be joined must have the same subtitle Y scale.")); } } _subtitle_x_offset = ref->subtitle_x_offset (); _subtitle_y_offset = ref->subtitle_y_offset (); - _subtitle_scale = ref->subtitle_scale (); + _subtitle_x_scale = ref->subtitle_x_scale (); + _subtitle_y_scale = ref->subtitle_y_scale (); } void @@ -92,7 +105,8 @@ SubtitleContent::as_xml (xmlpp::Node* root) const { root->add_child("SubtitleXOffset")->add_child_text (raw_convert<string> (_subtitle_x_offset)); root->add_child("SubtitleYOffset")->add_child_text (raw_convert<string> (_subtitle_y_offset)); - root->add_child("SubtitleScale")->add_child_text (raw_convert<string> (_subtitle_scale)); + root->add_child("SubtitleXScale")->add_child_text (raw_convert<string> (_subtitle_x_scale)); + root->add_child("SubtitleYScale")->add_child_text (raw_convert<string> (_subtitle_y_scale)); } void @@ -116,11 +130,21 @@ SubtitleContent::set_subtitle_y_offset (double o) } void -SubtitleContent::set_subtitle_scale (double s) +SubtitleContent::set_subtitle_x_scale (double s) +{ + { + boost::mutex::scoped_lock lm (_mutex); + _subtitle_x_scale = s; + } + signal_changed (SubtitleContentProperty::SUBTITLE_X_SCALE); +} + +void +SubtitleContent::set_subtitle_y_scale (double s) { { boost::mutex::scoped_lock lm (_mutex); - _subtitle_scale = s; + _subtitle_y_scale = s; } - signal_changed (SubtitleContentProperty::SUBTITLE_SCALE); + signal_changed (SubtitleContentProperty::SUBTITLE_Y_SCALE); } diff --git a/src/lib/subtitle_content.h b/src/lib/subtitle_content.h index 388637688..329368e44 100644 --- a/src/lib/subtitle_content.h +++ b/src/lib/subtitle_content.h @@ -27,7 +27,8 @@ class SubtitleContentProperty public: static int const SUBTITLE_X_OFFSET; static int const SUBTITLE_Y_OFFSET; - static int const SUBTITLE_SCALE; + static int const SUBTITLE_X_SCALE; + static int const SUBTITLE_Y_SCALE; }; class SubtitleContent : public virtual Content @@ -41,7 +42,8 @@ public: void set_subtitle_x_offset (double); void set_subtitle_y_offset (double); - void set_subtitle_scale (double); + void set_subtitle_x_scale (double); + void set_subtitle_y_scale (double); double subtitle_x_offset () const { boost::mutex::scoped_lock lm (_mutex); @@ -53,9 +55,14 @@ public: return _subtitle_y_offset; } - double subtitle_scale () const { + double subtitle_x_scale () const { boost::mutex::scoped_lock lm (_mutex); - return _subtitle_scale; + return _subtitle_x_scale; + } + + double subtitle_y_scale () const { + boost::mutex::scoped_lock lm (_mutex); + return _subtitle_y_scale; } private: @@ -69,8 +76,10 @@ private: * +ve is further down the frame, -ve is further up. */ double _subtitle_y_offset; - /** scale factor to apply to subtitles */ - double _subtitle_scale; + /** x scale factor to apply to subtitles */ + double _subtitle_x_scale; + /** y scale factor to apply to subtitles */ + double _subtitle_y_scale; }; #endif |
