X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.cc;h=52e8c04e6984f26d389d74ec61189fa80f749a69;hb=0897057954047eabfe4df9bdab0cc548fe1c68bf;hp=52b22fa067955b48341b40947a728161f65c6152;hpb=dd7cf1ef6e860243b80f4c47a99393244f63a3d5;p=dcpomatic.git diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 52b22fa06..52e8c04e6 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -1,75 +1,93 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2018 Carl Hetherington - This program is free software; you can redistribute it and/or modify + 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. - This program is distributed in the hope that it will be useful, + 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 this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ -/** @file src/decoder.cc - * @brief Parent class for decoders of content. - */ - -#include -#include -#include -#include "film.h" -#include "format.h" -#include "options.h" -#include "exceptions.h" -#include "image.h" -#include "util.h" -#include "log.h" #include "decoder.h" -#include "delay_line.h" -#include "subtitle.h" -#include "filter_graph.h" - -#include "i18n.h" +#include "video_decoder.h" +#include "audio_decoder.h" +#include "text_decoder.h" +#include +#include -using std::string; -using std::stringstream; -using std::min; -using std::pair; -using std::list; -using boost::shared_ptr; +using std::cout; using boost::optional; +using boost::shared_ptr; +using boost::weak_ptr; + +Decoder::Decoder (weak_ptr film) + : _film (film) +{ + +} + +/** @return Earliest time of content that the next pass() will emit */ +ContentTime +Decoder::position () const +{ + optional pos; + shared_ptr f = film(); + + if (video && !video->ignore() && (!pos || video->position(f) < *pos)) { + pos = video->position(f); + } + + if (audio && !audio->ignore() && (!pos || audio->position(f) < *pos)) { + pos = audio->position(f); + } + + BOOST_FOREACH (shared_ptr i, text) { + if (!i->ignore() && (!pos || i->position(f) < *pos)) { + pos = i->position(f); + } + } + + return pos.get_value_or(ContentTime()); +} -/** @param f Film. - * @param o Decode options. - */ -Decoder::Decoder (boost::shared_ptr f, DecodeOptions o) - : _film (f) - , _opt (o) +void +Decoder::seek (ContentTime, bool) { - _film_connection = f->Changed.connect (bind (&Decoder::film_changed, this, _1)); + if (video) { + video->seek (); + } + if (audio) { + audio->seek (); + } + BOOST_FOREACH (shared_ptr i, text) { + i->seek (); + } } -/** Seek to a position as a source timestamp in seconds. - * @return true on error. - */ -bool -Decoder::seek (double) +shared_ptr +Decoder::only_text () const { - throw DecodeError (N_("decoder does not support seek")); + DCPOMATIC_ASSERT (text.size() < 2); + if (text.empty ()) { + return shared_ptr (); + } + return text.front (); } -/** Seek so that the next frame we will produce is the same as the last one. - * @return true on error. - */ -bool -Decoder::seek_to_last () +shared_ptr +Decoder::film () const { - throw DecodeError (N_("decoder does not support seek")); + shared_ptr f = _film.lock (); + DCPOMATIC_ASSERT (f); + return f; }