80ccc4cdba0935c138820fef3cc9aad87044235a
[dcpomatic.git] / src / lib / audio_stream.h
1 /*
2     Copyright (C) 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_STREAM_H
21 #define DCPOMATIC_AUDIO_STREAM_H
22
23 #include "audio_mapping.h"
24 #include <boost/thread/mutex.hpp>
25
26 struct audio_sampling_rate_test;
27
28 class AudioStream
29 {
30 public:
31         AudioStream (int frame_rate, int channels);
32         AudioStream (int frame_rate, AudioMapping mapping);
33
34         void set_mapping (AudioMapping mapping);
35         void set_frame_rate (int frame_rate);
36
37         AudioMapping mapping () const {
38                 boost::mutex::scoped_lock lm (_mutex);
39                 return _mapping;
40         }
41
42         int frame_rate () const {
43                 boost::mutex::scoped_lock lm (_mutex);
44                 return _frame_rate;
45         }
46
47         int channels () const;
48
49 protected:
50         mutable boost::mutex _mutex;
51
52 private:
53         friend struct audio_sampling_rate_test;
54
55         int _frame_rate;
56         AudioMapping _mapping;
57 };
58
59 typedef boost::shared_ptr<AudioStream> AudioStreamPtr;
60
61 #endif