diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-08 21:32:44 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-08 21:32:44 +0200 |
| commit | 3339d3bce70afe9ae2ca10e9fcfc4b54b748fbf4 (patch) | |
| tree | 9cac355432ba25cc3d43017382d73e0640f50996 /src/lib/audio_decoder.h | |
| parent | 00762c2d9a4240d016150cd7555aee3dad8542ae (diff) | |
Assorted C++11/formatting cleanups.
Diffstat (limited to 'src/lib/audio_decoder.h')
| -rw-r--r-- | src/lib/audio_decoder.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index 2b6e3f758..754321880 100644 --- a/src/lib/audio_decoder.h +++ b/src/lib/audio_decoder.h @@ -18,19 +18,23 @@ */ + /** @file src/lib/audio_decoder.h * @brief Parent class for audio decoders. */ + #ifndef DCPOMATIC_AUDIO_DECODER_H #define DCPOMATIC_AUDIO_DECODER_H + #include "decoder.h" #include "content_audio.h" #include "audio_stream.h" #include "decoder_part.h" #include <boost/signals2.hpp> + class AudioBuffers; class AudioContent; class AudioDecoderStream; @@ -38,6 +42,7 @@ class Log; class Film; class Resampler; + /** @class AudioDecoder. * @brief Parent class for audio decoders. */ @@ -64,10 +69,11 @@ private: */ typedef std::map<AudioStreamPtr, Frame> PositionMap; PositionMap _positions; - typedef std::map<AudioStreamPtr, std::shared_ptr<Resampler> > ResamplerMap; + typedef std::map<AudioStreamPtr, std::shared_ptr<Resampler>> ResamplerMap; ResamplerMap _resamplers; bool _fast; }; + #endif |
