Missed update to private test repo version.
[dcpomatic.git] / src / lib / audio_buffers.h
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/audio_buffers.h
22  *  @brief AudioBuffers class.
23  */
24
25 #ifndef DCPOMATIC_AUDIO_BUFFERS_H
26 #define DCPOMATIC_AUDIO_BUFFERS_H
27
28 #include <boost/shared_ptr.hpp>
29 #include <stdint.h>
30
31 /** @class AudioBuffers
32  *  @brief A class to hold multi-channel audio data in float format.
33  *
34  *  The use of int32_t for frame counts in this class is due to the
35  *  round-up to the next power-of-2 code in ensure_size(); if that
36  *  were changed the frame count could use any integer type.
37  */
38 class AudioBuffers
39 {
40 public:
41         AudioBuffers (int channels, int32_t frames);
42         AudioBuffers (AudioBuffers const &);
43         explicit AudioBuffers (boost::shared_ptr<const AudioBuffers>);
44         ~AudioBuffers ();
45
46         AudioBuffers & operator= (AudioBuffers const &);
47
48         boost::shared_ptr<AudioBuffers> clone () const;
49         boost::shared_ptr<AudioBuffers> channel (int) const;
50
51         void ensure_size (int32_t);
52
53         float** data () const {
54                 return _data;
55         }
56
57         float* data (int) const;
58
59         int channels () const {
60                 return _channels;
61         }
62
63         int frames () const {
64                 return _frames;
65         }
66
67         void set_frames (int32_t f);
68
69         void make_silent ();
70         void make_silent (int c);
71         void make_silent (int32_t from, int32_t frames);
72
73         void apply_gain (float);
74
75         void copy_from (AudioBuffers const * from, int32_t frames_to_copy, int32_t read_offset, int32_t write_offset);
76         void copy_channel_from (AudioBuffers const * from, int from_channel, int to_channel);
77         void move (int32_t frames, int32_t from, int32_t to);
78         void accumulate_channel (AudioBuffers const * from, int from_channel, int to_channel, float gain = 1);
79         void accumulate_frames (AudioBuffers const * from, int32_t frames, int32_t read_offset, int32_t write_offset);
80         void append (boost::shared_ptr<const AudioBuffers> other);
81         void trim_start (int32_t frames);
82
83 private:
84         void allocate (int channels, int32_t frames);
85         void deallocate ();
86
87         /** Number of channels */
88         int _channels;
89         /** Number of frames (where a frame is one sample across all channels) */
90         int32_t _frames;
91         /** Number of frames that _data can hold */
92         int32_t _allocated_frames;
93         /** Audio data (so that, e.g. _data[2][6] is channel 2, sample 6) */
94         float** _data;
95 };
96
97 #endif