X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.cc;h=6078141dcfab4d0f84fff1026154106ff389595d;hb=9a27d60ea7888d300a5a2414a477091428589b82;hp=30009460fc7b67543d6eedc4f3fe50d9b8c7d192;hpb=2e536ef0971edefea23810b99f7706881072783b;p=dcpomatic.git diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 30009460f..6078141dc 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -1,73 +1,77 @@ /* - 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 "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; -/** @param f Film. - * @param o Decode options. - */ -Decoder::Decoder (boost::shared_ptr f, DecodeOptions o) - : _film (f) - , _opt (o) +/** @return Earliest time of content that the next pass() will emit */ +ContentTime +Decoder::position () const { - _film_connection = f->Changed.connect (bind (&Decoder::film_changed, this, _1)); + optional pos; + + if (video && !video->ignore() && (!pos || video->position() < *pos)) { + pos = video->position(); + } + + if (audio && !audio->ignore() && (!pos || audio->position() < *pos)) { + pos = audio->position(); + } + + BOOST_FOREACH (shared_ptr i, text) { + if (!i->ignore() && (!pos || i->position() < *pos)) { + pos = i->position(); + } + } + + return pos.get_value_or(ContentTime()); } -/** Seek to a position as a source timestamp in seconds. - * @return true on error. - */ -bool -Decoder::seek (double) +void +Decoder::seek (ContentTime, bool) { - throw DecodeError ("decoder does not support seek"); + if (video) { + video->seek (); + } + if (audio) { + audio->seek (); + } + BOOST_FOREACH (shared_ptr i, text) { + i->seek (); + } } -/** 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::only_text () const { - throw DecodeError ("decoder does not support seek"); + DCPOMATIC_ASSERT (text.size() < 2); + if (text.empty ()) { + return shared_ptr (); + } + return text.front (); }