Another macOS std::list boost::thread SNAFU.
[dcpomatic.git] / src / lib / audio_delay.cc
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "audio_delay.h"
22 #include "audio_buffers.h"
23 #include "dcpomatic_assert.h"
24 #include <iostream>
25
26 using std::cout;
27 using boost::shared_ptr;
28
29 AudioDelay::AudioDelay (int samples)
30         : _samples (samples)
31 {
32
33 }
34
35 shared_ptr<AudioBuffers>
36 AudioDelay::run (shared_ptr<const AudioBuffers> in)
37 {
38         /* You can't call this with varying channel counts */
39         DCPOMATIC_ASSERT (!_tail || in->channels() == _tail->channels());
40
41         shared_ptr<AudioBuffers> out (new AudioBuffers (in->channels(), in->frames()));
42
43         if (in->frames() > _samples) {
44
45                 if (!_tail) {
46                         /* No tail; use silence */
47                         out->make_silent (0, _samples);
48                 } else {
49                         /* Copy tail */
50                         out->copy_from (_tail.get(), _samples, 0, 0);
51                 }
52
53                 /* Copy in to out */
54                 out->copy_from (in.get(), in->frames() - _samples, 0, _samples);
55
56                 /* Keep tail */
57                 if (!_tail) {
58                         _tail.reset (new AudioBuffers (in->channels(), _samples));
59                 }
60                 _tail->copy_from (in.get(), _samples, in->frames() - _samples, 0);
61
62         } else {
63
64                 /* First part of the tail into the output */
65                 if (_tail) {
66                         out->copy_from (_tail.get(), out->frames(), 0, 0);
67                 } else {
68                         out->make_silent ();
69                         _tail.reset (new AudioBuffers (out->channels(), _samples));
70                         _tail->make_silent ();
71                 }
72
73                 /* Shuffle the tail down */
74                 _tail->move (_tail->frames() - out->frames(), out->frames(), 0);
75
76                 /* Copy input into the tail */
77                 _tail->copy_from (in.get(), in->frames(), 0, _tail->frames() - in->frames());
78         }
79
80         return out;
81 }
82
83 void
84 AudioDelay::flush ()
85 {
86         _tail.reset ();
87 }