X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_decoder.h;h=ba1520ef53adc72bd441fdb44f4f816ea4b0f701;hb=85c2c9250f86dcc685b6e93e1e671a64cc0a24f3;hp=5b68a51a17534d8f07f719927927bf022699f35b;hpb=09806bc8d6a48fc79d923ec1cdf6f90176bf8b6a;p=dcpomatic.git diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index 5b68a51a1..ba1520ef5 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-2017 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,35 +26,45 @@ #define DCPOMATIC_AUDIO_DECODER_H #include "decoder.h" -#include "content.h" -#include "audio_content.h" -#include "decoded.h" +#include "content_audio.h" +#include "audio_stream.h" +#include "decoder_part.h" +#include +#include class AudioBuffers; +class AudioContent; +class AudioDecoderStream; +class Log; 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, boost::shared_ptr); - - boost::shared_ptr audio_content () const { - return _audio_content; - } - - void seek (ContentTime time, bool accurate); - -protected: + AudioDecoder (Decoder* parent, boost::shared_ptr content, boost::shared_ptr log, bool fast); - void audio (boost::shared_ptr, ContentTime); + ContentTime position () const; + void emit (AudioStreamPtr stream, boost::shared_ptr, ContentTime); + void seek (); void flush (); - boost::shared_ptr _audio_content; - boost::shared_ptr _resampler; - boost::optional _audio_position; + ContentTime stream_position (AudioStreamPtr stream) const; + + /** @return Number of frames of data that were accepted */ + boost::signals2::signal Data; + +private: + void silence (int milliseconds); + + boost::shared_ptr _content; + /** Frame after the last one that was emitted from Data for each AudioStream */ + std::map _positions; + std::map > _resamplers; + + bool _fast; }; #endif