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