summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-01-13 01:00:08 +0000
committerCarl Hetherington <cth@carlh.net>2018-01-13 01:00:08 +0000
commitd54c8291f83bd9f2cf964ca0372f74734ccb0ae2 (patch)
treec7a0b929c444476a6cc430dfb29193cbe181a9be /src/lib
parent9b1c6dd87c2a1b0b480a23da756d22c3bfedd9f1 (diff)
Forcing for fade in/out.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/subtitle_content.cc43
-rw-r--r--src/lib/subtitle_content.h10
-rw-r--r--src/lib/subtitle_decoder.cc8
3 files changed, 47 insertions, 14 deletions
diff --git a/src/lib/subtitle_content.cc b/src/lib/subtitle_content.cc
index 4bb414af7..dbe6dd43a 100644
--- a/src/lib/subtitle_content.cc
+++ b/src/lib/subtitle_content.cc
@@ -100,8 +100,6 @@ SubtitleContent::SubtitleContent (Content* parent, cxml::ConstNodePtr node, int
, _x_scale (1)
, _y_scale (1)
, _line_spacing (node->optional_number_child<double>("LineSpacing").get_value_or (1))
- , _fade_in (node->optional_number_child<Frame>("SubtitleFadeIn").get_value_or (0))
- , _fade_out (node->optional_number_child<Frame>("SubtitleFadeOut").get_value_or (0))
, _outline_width (node->optional_number_child<int>("OutlineWidth").get_value_or (2))
{
if (version >= 32) {
@@ -164,6 +162,15 @@ SubtitleContent::SubtitleContent (Content* parent, cxml::ConstNodePtr node, int
);
}
+ optional<Frame> fi = node->optional_number_child<Frame>("SubtitleFadeIn");
+ if (fi) {
+ _fade_in = ContentTime (*fi);
+ }
+ optional<Frame> fo = node->optional_number_child<Frame>("SubtitleFadeOut");
+ if (fo) {
+ _fade_out = ContentTime (*fo);
+ }
+
_language = node->optional_string_child ("SubtitleLanguage").get_value_or ("");
list<cxml::NodePtr> fonts = node->node_children ("Font");
@@ -289,8 +296,12 @@ SubtitleContent::as_xml (xmlpp::Node* root) const
root->add_child("EffectBlue")->add_child_text (raw_convert<string> (_effect_colour->b));
}
root->add_child("LineSpacing")->add_child_text (raw_convert<string> (_line_spacing));
- root->add_child("SubtitleFadeIn")->add_child_text (raw_convert<string> (_fade_in.get()));
- root->add_child("SubtitleFadeOut")->add_child_text (raw_convert<string> (_fade_out.get()));
+ if (_fade_in) {
+ root->add_child("SubtitleFadeIn")->add_child_text (raw_convert<string> (_fade_in->get()));
+ }
+ if (_fade_out) {
+ root->add_child("SubtitleFadeOut")->add_child_text (raw_convert<string> (_fade_out->get()));
+ }
root->add_child("OutlineWidth")->add_child_text (raw_convert<string> (_outline_width));
for (list<shared_ptr<Font> >::const_iterator i = _fonts.begin(); i != _fonts.end(); ++i) {
@@ -306,8 +317,8 @@ SubtitleContent::identifier () const
+ "_" + raw_convert<string> (x_offset())
+ "_" + raw_convert<string> (y_offset())
+ "_" + raw_convert<string> (line_spacing())
- + "_" + raw_convert<string> (fade_in().get())
- + "_" + raw_convert<string> (fade_out().get())
+ + "_" + raw_convert<string> (fade_in().get_value_or(ContentTime()).get())
+ + "_" + raw_convert<string> (fade_out().get_value_or(ContentTime()).get())
+ "_" + raw_convert<string> (outline_width());
/* XXX: I suppose really _fonts shouldn't be in here, since not all
@@ -444,12 +455,24 @@ SubtitleContent::set_fade_in (ContentTime t)
}
void
+SubtitleContent::unset_fade_in ()
+{
+ maybe_set (_fade_in, optional<ContentTime>(), SubtitleContentProperty::FADE_IN);
+}
+
+void
SubtitleContent::set_fade_out (ContentTime t)
{
maybe_set (_fade_out, t, SubtitleContentProperty::FADE_OUT);
}
void
+SubtitleContent::unset_fade_out ()
+{
+ maybe_set (_fade_out, optional<ContentTime>(), SubtitleContentProperty::FADE_OUT);
+}
+
+void
SubtitleContent::set_outline_width (int w)
{
maybe_set (_outline_width, w, SubtitleContentProperty::OUTLINE_WIDTH);
@@ -479,7 +502,11 @@ SubtitleContent::take_settings_from (shared_ptr<const SubtitleContent> c)
unset_effect_colour ();
}
set_line_spacing (c->_line_spacing);
- set_fade_in (c->_fade_in);
- set_fade_out (c->_fade_out);
+ if (c->_fade_in) {
+ set_fade_in (*c->_fade_in);
+ }
+ if (c->_fade_out) {
+ set_fade_out (*c->_fade_out);
+ }
set_outline_width (c->_outline_width);
}
diff --git a/src/lib/subtitle_content.h b/src/lib/subtitle_content.h
index 47b7b5cd9..58dc51510 100644
--- a/src/lib/subtitle_content.h
+++ b/src/lib/subtitle_content.h
@@ -81,8 +81,10 @@ public:
void unset_effect_colour ();
void set_line_spacing (double s);
void set_fade_in (ContentTime);
+ void unset_fade_in ();
void set_fade_out (ContentTime);
void set_outline_width (int);
+ void unset_fade_out ();
bool use () const {
boost::mutex::scoped_lock lm (_mutex);
@@ -144,12 +146,12 @@ public:
return _line_spacing;
}
- ContentTime fade_in () const {
+ boost::optional<ContentTime> fade_in () const {
boost::mutex::scoped_lock lm (_mutex);
return _fade_in;
}
- ContentTime fade_out () const {
+ boost::optional<ContentTime> fade_out () const {
boost::mutex::scoped_lock lm (_mutex);
return _fade_out;
}
@@ -194,8 +196,8 @@ private:
boost::optional<dcp::Colour> _effect_colour;
/** scaling factor for line spacing; 1 is "standard", < 1 is closer together, > 1 is further apart */
double _line_spacing;
- ContentTime _fade_in;
- ContentTime _fade_out;
+ boost::optional<ContentTime> _fade_in;
+ boost::optional<ContentTime> _fade_out;
int _outline_width;
};
diff --git a/src/lib/subtitle_decoder.cc b/src/lib/subtitle_decoder.cc
index 9351d6865..39c36415a 100644
--- a/src/lib/subtitle_decoder.cc
+++ b/src/lib/subtitle_decoder.cc
@@ -85,8 +85,12 @@ SubtitleDecoder::emit_text_start (ContentTime from, list<dcp::SubtitleString> s)
if (content()->effect()) {
i.set_effect (*content()->effect());
}
- i.set_fade_up_time (dcp::Time(content()->fade_in().seconds(), 1000));
- i.set_fade_down_time (dcp::Time(content()->fade_out().seconds(), 1000));
+ if (content()->fade_in()) {
+ i.set_fade_up_time (dcp::Time(content()->fade_in()->seconds(), 1000));
+ }
+ if (content()->fade_out()) {
+ i.set_fade_down_time (dcp::Time(content()->fade_out()->seconds(), 1000));
+ }
}
TextStart (ContentTextSubtitle (from, s));