summaryrefslogtreecommitdiff
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
parent0fb9916d6734dbea4cb55b6d42923468aee45a40 (diff)
Remove old content_subtitle.
-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
-rw-r--r--src/wx/subtitle_view.cc4
-rw-r--r--src/wx/subtitle_view.h4
-rw-r--r--test/dcp_subtitle_test.cc12
-rw-r--r--wscript1
9 files changed, 17 insertions, 91 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:
diff --git a/src/wx/subtitle_view.cc b/src/wx/subtitle_view.cc
index 41bf4b049..a3d06106c 100644
--- a/src/wx/subtitle_view.cc
+++ b/src/wx/subtitle_view.cc
@@ -19,7 +19,7 @@
*/
#include "lib/plain_text_decoder.h"
-#include "lib/content_subtitle.h"
+#include "lib/content_text.h"
#include "lib/video_decoder.h"
#include "lib/audio_decoder.h"
#include "lib/film.h"
@@ -91,7 +91,7 @@ SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr<
}
void
-SubtitleView::data_start (ContentTextSubtitle cts)
+SubtitleView::data_start (ContentPlainText cts)
{
BOOST_FOREACH (dcp::SubtitleString const & i, cts.subs) {
wxListItem list_item;
diff --git a/src/wx/subtitle_view.h b/src/wx/subtitle_view.h
index 94ef52171..7272c608c 100644
--- a/src/wx/subtitle_view.h
+++ b/src/wx/subtitle_view.h
@@ -18,7 +18,7 @@
*/
-#include "lib/content_subtitle.h"
+#include "lib/content_text.h"
#include <boost/shared_ptr.hpp>
#include <wx/wx.h>
#include <wx/listctrl.h>
@@ -32,7 +32,7 @@ public:
SubtitleView (wxWindow *, boost::shared_ptr<Film>, boost::shared_ptr<Content> content, boost::shared_ptr<Decoder>, FilmViewer* viewer);
private:
- void data_start (ContentTextSubtitle cts);
+ void data_start (ContentPlainText cts);
void data_stop (ContentTime time);
void subtitle_selected (wxListEvent &);
diff --git a/test/dcp_subtitle_test.cc b/test/dcp_subtitle_test.cc
index 026fbd12a..9ea708ed5 100644
--- a/test/dcp_subtitle_test.cc
+++ b/test/dcp_subtitle_test.cc
@@ -32,7 +32,7 @@
#include "lib/dcp_content_type.h"
#include "lib/dcp_text_decoder.h"
#include "lib/text_content.h"
-#include "lib/content_subtitle.h"
+#include "lib/content_text.h"
#include "lib/font.h"
#include "lib/text_decoder.h"
#include "test.h"
@@ -43,10 +43,10 @@ using std::list;
using boost::shared_ptr;
using boost::optional;
-optional<ContentTextSubtitle> stored;
+optional<ContentPlainText> stored;
static void
-store (ContentTextSubtitle sub)
+store (ContentPlainText sub)
{
if (!stored) {
stored = sub;
@@ -93,7 +93,7 @@ BOOST_AUTO_TEST_CASE (dcp_subtitle_within_dcp_test)
shared_ptr<DCPDecoder> decoder (new DCPDecoder (content, film->log(), false));
decoder->subtitle->PlainStart.connect (bind (store, _1));
- stored = optional<ContentTextSubtitle> ();
+ stored = optional<ContentPlainText> ();
while (!decoder->pass() && !stored) {}
BOOST_REQUIRE (stored);
@@ -116,7 +116,7 @@ BOOST_AUTO_TEST_CASE (dcp_subtitle_test2)
shared_ptr<DCPTextDecoder> decoder (new DCPTextDecoder (content, film->log()));
decoder->subtitle->PlainStart.connect (bind (store, _1));
- stored = optional<ContentTextSubtitle> ();
+ stored = optional<ContentPlainText> ();
while (!decoder->pass ()) {
if (stored && stored->from() == ContentTime(0)) {
BOOST_CHECK_EQUAL (stored->subs.front().text(), "&lt;b&gt;Hello world!&lt;/b&gt;");
@@ -140,7 +140,7 @@ BOOST_AUTO_TEST_CASE (dcp_subtitle_test3)
BOOST_REQUIRE (!wait_for_jobs ());
shared_ptr<DCPTextDecoder> decoder (new DCPTextDecoder (content, film->log()));
- stored = optional<ContentTextSubtitle> ();
+ stored = optional<ContentPlainText> ();
while (!decoder->pass ()) {
decoder->subtitle->PlainStart.connect (bind (store, _1));
if (stored && stored->from() == ContentTime::from_seconds(0.08)) {
diff --git a/wscript b/wscript
index c8a049234..4d16d0504 100644
--- a/wscript
+++ b/wscript
@@ -99,6 +99,7 @@ def configure(conf):
'-Wwrite-strings',
# Remove auto_ptr warnings from libxml++-2.6
'-Wno-deprecated-declarations',
+ '-Wno-unsafe-loop-optimizations',
'-Wno-ignored-qualifiers',
'-D_FILE_OFFSET_BITS=64'])