Debug.
[dcpomatic.git] / src / lib / audio_merger.cc
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.cc
21  *  @brief AudioMerger class.
22  */
23
24 #include "audio_merger.h"
25 #include "dcpomatic_time.h"
26 #include "dcpomatic_log.h"
27 #include <iostream>
28
29 using std::pair;
30 using std::min;
31 using std::max;
32 using std::list;
33 using std::cout;
34 using std::make_pair;
35 using boost::shared_ptr;
36 using boost::optional;
37
38 AudioMerger::AudioMerger (int frame_rate)
39         : _frame_rate (frame_rate)
40 {
41
42 }
43
44 Frame
45 AudioMerger::frames (DCPTime t) const
46 {
47         return t.frames_floor (_frame_rate);
48 }
49
50 /** Pull audio up to a given time; after this call, no more data can be pushed
51  *  before the specified time.
52  *  @param time Time to pull up to.
53  *  @return Blocks of merged audio up to `time'.
54  */
55 list<pair<shared_ptr<AudioBuffers>, DCPTime> >
56 AudioMerger::pull (DCPTime time)
57 {
58         list<pair<shared_ptr<AudioBuffers>, DCPTime> > out;
59
60         list<Buffer> new_buffers;
61
62         _buffers.sort (AudioMerger::BufferComparator());
63         BOOST_FOREACH (Buffer i, _buffers) {
64                 if (i.period().to <= time) {
65                         /* Completely within the pull period */
66                         DCPOMATIC_ASSERT (i.audio->frames() > 0);
67                         out.push_back (make_pair (i.audio, i.time));
68                 } else if (i.time < time) {
69                         /* Overlaps the end of the pull period */
70                         shared_ptr<AudioBuffers> audio (new AudioBuffers (i.audio->channels(), frames(DCPTime(time - i.time))));
71                         /* Though time > i.time, audio->frames() could be 0 if the difference in time is less than one frame */
72                         if (audio->frames() > 0) {
73                                 LOG_GENERAL("copy_from #1; pulling from %2", to_string(time));
74                                 audio->copy_from (i.audio.get(), audio->frames(), 0, 0);
75                                 out.push_back (make_pair (audio, i.time));
76                                 i.audio->trim_start (audio->frames ());
77                                 i.time += DCPTime::from_frames(audio->frames(), _frame_rate);
78                                 DCPOMATIC_ASSERT (i.audio->frames() > 0);
79                                 new_buffers.push_back (i);
80                         }
81                 } else {
82                         /* Not involved */
83                         DCPOMATIC_ASSERT (i.audio->frames() > 0);
84                         new_buffers.push_back (i);
85                 }
86         }
87
88         _buffers = new_buffers;
89
90         for (list<pair<shared_ptr<AudioBuffers>, DCPTime> >::const_iterator i = out.begin(); i != out.end(); ++i) {
91                 DCPOMATIC_ASSERT (i->first->frames() > 0);
92         }
93
94         return out;
95 }
96
97 /** Push some data into the merger at a given time */
98 void
99 AudioMerger::push (boost::shared_ptr<const AudioBuffers> audio, DCPTime time)
100 {
101         DCPOMATIC_ASSERT (audio->frames() > 0);
102
103         DCPTimePeriod period (time, time + DCPTime::from_frames (audio->frames(), _frame_rate));
104
105         /* Mix any overlapping parts of this new block with existing ones */
106         BOOST_FOREACH (Buffer i, _buffers) {
107                 optional<DCPTimePeriod> overlap = i.period().overlap (period);
108                 if (overlap) {
109                         int32_t const offset = frames(DCPTime(overlap->from - i.time));
110                         int32_t const frames_to_mix = frames(overlap->duration());
111                         if (i.time < time) {
112                                 i.audio->accumulate_frames(audio.get(), frames_to_mix, 0, offset);
113                         } else {
114                                 i.audio->accumulate_frames(audio.get(), frames_to_mix, offset, 0);
115                         }
116                 }
117         }
118
119         list<DCPTimePeriod> periods;
120         BOOST_FOREACH (Buffer i, _buffers) {
121                 periods.push_back (i.period ());
122         }
123
124         /* Add the non-overlapping parts */
125         BOOST_FOREACH (DCPTimePeriod i, subtract (period, periods)) {
126                 list<Buffer>::iterator before = _buffers.end();
127                 list<Buffer>::iterator after = _buffers.end();
128                 for (list<Buffer>::iterator j = _buffers.begin(); j != _buffers.end(); ++j) {
129                         if (j->period().to == i.from) {
130                                 before = j;
131                         }
132                         if (j->period().from == i.to) {
133                                 after = j;
134                         }
135                 }
136
137                 /* Get the part of audio that we want to use */
138                 shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), frames(i.to) - frames(i.from)));
139                 LOG_GENERAL_NC("copy_from #2");
140                 part->copy_from (audio.get(), part->frames(), frames(DCPTime(i.from - time)), 0);
141
142                 if (before == _buffers.end() && after == _buffers.end()) {
143                         /* New buffer */
144                         DCPOMATIC_ASSERT (part->frames() > 0);
145                         _buffers.push_back (Buffer (part, time, _frame_rate));
146                 } else if (before != _buffers.end() && after == _buffers.end()) {
147                         /* We have an existing buffer before this one; append new data to it */
148                         before->audio->append (part);
149                 } else if (before ==_buffers.end() && after != _buffers.end()) {
150                         /* We have an existing buffer after this one; append it to the new data and replace */
151                         part->append (after->audio);
152                         after->audio = part;
153                         after->time = time;
154                 } else {
155                         /* We have existing buffers both before and after; coalesce them all */
156                         before->audio->append (part);
157                         before->audio->append (after->audio);
158                         _buffers.erase (after);
159                 }
160         }
161 }
162
163 void
164 AudioMerger::clear ()
165 {
166         _buffers.clear ();
167 }