X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_decoder.h;h=2b6e3f75879889e4e7b713a8b119b3179d0bdb23;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hp=cdb643ceeabef373aa5ada3f705168beed574766;hpb=936ff6927ad24daf0ed20776b19b6faa3df9bf83;p=dcpomatic.git diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index cdb643cee..2b6e3f758 100644 --- a/src/lib/audio_decoder.h +++ b/src/lib/audio_decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2016 Carl Hetherington + Copyright (C) 2012-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -29,41 +29,45 @@ #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 boost::enable_shared_from_this, public DecoderPart +class AudioDecoder : public std::enable_shared_from_this, public DecoderPart { public: - AudioDecoder (Decoder* parent, boost::shared_ptr, boost::shared_ptr log); + AudioDecoder (Decoder* parent, std::shared_ptr content, bool fast); - /** Try to fetch some audio from a specific place in this content. - * @param frame Frame to start from (after resampling, if applicable) - * @param length Frames to get (after resampling, if applicable) - * @param accurate true to try hard to return frames from exactly `frame', false if we don't mind nearby frames. - * @return Time-stamped audio data which may or may not be from the location (and of the length) requested. - */ - ContentAudio get (AudioStreamPtr stream, Frame time, Frame length, bool accurate); - - void set_fast (); - - void give (AudioStreamPtr stream, boost::shared_ptr, ContentTime); + boost::optional position (std::shared_ptr film) const; + void emit (std::shared_ptr film, AudioStreamPtr stream, std::shared_ptr, dcpomatic::ContentTime, bool time_already_delayed = false); + void seek (); void flush (); - void seek (ContentTime t, bool accurate); - boost::optional position () const; + dcpomatic::ContentTime stream_position (std::shared_ptr film, AudioStreamPtr stream) const; + + boost::signals2::signal Data; private: - /** An AudioDecoderStream object to manage each stream in _audio_content */ - typedef std::map > StreamMap; - StreamMap _streams; + void silence (int milliseconds); + + 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