]> git.sesse.net Git - nageru/blob - nageru/alsa_input.cpp
Use ALSA timestamps for marking input data.
[nageru] / nageru / alsa_input.cpp
1 #include "alsa_input.h"
2
3 #include <alsa/error.h>
4 #include <assert.h>
5 #include <errno.h>
6 #include <stdio.h>
7 #include <unistd.h>
8 #include <cstdint>
9
10 #include "alsa_pool.h"
11 #include "bmusb/bmusb.h"
12 #include "shared/timebase.h"
13
14 using namespace std;
15 using namespace std::chrono;
16 using namespace std::placeholders;
17
18 #define RETURN_ON_ERROR(msg, expr) do {                                                    \
19         int err = (expr);                                                                  \
20         if (err < 0) {                                                                     \
21                 fprintf(stderr, "[%s] " msg ": %s\n", device.c_str(), snd_strerror(err));  \
22                 if (err == -ENODEV) return CaptureEndReason::DEVICE_GONE;                  \
23                 return CaptureEndReason::OTHER_ERROR;                                      \
24         }                                                                                  \
25 } while (false)
26
27 #define RETURN_FALSE_ON_ERROR(msg, expr) do {                                              \
28         int err = (expr);                                                                  \
29         if (err < 0) {                                                                     \
30                 fprintf(stderr, "[%s] " msg ": %s\n", device.c_str(), snd_strerror(err));  \
31                 return false;                                                              \
32         }                                                                                  \
33 } while (false)
34
35 #define WARN_ON_ERROR(msg, expr) do {                                                      \
36         int err = (expr);                                                                  \
37         if (err < 0) {                                                                     \
38                 fprintf(stderr, "[%s] " msg ": %s\n", device.c_str(), snd_strerror(err));  \
39         }                                                                                  \
40 } while (false)
41
42 ALSAInput::ALSAInput(const char *device, unsigned sample_rate, unsigned num_channels, audio_callback_t audio_callback, ALSAPool *parent_pool, unsigned internal_dev_index)
43         : device(device),
44           sample_rate(sample_rate),
45           num_channels(num_channels),
46           audio_callback(audio_callback),
47           parent_pool(parent_pool),
48           internal_dev_index(internal_dev_index)
49 {
50 }
51
52 bool ALSAInput::open_device()
53 {
54         RETURN_FALSE_ON_ERROR("snd_pcm_open()", snd_pcm_open(&pcm_handle, device.c_str(), SND_PCM_STREAM_CAPTURE, 0));
55
56         // Set format.
57         snd_pcm_hw_params_t *hw_params;
58         snd_pcm_hw_params_alloca(&hw_params);
59         if (!set_base_params(device.c_str(), pcm_handle, hw_params, &sample_rate)) {
60                 return false;
61         }
62
63         RETURN_FALSE_ON_ERROR("snd_pcm_hw_params_set_channels()", snd_pcm_hw_params_set_channels(pcm_handle, hw_params, num_channels));
64
65         // Fragment size of 64 samples (about 1 ms at 48 kHz; a frame at 60
66         // fps/48 kHz is 800 samples.) We ask for 64 such periods in our buffer
67         // (~85 ms buffer); more than that, and our jitter is probably so high
68         // that the resampling queue can't keep up anyway.
69         // The entire thing with periods and such is a bit mysterious to me;
70         // seemingly I can get 96 frames at a time with no problems even if
71         // the period size is 64 frames. And if I set num_periods to e.g. 1,
72         // I can't have a big buffer.
73         num_periods = 16;
74         int dir = 0;
75         RETURN_FALSE_ON_ERROR("snd_pcm_hw_params_set_periods_near()", snd_pcm_hw_params_set_periods_near(pcm_handle, hw_params, &num_periods, &dir));
76         period_size = 64;
77         dir = 0;
78         RETURN_FALSE_ON_ERROR("snd_pcm_hw_params_set_period_size_near()", snd_pcm_hw_params_set_period_size_near(pcm_handle, hw_params, &period_size, &dir));
79         buffer_frames = 64 * 64;
80         RETURN_FALSE_ON_ERROR("snd_pcm_hw_params_set_buffer_size_near()", snd_pcm_hw_params_set_buffer_size_near(pcm_handle, hw_params, &buffer_frames));
81         RETURN_FALSE_ON_ERROR("snd_pcm_hw_params()", snd_pcm_hw_params(pcm_handle, hw_params));
82         //snd_pcm_hw_params_free(hw_params);
83
84         // Figure out which format the card actually chose.
85         RETURN_FALSE_ON_ERROR("snd_pcm_hw_params_current()", snd_pcm_hw_params_current(pcm_handle, hw_params));
86         snd_pcm_format_t chosen_format;
87         RETURN_FALSE_ON_ERROR("snd_pcm_hw_params_get_format()", snd_pcm_hw_params_get_format(hw_params, &chosen_format));
88
89         audio_format.num_channels = num_channels;
90         audio_format.bits_per_sample = 0;
91         switch (chosen_format) {
92         case SND_PCM_FORMAT_S16_LE:
93                 audio_format.bits_per_sample = 16;
94                 break;
95         case SND_PCM_FORMAT_S24_LE:
96                 audio_format.bits_per_sample = 24;
97                 break;
98         case SND_PCM_FORMAT_S32_LE:
99                 audio_format.bits_per_sample = 32;
100                 break;
101         default:
102                 assert(false);
103         }
104         audio_format.sample_rate = sample_rate;
105         //printf("num_periods=%u period_size=%u buffer_frames=%u sample_rate=%u bits_per_sample=%d\n",
106         //      num_periods, unsigned(period_size), unsigned(buffer_frames), sample_rate, audio_format.bits_per_sample);
107
108         buffer.reset(new uint8_t[buffer_frames * num_channels * audio_format.bits_per_sample / 8]);
109
110         snd_pcm_sw_params_t *sw_params;
111         snd_pcm_sw_params_alloca(&sw_params);
112         RETURN_FALSE_ON_ERROR("snd_pcm_sw_params_current()", snd_pcm_sw_params_current(pcm_handle, sw_params));
113         RETURN_FALSE_ON_ERROR("snd_pcm_sw_params_set_start_threshold", snd_pcm_sw_params_set_start_threshold(pcm_handle, sw_params, num_periods * period_size / 2));
114         RETURN_FALSE_ON_ERROR("snd_pcm_sw_params_set_tstamp_mode", snd_pcm_sw_params_set_tstamp_mode(pcm_handle, sw_params, SND_PCM_TSTAMP_ENABLE));
115         RETURN_FALSE_ON_ERROR("snd_pcm_sw_params_set_tstamp_type", snd_pcm_sw_params_set_tstamp_type(pcm_handle, sw_params, SND_PCM_TSTAMP_TYPE_MONOTONIC));
116
117         RETURN_FALSE_ON_ERROR("snd_pcm_sw_params()", snd_pcm_sw_params(pcm_handle, sw_params));
118
119         RETURN_FALSE_ON_ERROR("snd_pcm_nonblock()", snd_pcm_nonblock(pcm_handle, 1));
120         RETURN_FALSE_ON_ERROR("snd_pcm_prepare()", snd_pcm_prepare(pcm_handle));
121         return true;
122 }
123
124 bool ALSAInput::set_base_params(const char *device_name, snd_pcm_t *pcm_handle, snd_pcm_hw_params_t *hw_params, unsigned *sample_rate)
125 {
126         int err;
127         err = snd_pcm_hw_params_any(pcm_handle, hw_params);
128         if (err < 0) {
129                 fprintf(stderr, "[%s] snd_pcm_hw_params_any(): %s\n", device_name, snd_strerror(err));
130                 return false;
131         }
132         err = snd_pcm_hw_params_set_access(pcm_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED);
133         if (err < 0) {
134                 fprintf(stderr, "[%s] snd_pcm_hw_params_set_access(): %s\n", device_name, snd_strerror(err));
135                 return false;
136         }
137         snd_pcm_format_mask_t *format_mask;
138         snd_pcm_format_mask_alloca(&format_mask);
139         snd_pcm_format_mask_set(format_mask, SND_PCM_FORMAT_S16_LE);
140         snd_pcm_format_mask_set(format_mask, SND_PCM_FORMAT_S24_LE);
141         snd_pcm_format_mask_set(format_mask, SND_PCM_FORMAT_S32_LE);
142         err = snd_pcm_hw_params_set_format_mask(pcm_handle, hw_params, format_mask);
143         if (err < 0) {
144                 fprintf(stderr, "[%s] snd_pcm_hw_params_set_format_mask(): %s\n", device_name, snd_strerror(err));
145                 return false;
146         }
147         err = snd_pcm_hw_params_set_rate_near(pcm_handle, hw_params, sample_rate, 0);
148         if (err < 0) {
149                 fprintf(stderr, "[%s] snd_pcm_hw_params_set_rate_near(): %s\n", device_name, snd_strerror(err));
150                 return false;
151         }
152         return true;
153 }
154
155 ALSAInput::~ALSAInput()
156 {
157         if (pcm_handle) {
158                 WARN_ON_ERROR("snd_pcm_close()", snd_pcm_close(pcm_handle));
159         }
160 }
161
162 void ALSAInput::start_capture_thread()
163 {
164         assert(!device.empty());
165         should_quit.unquit();
166         capture_thread = thread(&ALSAInput::capture_thread_func, this);
167 }
168
169 void ALSAInput::stop_capture_thread()
170 {
171         should_quit.quit();
172         capture_thread.join();
173 }
174
175 void ALSAInput::capture_thread_func()
176 {
177         parent_pool->set_card_state(internal_dev_index, ALSAPool::Device::State::STARTING);
178
179         // If the device hasn't been opened already, we need to do so
180         // before we can capture.
181         while (!should_quit.should_quit() && pcm_handle == nullptr) {
182                 if (!open_device()) {
183                         fprintf(stderr, "[%s] Waiting one second and trying again...\n",
184                                 device.c_str());
185                         should_quit.sleep_for(seconds(1));
186                 }
187         }
188
189         if (should_quit.should_quit()) {
190                 // Don't call free_card(); that would be a deadlock.
191                 if (pcm_handle) {
192                         WARN_ON_ERROR("snd_pcm_close()", snd_pcm_close(pcm_handle));
193                 }
194                 pcm_handle = nullptr;
195                 return;
196         }
197
198         // Do the actual capture. (Termination condition within loop.)
199         for ( ;; ) {
200                 switch (do_capture()) {
201                 case CaptureEndReason::REQUESTED_QUIT:
202                         // Don't call free_card(); that would be a deadlock.
203                         WARN_ON_ERROR("snd_pcm_close()", snd_pcm_close(pcm_handle));
204                         pcm_handle = nullptr;
205                         return;
206                 case CaptureEndReason::DEVICE_GONE:
207                         parent_pool->free_card(internal_dev_index);
208                         WARN_ON_ERROR("snd_pcm_close()", snd_pcm_close(pcm_handle));
209                         pcm_handle = nullptr;
210                         return;
211                 case CaptureEndReason::OTHER_ERROR:
212                         parent_pool->set_card_state(internal_dev_index, ALSAPool::Device::State::STARTING);
213                         fprintf(stderr, "[%s] Sleeping one second and restarting capture...\n",
214                                 device.c_str());
215                         should_quit.sleep_for(seconds(1));
216                         break;
217                 }
218         }
219 }
220
221 ALSAInput::CaptureEndReason ALSAInput::do_capture()
222 {
223         parent_pool->set_card_state(internal_dev_index, ALSAPool::Device::State::STARTING);
224         RETURN_ON_ERROR("snd_pcm_start()", snd_pcm_start(pcm_handle));
225         parent_pool->set_card_state(internal_dev_index, ALSAPool::Device::State::RUNNING);
226
227         snd_pcm_status_t *status;
228         snd_pcm_status_alloca(&status);
229         while (!should_quit.should_quit()) {
230                 int ret = snd_pcm_wait(pcm_handle, /*timeout=*/100);
231                 if (ret == 0) continue;  // Timeout.
232                 if (ret == -EPIPE) {
233                         fprintf(stderr, "[%s] ALSA overrun\n", device.c_str());
234                         snd_pcm_prepare(pcm_handle);
235                         snd_pcm_start(pcm_handle);
236                         continue;
237                 }
238                 RETURN_ON_ERROR("snd_pcm_wait()", ret);
239
240                 ret = snd_pcm_status(pcm_handle, status);
241                 RETURN_ON_ERROR("snd_pcm_status()", ret);
242
243                 snd_pcm_sframes_t avail = snd_pcm_status_get_avail(status);
244                 snd_htimestamp_t alsa_ts;
245                 snd_pcm_status_get_htstamp(status, &alsa_ts);
246
247                 snd_pcm_sframes_t frames = snd_pcm_readi(pcm_handle, buffer.get(), avail);
248                 if (frames == -EPIPE) {
249                         fprintf(stderr, "[%s] ALSA overrun\n", device.c_str());
250                         snd_pcm_prepare(pcm_handle);
251                         snd_pcm_start(pcm_handle);
252                         continue;
253                 }
254                 if (frames == 0) {
255                         fprintf(stderr, "snd_pcm_readi() returned 0\n");
256                         break;
257                 }
258                 RETURN_ON_ERROR("snd_pcm_readi()", frames);
259
260                 // NOTE: This assumes steady_clock::time_point is the same as clock_gettime(CLOCK_MONOTONIC).
261                 const steady_clock::time_point ts = steady_clock::time_point(seconds(alsa_ts.tv_sec) + nanoseconds(alsa_ts.tv_nsec));
262                 bool success;
263                 do {
264                         if (should_quit.should_quit()) return CaptureEndReason::REQUESTED_QUIT;
265                         success = audio_callback(buffer.get(), frames, audio_format, ts);
266                 } while (!success);
267         }
268         return CaptureEndReason::REQUESTED_QUIT;
269 }