Re-analyse audio when DCP channel count changes (#1189).
[dcpomatic.git] / src / lib / audio_ring_buffers.cc
1 /*
2     Copyright (C) 2016-2018 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_ring_buffers.h"
22 #include "dcpomatic_assert.h"
23 #include "exceptions.h"
24 #include <boost/foreach.hpp>
25 #include <iostream>
26
27 using std::min;
28 using std::cout;
29 using std::make_pair;
30 using std::pair;
31 using std::list;
32 using boost::shared_ptr;
33 using boost::optional;
34
35 AudioRingBuffers::AudioRingBuffers ()
36         : _used_in_head (0)
37 {
38
39 }
40
41 /** @param frame_rate Frame rate in use; this is only used to check timing consistency of the incoming data */
42 void
43 AudioRingBuffers::put (shared_ptr<const AudioBuffers> data, DCPTime time, int frame_rate)
44 {
45         boost::mutex::scoped_lock lm (_mutex);
46
47         if (!_buffers.empty()) {
48                 DCPOMATIC_ASSERT (_buffers.front().first->channels() == data->channels());
49                 if ((_buffers.back().second + DCPTime::from_frames(_buffers.back().first->frames(), frame_rate)) != time) {
50                         cout << "bad put " << to_string(_buffers.back().second) << " " << _buffers.back().first->frames() << " " << to_string(time) << "\n";
51                 }
52                 DCPOMATIC_ASSERT ((_buffers.back().second + DCPTime::from_frames(_buffers.back().first->frames(), frame_rate)) == time);
53         }
54
55         _buffers.push_back(make_pair(data, time));
56 }
57
58 /** @return time of the returned data; if it's not set this indicates an underrun */
59 optional<DCPTime>
60 AudioRingBuffers::get (float* out, int channels, int frames)
61 {
62         boost::mutex::scoped_lock lm (_mutex);
63
64         optional<DCPTime> time;
65
66         while (frames > 0) {
67                 if (_buffers.empty ()) {
68                         for (int i = 0; i < frames; ++i) {
69                                 for (int j = 0; j < channels; ++j) {
70                                         *out++ = 0;
71                                 }
72                         }
73                         cout << "audio underrun; missing " << frames << "!\n";
74                         return time;
75                 }
76
77                 pair<shared_ptr<const AudioBuffers>, DCPTime> front = _buffers.front ();
78                 if (!time) {
79                         time = front.second + DCPTime::from_frames(_used_in_head, 48000);
80                 }
81
82                 int const to_do = min (frames, front.first->frames() - _used_in_head);
83                 float** p = front.first->data();
84                 int const c = min (front.first->channels(), channels);
85                 for (int i = 0; i < to_do; ++i) {
86                         for (int j = 0; j < c; ++j) {
87                                 *out++ = p[j][i + _used_in_head];
88                         }
89                         for (int j = c; j < channels; ++j) {
90                                 *out++ = 0;
91                         }
92                 }
93                 _used_in_head += to_do;
94                 frames -= to_do;
95
96                 if (_used_in_head == front.first->frames()) {
97                         _buffers.pop_front ();
98                         _used_in_head = 0;
99                 }
100         }
101
102         return time;
103 }
104
105 void
106 AudioRingBuffers::clear ()
107 {
108         boost::mutex::scoped_lock lm (_mutex);
109         _buffers.clear ();
110         _used_in_head = 0;
111 }
112
113 Frame
114 AudioRingBuffers::size () const
115 {
116         boost::mutex::scoped_lock lm (_mutex);
117         Frame s = 0;
118         for (list<pair<shared_ptr<const AudioBuffers>, DCPTime> >::const_iterator i = _buffers.begin(); i != _buffers.end(); ++i) {
119                 s += i->first->frames();
120         }
121         return s - _used_in_head;
122 }