Fix merging of audio in various circumstances.
[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 #include "audio_buffers.h"
21 #include "dcpomatic_time.h"
22 #include "util.h"
23
24 class AudioMerger
25 {
26 public:
27         AudioMerger (int frame_rate);
28
29         /** Pull audio up to a given time; after this call, no more data can be pushed
30          *  before the specified time.
31          */
32         std::list<std::pair<boost::shared_ptr<AudioBuffers>, DCPTime> > pull (DCPTime time);
33         void push (boost::shared_ptr<const AudioBuffers> audio, DCPTime time);
34
35 private:
36         class Buffer
37         {
38         public:
39                 /** @param c Channels
40                  *  @param f Frames
41                  *  @param t Time
42                  *  @param r Frame rate.
43                  */
44                 Buffer (int c, int32_t f, DCPTime t, int r)
45                         : audio (new AudioBuffers (c, f))
46                         , time (t)
47                         , frame_rate (r)
48                 {}
49
50                 Buffer (boost::shared_ptr<AudioBuffers> a, DCPTime t, int r)
51                         : audio (a)
52                         , time (t)
53                         , frame_rate (r)
54                 {}
55
56                 boost::shared_ptr<AudioBuffers> audio;
57                 DCPTime time;
58                 int frame_rate;
59
60                 DCPTimePeriod period () const {
61                         return DCPTimePeriod (time, time + DCPTime::from_frames (audio->frames(), frame_rate));
62                 }
63         };
64
65         class BufferComparator
66         {
67         public:
68                 bool operator() (AudioMerger::Buffer const & a, AudioMerger::Buffer const & b)
69                 {
70                         return a.time < b.time;
71                 }
72         };
73
74         std::list<Buffer> _buffers;
75         DCPTime _last_pull;
76         int _frame_rate;
77 };