Use dcp::file_to_string().
[dcpomatic.git] / src / lib / audio_merger.h
1 /*
2     Copyright (C) 2013-2021 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
21 /** @file  src/audio_merger.h
22  *  @brief AudioMerger class.
23  */
24
25
26 #include "audio_buffers.h"
27 #include "dcpomatic_time.h"
28 #include "util.h"
29
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<std::shared_ptr<AudioBuffers>, dcpomatic::DCPTime>> pull (dcpomatic::DCPTime time);
40         void push (std::shared_ptr<const AudioBuffers> audio, dcpomatic::DCPTime time);
41         void clear ();
42
43 private:
44         Frame frames (dcpomatic::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, dcpomatic::DCPTime t, int r)
55                         : audio (new AudioBuffers (c, f))
56                         , time (t)
57                         , frame_rate (r)
58                 {}
59
60                 Buffer (std::shared_ptr<AudioBuffers> a, dcpomatic::DCPTime t, int r)
61                         : audio (a)
62                         , time (t)
63                         , frame_rate (r)
64                 {}
65
66                 std::shared_ptr<AudioBuffers> audio;
67                 dcpomatic::DCPTime time;
68                 int frame_rate;
69
70                 dcpomatic::DCPTimePeriod period () const {
71                         return dcpomatic::DCPTimePeriod (time, time + dcpomatic::DCPTime::from_frames (audio->frames(), frame_rate));
72                 }
73         };
74
75         std::list<Buffer> _buffers;
76         int _frame_rate;
77 };