X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_decoder.h;h=a8495aaa8b16cdd1090f09923f6f4084bc43ffa0;hb=fe0684e9bd2bc814fd0adeda3953cec9295a0f12;hp=cfe94b5283dc48c06a83e516b526c789dae46861;hpb=63ec6f067fb6de3f65a03237fabb4f687cf74d4b;p=dcpomatic.git diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index cfe94b528..a8495aaa8 100644 --- a/src/lib/audio_decoder.h +++ b/src/lib/audio_decoder.h @@ -1,58 +1,79 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2021 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/lib/audio_decoder.h * @brief Parent class for audio decoders. */ -#ifndef DVDOMATIC_AUDIO_DECODER_H -#define DVDOMATIC_AUDIO_DECODER_H -#include "audio_source.h" -#include "stream.h" +#ifndef DCPOMATIC_AUDIO_DECODER_H +#define DCPOMATIC_AUDIO_DECODER_H + + +#include "audio_stream.h" +#include "content_audio.h" #include "decoder.h" +#include "decoder_part.h" +#include + + +class AudioBuffers; +class AudioContent; +class AudioDecoderStream; +class Log; +class Film; +class Resampler; + /** @class AudioDecoder. * @brief Parent class for audio decoders. */ -class AudioDecoder : public TimedAudioSource, public virtual Decoder +class AudioDecoder : public std::enable_shared_from_this, public DecoderPart { public: - AudioDecoder (boost::shared_ptr, DecodeOptions); + AudioDecoder (Decoder* parent, std::shared_ptr content, bool fast); + + boost::optional position (std::shared_ptr film) const override; + void emit (std::shared_ptr film, AudioStreamPtr stream, std::shared_ptr, dcpomatic::ContentTime, bool time_already_delayed = false); + void seek () override; + void flush (); - virtual void set_audio_stream (boost::shared_ptr); + dcpomatic::ContentTime stream_position (std::shared_ptr film, AudioStreamPtr stream) const; - /** @return Audio stream that we are using */ - boost::shared_ptr audio_stream () const { - return _audio_stream; - } + boost::signals2::signal Data; - /** @return All available audio streams */ - std::vector > audio_streams () const { - return _audio_streams; - } +private: + void silence (AudioStreamPtr stream, int milliseconds); -protected: - /** Audio stream that we are using */ - boost::shared_ptr _audio_stream; - /** All available audio streams */ - std::vector > _audio_streams; + std::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; + + bool _fast; }; + #endif