X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.cc;h=0d4f4babfa9db0831650529ae4ead927260dc7f3;hb=35e9a698ba3ca35fd488b3622e441956632261cf;hp=7066b488e6507352320c06767caaa216218c0275;hpb=21d3f3889ede9bd4b2c48424715e44ad2c405500;p=dcpomatic.git diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 7066b488e..0d4f4babf 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -1,76 +1,61 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2016 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 "job.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 "subtitle_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; -/** @param f Film. - * @param o Options. - * @param j Job that we are running within, or 0 - */ -Decoder::Decoder (boost::shared_ptr f, boost::shared_ptr o, Job* j) - : _film (f) - , _opt (o) - , _job (j) +/** @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; -/** Seek to a position as a source timestamp in seconds. - * @return true on error. - */ -bool -Decoder::seek (double) -{ - throw DecodeError ("decoder does not support seek"); + if (video && !video->ignore() && (!pos || video->position() < *pos)) { + pos = video->position(); + } + + if (audio && !audio->ignore() && (!pos || audio->position() < *pos)) { + pos = audio->position(); + } + + if (subtitle && !subtitle->ignore() && (!pos || subtitle->position() < *pos)) { + pos = subtitle->position(); + } + + return pos.get_value_or(ContentTime()); } -/** 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 () +void +Decoder::seek (ContentTime, bool) { - throw DecodeError ("decoder does not support seek"); + if (audio) { + audio->seek (); + } + if (subtitle) { + subtitle->seek (); + } }