f7ff5fc9652bf75495381c065e02e90d9606d0e8
[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 class Decoder;
33
34 class AudioDecoderStream
35 {
36 public:
37         AudioDecoderStream (boost::shared_ptr<const AudioContent>, AudioStreamPtr, Decoder* decoder, bool fast, boost::shared_ptr<Log> log);
38
39         ContentAudio get (Frame time, Frame length, bool accurate);
40         void audio (boost::shared_ptr<const AudioBuffers>, ContentTime);
41         void flush ();
42         void seek (ContentTime time, bool accurate);
43
44 private:
45
46         void reset_decoded ();
47         void add (boost::shared_ptr<const AudioBuffers>);
48
49         boost::shared_ptr<const AudioContent> _content;
50         AudioStreamPtr _stream;
51         Decoder* _decoder;
52         boost::shared_ptr<Log> _log;
53         boost::shared_ptr<Resampler> _resampler;
54         boost::optional<Frame> _position;
55         /** Currently-available decoded audio data */
56         ContentAudio _decoded;
57         /** The time of an accurate seek after which we have not yet received any actual
58             data at the seek time.
59         */
60         boost::optional<ContentTime> _seek_reference;
61 };
62
63 #endif