Supporters update.
[dcpomatic.git] / src / lib / audio_merger.h
1 /*
2     Copyright (C) 2013-2017 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_MERGER_H
21 #define DCPOMATIC_AUDIO_MERGER_H
22
23 /** @file  src/audio_merger.h
24  *  @brief AudioMerger class.
25  */
26
27 #include "audio_buffers.h"
28 #include "dcpomatic_time.h"
29 #include "util.h"
30
31 /** @class AudioMerger.
32  *  @brief A class that can merge audio data from many sources.
33  */
34 class AudioMerger
35 {
36 public:
37         explicit AudioMerger (int frame_rate);
38
39         std::list<std::pair<boost::shared_ptr<AudioBuffers>, DCPTime> > pull (DCPTime time);
40         void push (boost::shared_ptr<const AudioBuffers> audio, DCPTime time);
41         void clear ();
42
43 private:
44         Frame frames (DCPTime t) const;
45
46         class Buffer
47         {
48         public:
49                 /** @param c Channels
50                  *  @param f Frames
51                  *  @param t Time
52                  *  @param r Frame rate.
53                  */
54                 Buffer (int c, int32_t f, DCPTime t, int r)
55                         : audio (new AudioBuffers (c, f))
56                         , time (t)
57                         , frame_rate (r)
58                 {}
59
60                 Buffer (boost::shared_ptr<AudioBuffers> a, DCPTime t, int r)
61                         : audio (a)
62                         , time (t)
63                         , frame_rate (r)
64                 {}
65
66                 boost::shared_ptr<AudioBuffers> audio;
67                 DCPTime time;
68                 int frame_rate;
69
70                 DCPTimePeriod period () const {
71                         return DCPTimePeriod (time, time + DCPTime::from_frames (audio->frames(), frame_rate));
72                 }
73         };
74
75         class BufferComparator
76         {
77         public:
78                 bool operator() (AudioMerger::Buffer const & a, AudioMerger::Buffer const & b)
79                 {
80                         return a.time < b.time;
81                 }
82         };
83
84         std::list<Buffer> _buffers;
85         int _frame_rate;
86 };
87
88 #endif