summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-19 13:44:59 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-19 23:45:23 +0100
commit491176352b80bea000564e6662738722185be721 (patch)
tree34211a43cefdec49f43b4a990897fdb4102a5aa2 /src/lib
parent0fb9916d6734dbea4cb55b6d42923468aee45a40 (diff)
Remove old content_subtitle.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/content_subtitle.h74
-rw-r--r--src/lib/player.cc3
-rw-r--r--src/lib/player.h4
-rw-r--r--src/lib/text_decoder.cc2
-rw-r--r--src/lib/text_decoder.h4
5 files changed, 6 insertions, 81 deletions
diff --git a/src/lib/content_subtitle.h b/src/lib/content_subtitle.h
deleted file mode 100644
index 5a3e8157c..000000000
--- a/src/lib/content_subtitle.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
-
- This file is part of DCP-o-matic.
-
- DCP-o-matic is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- DCP-o-matic is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
-
-*/
-
-#ifndef DCPOMATIC_CONTENT_SUBTITLE_H
-#define DCPOMATIC_CONTENT_SUBTITLE_H
-
-#include "dcpomatic_time.h"
-#include "rect.h"
-#include "bitmap_text.h"
-#include <dcp/subtitle_string.h>
-#include <list>
-
-class Image;
-
-class ContentSubtitle
-{
-public:
- explicit ContentSubtitle (ContentTime f)
- : _from (f)
- {}
-
- ContentTime from () const {
- return _from;
- }
-
-private:
- ContentTime _from;
-};
-
-class ContentBitmapText : public ContentSubtitle
-{
-public:
- ContentBitmapText (ContentTime f, boost::shared_ptr<Image> im, dcpomatic::Rect<double> r)
- : ContentSubtitle (f)
- , sub (im, r)
- {}
-
- /* Our subtitle, with its rectangle unmodified by any offsets or scales that the content specifies */
- BitmapText sub;
-};
-
-/** A text subtitle. We store the time period separately (as well as in the dcp::SubtitleStrings)
- * as the dcp::SubtitleString timings are sometimes quite heavily quantised and this causes problems
- * when we want to compare the quantised periods to the unquantised ones.
- */
-class ContentTextSubtitle : public ContentSubtitle
-{
-public:
- ContentTextSubtitle (ContentTime f, std::list<dcp::SubtitleString> s)
- : ContentSubtitle (f)
- , subs (s)
- {}
-
- std::list<dcp::SubtitleString> subs;
-};
-
-#endif
diff --git a/src/lib/player.cc b/src/lib/player.cc
index 92e8141e1..4c9e216e1 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -44,7 +44,6 @@
#include "text_decoder.h"
#include "ffmpeg_content.h"
#include "audio_content.h"
-#include "content_subtitle.h"
#include "dcp_decoder.h"
#include "image_decoder.h"
#include "compose.hpp"
@@ -867,7 +866,7 @@ Player::bitmap_text_start (weak_ptr<Piece> wp, ContentBitmapText subtitle)
}
void
-Player::plain_text_start (weak_ptr<Piece> wp, ContentTextSubtitle subtitle)
+Player::plain_text_start (weak_ptr<Piece> wp, ContentPlainText subtitle)
{
shared_ptr<Piece> piece = wp.lock ();
if (!piece) {
diff --git a/src/lib/player.h b/src/lib/player.h
index b0ffe0e04..abc06721a 100644
--- a/src/lib/player.h
+++ b/src/lib/player.h
@@ -23,13 +23,13 @@
#include "player_subtitles.h"
#include "active_subtitles.h"
+#include "content_text.h"
#include "film.h"
#include "content.h"
#include "position_image.h"
#include "piece.h"
#include "content_video.h"
#include "content_audio.h"
-#include "content_subtitle.h"
#include "audio_stream.h"
#include "audio_merger.h"
#include "empty.h"
@@ -127,7 +127,7 @@ private:
void video (boost::weak_ptr<Piece>, ContentVideo);
void audio (boost::weak_ptr<Piece>, AudioStreamPtr, ContentAudio);
void bitmap_text_start (boost::weak_ptr<Piece>, ContentBitmapText);
- void plain_text_start (boost::weak_ptr<Piece>, ContentTextSubtitle);
+ void plain_text_start (boost::weak_ptr<Piece>, ContentPlainText);
void subtitle_stop (boost::weak_ptr<Piece>, ContentTime);
DCPTime one_video_frame () const;
void fill_audio (DCPTimePeriod period);
diff --git a/src/lib/text_decoder.cc b/src/lib/text_decoder.cc
index 8b825936a..a7271601d 100644
--- a/src/lib/text_decoder.cc
+++ b/src/lib/text_decoder.cc
@@ -94,7 +94,7 @@ TextDecoder::emit_plain_start (ContentTime from, list<dcp::SubtitleString> s)
}
}
- PlainStart (ContentTextSubtitle (from, s));
+ PlainStart (ContentPlainText (from, s));
_position = from;
}
diff --git a/src/lib/text_decoder.h b/src/lib/text_decoder.h
index 221ed6d37..f9d021b3f 100644
--- a/src/lib/text_decoder.h
+++ b/src/lib/text_decoder.h
@@ -24,7 +24,7 @@
#include "decoder.h"
#include "rect.h"
#include "types.h"
-#include "content_subtitle.h"
+#include "content_text.h"
#include "decoder_part.h"
#include <dcp/subtitle_string.h>
#include <boost/signals2.hpp>
@@ -63,7 +63,7 @@ public:
}
boost::signals2::signal<void (ContentBitmapText)> BitmapStart;
- boost::signals2::signal<void (ContentTextSubtitle)> PlainStart;
+ boost::signals2::signal<void (ContentPlainText)> PlainStart;
boost::signals2::signal<void (ContentTime)> Stop;
private: