From 68798e3ed491d642bb52e3d70dbe9c204aeb614b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 8 Oct 2021 23:29:32 +0200 Subject: [PATCH 1/1] Cleanup some unused using statements and other bits. --- src/lib/dcp_subtitle_decoder.cc | 2 -- src/lib/string_text_file_decoder.cc | 19 +++++++++++-------- src/lib/text_decoder.cc | 1 - src/lib/writer.cc | 4 ---- 4 files changed, 11 insertions(+), 15 deletions(-) diff --git a/src/lib/dcp_subtitle_decoder.cc b/src/lib/dcp_subtitle_decoder.cc index 024d62f34..b3240491f 100644 --- a/src/lib/dcp_subtitle_decoder.cc +++ b/src/lib/dcp_subtitle_decoder.cc @@ -28,13 +28,11 @@ using std::cout; using std::list; -using std::map; using std::string; using std::vector; using std::shared_ptr; using std::dynamic_pointer_cast; using std::make_shared; -using boost::bind; using namespace dcpomatic; diff --git a/src/lib/string_text_file_decoder.cc b/src/lib/string_text_file_decoder.cc index f24147851..d366bedc0 100644 --- a/src/lib/string_text_file_decoder.cc +++ b/src/lib/string_text_file_decoder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2018 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,6 +18,7 @@ */ + #include "string_text_file_decoder.h" #include "string_text_file_content.h" #include "text_content.h" @@ -25,16 +26,15 @@ #include #include -using std::list; -using std::vector; -using std::string; + using std::cout; -using std::max; +using std::make_shared; using std::shared_ptr; -using boost::optional; -using std::dynamic_pointer_cast; +using std::string; +using std::vector; using namespace dcpomatic; + StringTextFileDecoder::StringTextFileDecoder (shared_ptr film, shared_ptr content) : Decoder (film) , StringTextFile (content) @@ -44,9 +44,10 @@ StringTextFileDecoder::StringTextFileDecoder (shared_ptr film, share if (!_subtitles.empty()) { first = content_time_period(_subtitles[0]).from; } - text.push_back (shared_ptr (new TextDecoder (this, content->only_text(), first))); + text.push_back (make_shared(this, content->only_text(), first)); } + void StringTextFileDecoder::seek (ContentTime time, bool accurate) { @@ -66,6 +67,7 @@ StringTextFileDecoder::seek (ContentTime time, bool accurate) } } + bool StringTextFileDecoder::pass () { @@ -80,6 +82,7 @@ StringTextFileDecoder::pass () return false; } + ContentTimePeriod StringTextFileDecoder::content_time_period (sub::Subtitle s) const { diff --git a/src/lib/text_decoder.cc b/src/lib/text_decoder.cc index 8111154e3..88f7cd4a9 100644 --- a/src/lib/text_decoder.cc +++ b/src/lib/text_decoder.cc @@ -36,7 +36,6 @@ using std::min; using std::max; using std::shared_ptr; using boost::optional; -using std::function; using namespace dcpomatic; diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 66239c537..8b51eb587 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -54,13 +54,9 @@ using std::cout; using std::dynamic_pointer_cast; -using std::list; -using std::make_pair; using std::make_shared; -using std::map; using std::max; using std::min; -using std::pair; using std::shared_ptr; using std::string; using std::vector; -- 2.30.2