90269a0f41d132e1f8303fd687926c27dd5ff663
[dcpomatic.git] / src / lib / audio_decoder_stream.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_AUDIO_DECODER_STREAM_H
21 #define DCPOMATIC_AUDIO_DECODER_STREAM_H
22
23 #include "audio_stream.h"
24 #include "content_audio.h"
25 #include "dcpomatic_time.h"
26 #include <boost/shared_ptr.hpp>
27
28 class AudioContent;
29 class AudioDecoder;
30 class Resampler;
31 class Log;
32
33 class AudioDecoderStream
34 {
35 public:
36         AudioDecoderStream (boost::shared_ptr<const AudioContent>, AudioStreamPtr, AudioDecoder* decoder, boost::shared_ptr<Log> log);
37
38         ContentAudio get (Frame time, Frame length, bool accurate);
39         void audio (boost::shared_ptr<const AudioBuffers>, ContentTime);
40         void flush ();
41         void seek (ContentTime time, bool accurate);
42
43 private:
44
45         void reset_decoded ();
46         void add (boost::shared_ptr<const AudioBuffers>);
47
48         boost::shared_ptr<const AudioContent> _content;
49         AudioStreamPtr _stream;
50         AudioDecoder* _decoder;
51         boost::shared_ptr<Log> _log;
52         boost::shared_ptr<Resampler> _resampler;
53         boost::optional<Frame> _position;
54         /** Currently-available decoded audio data */
55         ContentAudio _decoded;
56         /** The time of an accurate seek after which we have not yet received any actual
57             data at the seek time.
58         */
59         boost::optional<ContentTime> _seek_reference;
60 };
61
62 #endif