X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_decoder.h;h=d81a1c7c804eaef70e0444bc19c06c86c16ebcb1;hb=5eb8b5c3a1566aef638e9d9df03b88d320735092;hp=2ad53da8bf42684e544e753bc6b0ca4708c72d19;hpb=373f010a7f04add1f49169cbaa60cb7ae5f508d4;p=dcpomatic.git diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index 2ad53da8b..d81a1c7c8 100644 --- a/src/lib/audio_decoder.h +++ b/src/lib/audio_decoder.h @@ -1,19 +1,20 @@ /* - 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 . */ @@ -25,26 +26,50 @@ #define DCPOMATIC_AUDIO_DECODER_H #include "decoder.h" -#include "content.h" -#include "audio_content.h" +#include "content_audio.h" +#include "audio_stream.h" +#include "decoder_part.h" +#include +#include class AudioBuffers; +class AudioContent; +class AudioDecoderStream; +class Log; +class Film; +class Resampler; /** @class AudioDecoder. * @brief Parent class for audio decoders. */ -class AudioDecoder : public virtual Decoder +class AudioDecoder : public boost::enable_shared_from_this, public DecoderPart { public: - AudioDecoder (boost::shared_ptr); + AudioDecoder (Decoder* parent, boost::shared_ptr content, bool fast); + + boost::optional position (boost::shared_ptr film) const; + void emit (boost::shared_ptr film, AudioStreamPtr stream, boost::shared_ptr, dcpomatic::ContentTime); + void seek (); + void flush (); + + dcpomatic::ContentTime stream_position (boost::shared_ptr film, AudioStreamPtr stream) const; + + /** @return Number of frames of data that were accepted */ + boost::signals2::signal Data; - /** Emitted when some audio data is ready */ - boost::signals2::signal, AudioContent::Frame)> Audio; +private: + void silence (int milliseconds); -protected: + boost::shared_ptr _content; + /** Frame after the last one that was emitted from Data (i.e. at the resampled rate, if applicable) + * for each AudioStream. + */ + typedef std::map PositionMap; + PositionMap _positions; + typedef std::map > ResamplerMap; + ResamplerMap _resamplers; - void audio (boost::shared_ptr, AudioContent::Frame); - AudioContent::Frame _audio_position; + bool _fast; }; #endif