]> git.sesse.net Git - nageru/blob - mixer.cpp
Do value massaging for interlaced signals right at the start of the theme.
[nageru] / mixer.cpp
1 #undef Success
2
3 #include "mixer.h"
4
5 #include <assert.h>
6 #include <epoxy/egl.h>
7 #include <init.h>
8 #include <movit/effect_chain.h>
9 #include <movit/effect_util.h>
10 #include <movit/flat_input.h>
11 #include <movit/image_format.h>
12 #include <movit/resource_pool.h>
13 #include <movit/util.h>
14 #include <stdint.h>
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <sys/time.h>
18 #include <time.h>
19 #include <algorithm>
20 #include <cmath>
21 #include <condition_variable>
22 #include <cstddef>
23 #include <memory>
24 #include <mutex>
25 #include <string>
26 #include <thread>
27 #include <utility>
28 #include <vector>
29
30 #include "bmusb/bmusb.h"
31 #include "context.h"
32 #include "defs.h"
33 #include "h264encode.h"
34 #include "pbo_frame_allocator.h"
35 #include "ref_counted_gl_sync.h"
36 #include "timebase.h"
37
38 class QOpenGLContext;
39
40 using namespace movit;
41 using namespace std;
42 using namespace std::placeholders;
43
44 Mixer *global_mixer = nullptr;
45
46 namespace {
47
48 void convert_fixed24_to_fp32(float *dst, size_t out_channels, const uint8_t *src, size_t in_channels, size_t num_samples)
49 {
50         for (size_t i = 0; i < num_samples; ++i) {
51                 for (size_t j = 0; j < out_channels; ++j) {
52                         uint32_t s1 = *src++;
53                         uint32_t s2 = *src++;
54                         uint32_t s3 = *src++;
55                         uint32_t s = s1 | (s1 << 8) | (s2 << 16) | (s3 << 24);
56                         dst[i * out_channels + j] = int(s) * (1.0f / 4294967296.0f);
57                 }
58                 src += 3 * (in_channels - out_channels);
59         }
60 }
61
62 void insert_new_frame(RefCountedFrame frame, unsigned field_num, bool interlaced, unsigned card_index, InputState *input_state)
63 {
64         if (interlaced) {
65                 for (unsigned frame_num = FRAME_HISTORY_LENGTH; frame_num --> 1; ) {  // :-)
66                         input_state->buffered_frames[card_index][frame_num] =
67                                 input_state->buffered_frames[card_index][frame_num - 1];
68                 }
69                 input_state->buffered_frames[card_index][0] = { frame, field_num };
70         } else {
71                 for (unsigned frame_num = 0; frame_num < FRAME_HISTORY_LENGTH; ++frame_num) {
72                         input_state->buffered_frames[card_index][frame_num] = { frame, field_num };
73                 }
74         }
75 }
76
77 }  // namespace
78
79 Mixer::Mixer(const QSurfaceFormat &format, unsigned num_cards)
80         : httpd(LOCAL_DUMP_FILE_NAME, WIDTH, HEIGHT),
81           num_cards(num_cards),
82           mixer_surface(create_surface(format)),
83           h264_encoder_surface(create_surface(format)),
84           level_compressor(OUTPUT_FREQUENCY),
85           limiter(OUTPUT_FREQUENCY),
86           compressor(OUTPUT_FREQUENCY)
87 {
88         httpd.start(9095);
89
90         CHECK(init_movit(MOVIT_SHADER_DIR, MOVIT_DEBUG_OFF));
91         check_error();
92
93         // Since we allow non-bouncing 4:2:2 YCbCrInputs, effective subpixel precision
94         // will be halved when sampling them, and we need to compensate here.
95         movit_texel_subpixel_precision /= 2.0;
96
97         resource_pool.reset(new ResourcePool);
98         theme.reset(new Theme("theme.lua", resource_pool.get(), num_cards));
99         for (unsigned i = 0; i < NUM_OUTPUTS; ++i) {
100                 output_channel[i].parent = this;
101         }
102
103         ImageFormat inout_format;
104         inout_format.color_space = COLORSPACE_sRGB;
105         inout_format.gamma_curve = GAMMA_sRGB;
106
107         // Display chain; shows the live output produced by the main chain (its RGBA version).
108         display_chain.reset(new EffectChain(WIDTH, HEIGHT, resource_pool.get()));
109         check_error();
110         display_input = new FlatInput(inout_format, FORMAT_RGB, GL_UNSIGNED_BYTE, WIDTH, HEIGHT);  // FIXME: GL_UNSIGNED_BYTE is really wrong.
111         display_chain->add_input(display_input);
112         display_chain->add_output(inout_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
113         display_chain->set_dither_bits(0);  // Don't bother.
114         display_chain->finalize();
115
116         h264_encoder.reset(new H264Encoder(h264_encoder_surface, WIDTH, HEIGHT, &httpd));
117
118         for (unsigned card_index = 0; card_index < num_cards; ++card_index) {
119                 printf("Configuring card %d...\n", card_index);
120                 CaptureCard *card = &cards[card_index];
121                 card->usb = new BMUSBCapture(card_index);
122                 card->usb->set_frame_callback(bind(&Mixer::bm_frame, this, card_index, _1, _2, _3, _4, _5, _6, _7));
123                 card->frame_allocator.reset(new PBOFrameAllocator(8 << 20, WIDTH, HEIGHT));  // 8 MB.
124                 card->usb->set_video_frame_allocator(card->frame_allocator.get());
125                 card->surface = create_surface(format);
126                 card->usb->set_dequeue_thread_callbacks(
127                         [card]{
128                                 eglBindAPI(EGL_OPENGL_API);
129                                 card->context = create_context(card->surface);
130                                 if (!make_current(card->context, card->surface)) {
131                                         printf("failed to create bmusb context\n");
132                                         exit(1);
133                                 }
134                         },
135                         [this]{
136                                 resource_pool->clean_context();
137                         });
138                 card->resampling_queue.reset(new ResamplingQueue(OUTPUT_FREQUENCY, OUTPUT_FREQUENCY, 2));
139                 card->usb->configure_card();
140         }
141
142         BMUSBCapture::start_bm_thread();
143
144         for (unsigned card_index = 0; card_index < num_cards; ++card_index) {
145                 cards[card_index].usb->start_bm_capture();
146         }
147
148         // Set up stuff for NV12 conversion.
149
150         // Cb/Cr shader.
151         string cbcr_vert_shader = read_file("vs-cbcr.130.vert");
152         string cbcr_frag_shader =
153                 "#version 130 \n"
154                 "in vec2 tc0; \n"
155                 "uniform sampler2D cbcr_tex; \n"
156                 "void main() { \n"
157                 "    gl_FragColor = texture2D(cbcr_tex, tc0); \n"
158                 "} \n";
159         vector<string> frag_shader_outputs;
160         cbcr_program_num = resource_pool->compile_glsl_program(cbcr_vert_shader, cbcr_frag_shader, frag_shader_outputs);
161
162         r128.init(2, OUTPUT_FREQUENCY);
163         r128.integr_start();
164
165         locut.init(FILTER_HPF, 2);
166
167         // hlen=16 is pretty low quality, but we use quite a bit of CPU otherwise,
168         // and there's a limit to how important the peak meter is.
169         peak_resampler.setup(OUTPUT_FREQUENCY, OUTPUT_FREQUENCY * 4, /*num_channels=*/2, /*hlen=*/16);
170
171         alsa.reset(new ALSAOutput(OUTPUT_FREQUENCY, /*num_channels=*/2));
172 }
173
174 Mixer::~Mixer()
175 {
176         resource_pool->release_glsl_program(cbcr_program_num);
177         BMUSBCapture::stop_bm_thread();
178
179         for (unsigned card_index = 0; card_index < num_cards; ++card_index) {
180                 {
181                         unique_lock<mutex> lock(bmusb_mutex);
182                         cards[card_index].should_quit = true;  // Unblock thread.
183                         cards[card_index].new_data_ready_changed.notify_all();
184                 }
185                 cards[card_index].usb->stop_dequeue_thread();
186         }
187
188         h264_encoder.reset(nullptr);
189 }
190
191 namespace {
192
193 int unwrap_timecode(uint16_t current_wrapped, int last)
194 {
195         uint16_t last_wrapped = last & 0xffff;
196         if (current_wrapped > last_wrapped) {
197                 return (last & ~0xffff) | current_wrapped;
198         } else {
199                 return 0x10000 + ((last & ~0xffff) | current_wrapped);
200         }
201 }
202
203 float find_peak(const float *samples, size_t num_samples)
204 {
205         float m = fabs(samples[0]);
206         for (size_t i = 1; i < num_samples; ++i) {
207                 m = std::max(m, fabs(samples[i]));
208         }
209         return m;
210 }
211
212 void deinterleave_samples(const vector<float> &in, vector<float> *out_l, vector<float> *out_r)
213 {
214         size_t num_samples = in.size() / 2;
215         out_l->resize(num_samples);
216         out_r->resize(num_samples);
217
218         const float *inptr = in.data();
219         float *lptr = &(*out_l)[0];
220         float *rptr = &(*out_r)[0];
221         for (size_t i = 0; i < num_samples; ++i) {
222                 *lptr++ = *inptr++;
223                 *rptr++ = *inptr++;
224         }
225 }
226
227 }  // namespace
228
229 void Mixer::bm_frame(unsigned card_index, uint16_t timecode,
230                      FrameAllocator::Frame video_frame, size_t video_offset, uint16_t video_format,
231                      FrameAllocator::Frame audio_frame, size_t audio_offset, uint16_t audio_format)
232 {
233         CaptureCard *card = &cards[card_index];
234
235         unsigned width, height, second_field_start, frame_rate_nom, frame_rate_den, extra_lines_top, extra_lines_bottom;
236         bool interlaced;
237
238         decode_video_format(video_format, &width, &height, &second_field_start, &extra_lines_top, &extra_lines_bottom,
239                             &frame_rate_nom, &frame_rate_den, &interlaced);  // Ignore return value for now.
240         int64_t frame_length = TIMEBASE * frame_rate_den / frame_rate_nom;
241
242         size_t num_samples = (audio_frame.len >= audio_offset) ? (audio_frame.len - audio_offset) / 8 / 3 : 0;
243         if (num_samples > OUTPUT_FREQUENCY / 10) {
244                 printf("Card %d: Dropping frame with implausible audio length (len=%d, offset=%d) [timecode=0x%04x video_len=%d video_offset=%d video_format=%x)\n",
245                         card_index, int(audio_frame.len), int(audio_offset),
246                         timecode, int(video_frame.len), int(video_offset), video_format);
247                 if (video_frame.owner) {
248                         video_frame.owner->release_frame(video_frame);
249                 }
250                 if (audio_frame.owner) {
251                         audio_frame.owner->release_frame(audio_frame);
252                 }
253                 return;
254         }
255
256         int64_t local_pts = card->next_local_pts;
257         int dropped_frames = 0;
258         if (card->last_timecode != -1) {
259                 dropped_frames = unwrap_timecode(timecode, card->last_timecode) - card->last_timecode - 1;
260         }
261
262         // Convert the audio to stereo fp32 and add it.
263         vector<float> audio;
264         audio.resize(num_samples * 2);
265         convert_fixed24_to_fp32(&audio[0], 2, audio_frame.data + audio_offset, 8, num_samples);
266
267         // Add the audio.
268         {
269                 unique_lock<mutex> lock(card->audio_mutex);
270
271                 // Number of samples per frame if we need to insert silence.
272                 // (Could be nonintegral, but resampling will save us then.)
273                 int silence_samples = OUTPUT_FREQUENCY * frame_rate_den / frame_rate_nom;
274
275                 if (dropped_frames > MAX_FPS * 2) {
276                         fprintf(stderr, "Card %d lost more than two seconds (or time code jumping around; from 0x%04x to 0x%04x), resetting resampler\n",
277                                 card_index, card->last_timecode, timecode);
278                         card->resampling_queue.reset(new ResamplingQueue(OUTPUT_FREQUENCY, OUTPUT_FREQUENCY, 2));
279                         dropped_frames = 0;
280                 } else if (dropped_frames > 0) {
281                         // Insert silence as needed.
282                         fprintf(stderr, "Card %d dropped %d frame(s) (before timecode 0x%04x), inserting silence.\n",
283                                 card_index, dropped_frames, timecode);
284                         vector<float> silence(silence_samples * 2, 0.0f);
285                         for (int i = 0; i < dropped_frames; ++i) {
286                                 card->resampling_queue->add_input_samples(local_pts / double(TIMEBASE), silence.data(), silence_samples);
287                                 // Note that if the format changed in the meantime, we have
288                                 // no way of detecting that; we just have to assume the frame length
289                                 // is always the same.
290                                 local_pts += frame_length;
291                         }
292                 }
293                 if (num_samples == 0) {
294                         audio.resize(silence_samples * 2);
295                         num_samples = silence_samples;
296                 }
297                 card->resampling_queue->add_input_samples(local_pts / double(TIMEBASE), audio.data(), num_samples);
298                 card->next_local_pts = local_pts + frame_length;
299         }
300
301         card->last_timecode = timecode;
302
303         // Done with the audio, so release it.
304         if (audio_frame.owner) {
305                 audio_frame.owner->release_frame(audio_frame);
306         }
307
308         {
309                 // Wait until the previous frame was consumed.
310                 unique_lock<mutex> lock(bmusb_mutex);
311                 card->new_data_ready_changed.wait(lock, [card]{ return !card->new_data_ready || card->should_quit; });
312                 if (card->should_quit) return;
313         }
314
315         size_t expected_length = width * (height + extra_lines_top + extra_lines_bottom) * 2;
316         if (video_frame.len - video_offset == 0 ||
317             video_frame.len - video_offset != expected_length) {
318                 if (video_frame.len != 0) {
319                         printf("Card %d: Dropping video frame with wrong length (%ld; expected %ld)\n",
320                                 card_index, video_frame.len - video_offset, expected_length);
321                 }
322                 if (video_frame.owner) {
323                         video_frame.owner->release_frame(video_frame);
324                 }
325
326                 // Still send on the information that we _had_ a frame, even though it's corrupted,
327                 // so that pts can go up accordingly.
328                 {
329                         unique_lock<mutex> lock(bmusb_mutex);
330                         card->new_data_ready = true;
331                         card->new_frame = RefCountedFrame(FrameAllocator::Frame());
332                         card->new_frame_length = frame_length;
333                         card->new_frame_interlaced = false;
334                         card->new_data_ready_fence = nullptr;
335                         card->dropped_frames = dropped_frames;
336                         card->new_data_ready_changed.notify_all();
337                 }
338                 return;
339         }
340
341         PBOFrameAllocator::Userdata *userdata = (PBOFrameAllocator::Userdata *)video_frame.userdata;
342
343         unsigned num_fields = interlaced ? 2 : 1;
344         timespec frame_upload_start;
345         if (interlaced) {
346                 // Send the two fields along as separate frames; the other side will need to add
347                 // a deinterlacer to actually get this right.
348                 assert(height % 2 == 0);
349                 height /= 2;
350                 assert(frame_length % 2 == 0);
351                 frame_length /= 2;
352                 num_fields = 2;
353                 clock_gettime(CLOCK_MONOTONIC, &frame_upload_start);
354         }
355         userdata->last_interlaced = interlaced;
356         userdata->last_frame_rate_nom = frame_rate_nom;
357         userdata->last_frame_rate_den = frame_rate_den;
358         RefCountedFrame new_frame(video_frame);
359
360         // Upload the textures.
361         size_t cbcr_width = width / 2;
362         size_t cbcr_offset = video_offset / 2;
363         size_t y_offset = video_frame.size / 2 + video_offset / 2;
364
365         for (unsigned field = 0; field < num_fields; ++field) {
366                 unsigned field_start_line = (field == 1) ? second_field_start : extra_lines_top + field * (height + 22);
367
368                 if (userdata->tex_y[field] == 0 ||
369                     userdata->tex_cbcr[field] == 0 ||
370                     width != userdata->last_width[field] ||
371                     height != userdata->last_height[field]) {
372                         // We changed resolution since last use of this texture, so we need to create
373                         // a new object. Note that this each card has its own PBOFrameAllocator,
374                         // we don't need to worry about these flip-flopping between resolutions.
375                         glBindTexture(GL_TEXTURE_2D, userdata->tex_cbcr[field]);
376                         check_error();
377                         glTexImage2D(GL_TEXTURE_2D, 0, GL_RG8, cbcr_width, height, 0, GL_RG, GL_UNSIGNED_BYTE, nullptr);
378                         check_error();
379                         glBindTexture(GL_TEXTURE_2D, userdata->tex_y[field]);
380                         check_error();
381                         glTexImage2D(GL_TEXTURE_2D, 0, GL_R8, width, height, 0, GL_RED, GL_UNSIGNED_BYTE, nullptr);
382                         check_error();
383                         userdata->last_width[field] = width;
384                         userdata->last_height[field] = height;
385                 }
386
387                 GLuint pbo = userdata->pbo;
388                 check_error();
389                 glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, pbo);
390                 check_error();
391                 glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
392                 check_error();
393
394                 glBindTexture(GL_TEXTURE_2D, userdata->tex_cbcr[field]);
395                 check_error();
396                 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, cbcr_width, height, GL_RG, GL_UNSIGNED_BYTE, BUFFER_OFFSET(cbcr_offset + cbcr_width * field_start_line * sizeof(uint16_t)));
397                 check_error();
398                 glBindTexture(GL_TEXTURE_2D, userdata->tex_y[field]);
399                 check_error();
400                 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RED, GL_UNSIGNED_BYTE, BUFFER_OFFSET(y_offset + width * field_start_line));
401                 check_error();
402                 glBindTexture(GL_TEXTURE_2D, 0);
403                 check_error();
404                 GLsync fence = glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, /*flags=*/0);
405                 check_error();
406                 assert(fence != nullptr);
407
408                 if (field == 1) {
409                         // Don't upload the second field as fast as we can; wait until
410                         // the field time has approximately passed. (Otherwise, we could
411                         // get timing jitter against the other sources, and possibly also
412                         // against the video display, although the latter is not as critical.)
413                         // This requires our system clock to be reasonably close to the
414                         // video clock, but that's not an unreasonable assumption.
415                         timespec second_field_start;
416                         second_field_start.tv_nsec = frame_upload_start.tv_nsec +
417                                 frame_length * 1000000000 / TIMEBASE;
418                         second_field_start.tv_sec = frame_upload_start.tv_sec +
419                                 second_field_start.tv_nsec / 1000000000;
420                         second_field_start.tv_nsec %= 1000000000;
421
422                         while (clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME,
423                                                &second_field_start, nullptr) == -1 &&
424                                errno == EINTR) ;
425                 }
426
427                 {
428                         unique_lock<mutex> lock(bmusb_mutex);
429                         card->new_data_ready = true;
430                         card->new_frame = new_frame;
431                         card->new_frame_length = frame_length;
432                         card->new_frame_field = field;
433                         card->new_frame_interlaced = interlaced;
434                         card->new_data_ready_fence = fence;
435                         card->dropped_frames = dropped_frames;
436                         card->new_data_ready_changed.notify_all();
437
438                         if (field != num_fields - 1) {
439                                 // Wait until the previous frame was consumed.
440                                 card->new_data_ready_changed.wait(lock, [card]{ return !card->new_data_ready || card->should_quit; });
441                                 if (card->should_quit) return;
442                         }
443                 }
444         }
445 }
446
447 void Mixer::thread_func()
448 {
449         eglBindAPI(EGL_OPENGL_API);
450         QOpenGLContext *context = create_context(mixer_surface);
451         if (!make_current(context, mixer_surface)) {
452                 printf("oops\n");
453                 exit(1);
454         }
455
456         struct timespec start, now;
457         clock_gettime(CLOCK_MONOTONIC, &start);
458
459         int frame = 0;
460         int stats_dropped_frames = 0;
461
462         while (!should_quit) {
463                 CaptureCard card_copy[MAX_CARDS];
464                 int num_samples[MAX_CARDS];
465
466                 {
467                         unique_lock<mutex> lock(bmusb_mutex);
468
469                         // The first card is the master timer, so wait for it to have a new frame.
470                         // TODO: Make configurable, and with a timeout.
471                         cards[0].new_data_ready_changed.wait(lock, [this]{ return cards[0].new_data_ready; });
472
473                         for (unsigned card_index = 0; card_index < num_cards; ++card_index) {
474                                 CaptureCard *card = &cards[card_index];
475                                 card_copy[card_index].usb = card->usb;
476                                 card_copy[card_index].new_data_ready = card->new_data_ready;
477                                 card_copy[card_index].new_frame = card->new_frame;
478                                 card_copy[card_index].new_frame_length = card->new_frame_length;
479                                 card_copy[card_index].new_frame_field = card->new_frame_field;
480                                 card_copy[card_index].new_frame_interlaced = card->new_frame_interlaced;
481                                 card_copy[card_index].new_data_ready_fence = card->new_data_ready_fence;
482                                 card_copy[card_index].dropped_frames = card->dropped_frames;
483                                 card->new_data_ready = false;
484                                 card->new_data_ready_changed.notify_all();
485
486                                 int num_samples_times_timebase = OUTPUT_FREQUENCY * card->new_frame_length + card->fractional_samples;
487                                 num_samples[card_index] = num_samples_times_timebase / TIMEBASE;
488                                 card->fractional_samples = num_samples_times_timebase % TIMEBASE;
489                                 assert(num_samples[card_index] >= 0);
490                         }
491                 }
492
493                 // Resample the audio as needed, including from previously dropped frames.
494                 for (unsigned frame_num = 0; frame_num < card_copy[0].dropped_frames + 1; ++frame_num) {
495                         {
496                                 // Signal to the audio thread to process this frame.
497                                 unique_lock<mutex> lock(audio_mutex);
498                                 audio_task_queue.push(AudioTask{pts_int, num_samples[0]});
499                                 audio_task_queue_changed.notify_one();
500                         }
501                         if (frame_num != card_copy[0].dropped_frames) {
502                                 // For dropped frames, increase the pts. Note that if the format changed
503                                 // in the meantime, we have no way of detecting that; we just have to
504                                 // assume the frame length is always the same.
505                                 ++stats_dropped_frames;
506                                 pts_int += card_copy[0].new_frame_length;
507                         }
508                 }
509
510                 if (audio_level_callback != nullptr) {
511                         unique_lock<mutex> lock(r128_mutex);
512                         double loudness_s = r128.loudness_S();
513                         double loudness_i = r128.integrated();
514                         double loudness_range_low = r128.range_min();
515                         double loudness_range_high = r128.range_max();
516
517                         audio_level_callback(loudness_s, 20.0 * log10(peak),
518                                              loudness_i, loudness_range_low, loudness_range_high,
519                                              last_gain_staging_db);
520                 }
521
522                 for (unsigned card_index = 1; card_index < num_cards; ++card_index) {
523                         if (card_copy[card_index].new_data_ready && card_copy[card_index].new_frame->len == 0) {
524                                 ++card_copy[card_index].dropped_frames;
525                         }
526                         if (card_copy[card_index].dropped_frames > 0) {
527                                 printf("Card %u dropped %d frames before this\n",
528                                         card_index, int(card_copy[card_index].dropped_frames));
529                         }
530                 }
531
532                 // If the first card is reporting a corrupted or otherwise dropped frame,
533                 // just increase the pts (skipping over this frame) and don't try to compute anything new.
534                 if (card_copy[0].new_frame->len == 0) {
535                         ++stats_dropped_frames;
536                         pts_int += card_copy[0].new_frame_length;
537                         continue;
538                 }
539
540                 for (unsigned card_index = 0; card_index < num_cards; ++card_index) {
541                         CaptureCard *card = &card_copy[card_index];
542                         if (!card->new_data_ready || card->new_frame->len == 0)
543                                 continue;
544
545                         assert(card->new_frame != nullptr);
546                         insert_new_frame(card->new_frame, card->new_frame_field, card->new_frame_interlaced, card_index, &input_state);
547                         check_error();
548
549                         // The new texture might still be uploaded,
550                         // tell the GPU to wait until it's there.
551                         if (card->new_data_ready_fence) {
552                                 glWaitSync(card->new_data_ready_fence, /*flags=*/0, GL_TIMEOUT_IGNORED);
553                                 check_error();
554                                 glDeleteSync(card->new_data_ready_fence);
555                                 check_error();
556                         }
557                 }
558
559                 // Get the main chain from the theme, and set its state immediately.
560                 Theme::Chain theme_main_chain = theme->get_chain(0, pts(), WIDTH, HEIGHT, input_state);
561                 EffectChain *chain = theme_main_chain.chain;
562                 theme_main_chain.setup_chain();
563                 //theme_main_chain.chain->enable_phase_timing(true);
564
565                 GLuint y_tex, cbcr_tex;
566                 bool got_frame = h264_encoder->begin_frame(&y_tex, &cbcr_tex);
567                 assert(got_frame);
568
569                 // Render main chain.
570                 GLuint cbcr_full_tex = resource_pool->create_2d_texture(GL_RG8, WIDTH, HEIGHT);
571                 GLuint rgba_tex = resource_pool->create_2d_texture(GL_RGB565, WIDTH, HEIGHT);  // Saves texture bandwidth, although dithering gets messed up.
572                 GLuint fbo = resource_pool->create_fbo(y_tex, cbcr_full_tex, rgba_tex);
573                 check_error();
574                 chain->render_to_fbo(fbo, WIDTH, HEIGHT);
575                 resource_pool->release_fbo(fbo);
576
577                 subsample_chroma(cbcr_full_tex, cbcr_tex);
578                 resource_pool->release_2d_texture(cbcr_full_tex);
579
580                 // Set the right state for rgba_tex.
581                 glBindFramebuffer(GL_FRAMEBUFFER, 0);
582                 glBindTexture(GL_TEXTURE_2D, rgba_tex);
583                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
584                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
585                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
586
587                 RefCountedGLsync fence(GL_SYNC_GPU_COMMANDS_COMPLETE, /*flags=*/0);
588                 check_error();
589
590                 const int64_t av_delay = TIMEBASE / 10;  // Corresponds to the fixed delay in resampling_queue.h. TODO: Make less hard-coded.
591                 h264_encoder->end_frame(fence, pts_int + av_delay, theme_main_chain.input_frames);
592                 ++frame;
593                 pts_int += card_copy[0].new_frame_length;
594
595                 // The live frame just shows the RGBA texture we just rendered.
596                 // It owns rgba_tex now.
597                 DisplayFrame live_frame;
598                 live_frame.chain = display_chain.get();
599                 live_frame.setup_chain = [this, rgba_tex]{
600                         display_input->set_texture_num(rgba_tex);
601                 };
602                 live_frame.ready_fence = fence;
603                 live_frame.input_frames = {};
604                 live_frame.temp_textures = { rgba_tex };
605                 output_channel[OUTPUT_LIVE].output_frame(live_frame);
606
607                 // Set up preview and any additional channels.
608                 for (int i = 1; i < theme->get_num_channels() + 2; ++i) {
609                         DisplayFrame display_frame;
610                         Theme::Chain chain = theme->get_chain(i, pts(), WIDTH, HEIGHT, input_state);  // FIXME: dimensions
611                         display_frame.chain = chain.chain;
612                         display_frame.setup_chain = chain.setup_chain;
613                         display_frame.ready_fence = fence;
614                         display_frame.input_frames = chain.input_frames;
615                         display_frame.temp_textures = {};
616                         output_channel[i].output_frame(display_frame);
617                 }
618
619                 clock_gettime(CLOCK_MONOTONIC, &now);
620                 double elapsed = now.tv_sec - start.tv_sec +
621                         1e-9 * (now.tv_nsec - start.tv_nsec);
622                 if (frame % 100 == 0) {
623                         printf("%d frames (%d dropped) in %.3f seconds = %.1f fps (%.1f ms/frame)\n",
624                                 frame, stats_dropped_frames, elapsed, frame / elapsed,
625                                 1e3 * elapsed / frame);
626                 //      chain->print_phase_timing();
627                 }
628
629 #if 0
630                 // Reset every 100 frames, so that local variations in frame times
631                 // (especially for the first few frames, when the shaders are
632                 // compiled etc.) don't make it hard to measure for the entire
633                 // remaining duration of the program.
634                 if (frame == 10000) {
635                         frame = 0;
636                         start = now;
637                 }
638 #endif
639                 check_error();
640         }
641
642         resource_pool->clean_context();
643 }
644
645 void Mixer::audio_thread_func()
646 {
647         while (!should_quit) {
648                 AudioTask task;
649
650                 {
651                         unique_lock<mutex> lock(audio_mutex);
652                         audio_task_queue_changed.wait(lock, [this]{ return !audio_task_queue.empty(); });
653                         task = audio_task_queue.front();
654                         audio_task_queue.pop();
655                 }
656
657                 process_audio_one_frame(task.pts_int, task.num_samples);
658         }
659 }
660
661 void Mixer::process_audio_one_frame(int64_t frame_pts_int, int num_samples)
662 {
663         vector<float> samples_card;
664         vector<float> samples_out;
665         for (unsigned card_index = 0; card_index < num_cards; ++card_index) {
666                 samples_card.resize(num_samples * 2);
667                 {
668                         unique_lock<mutex> lock(cards[card_index].audio_mutex);
669                         if (!cards[card_index].resampling_queue->get_output_samples(double(frame_pts_int) / TIMEBASE, &samples_card[0], num_samples)) {
670                                 printf("Card %d reported previous underrun.\n", card_index);
671                         }
672                 }
673                 // TODO: Allow using audio from the other card(s) as well.
674                 if (card_index == 0) {
675                         samples_out = move(samples_card);
676                 }
677         }
678
679         // Cut away everything under 120 Hz (or whatever the cutoff is);
680         // we don't need it for voice, and it will reduce headroom
681         // and confuse the compressor. (In particular, any hums at 50 or 60 Hz
682         // should be dampened.)
683         locut.render(samples_out.data(), samples_out.size() / 2, locut_cutoff_hz * 2.0 * M_PI / OUTPUT_FREQUENCY, 0.5f);
684
685         // Apply a level compressor to get the general level right.
686         // Basically, if it's over about -40 dBFS, we squeeze it down to that level
687         // (or more precisely, near it, since we don't use infinite ratio),
688         // then apply a makeup gain to get it to -14 dBFS. -14 dBFS is, of course,
689         // entirely arbitrary, but from practical tests with speech, it seems to
690         // put ut around -23 LUFS, so it's a reasonable starting point for later use.
691         float ref_level_dbfs = -14.0f;
692         {
693                 float threshold = 0.01f;   // -40 dBFS.
694                 float ratio = 20.0f;
695                 float attack_time = 0.5f;
696                 float release_time = 20.0f;
697                 float makeup_gain = pow(10.0f, (ref_level_dbfs - (-40.0f)) / 20.0f);  // +26 dB.
698                 level_compressor.process(samples_out.data(), samples_out.size() / 2, threshold, ratio, attack_time, release_time, makeup_gain);
699                 last_gain_staging_db = 20.0 * log10(level_compressor.get_attenuation() * makeup_gain);
700         }
701
702 #if 0
703         printf("level=%f (%+5.2f dBFS) attenuation=%f (%+5.2f dB) end_result=%+5.2f dB\n",
704                 level_compressor.get_level(), 20.0 * log10(level_compressor.get_level()),
705                 level_compressor.get_attenuation(), 20.0 * log10(level_compressor.get_attenuation()),
706                 20.0 * log10(level_compressor.get_level() * level_compressor.get_attenuation() * makeup_gain));
707 #endif
708
709 //      float limiter_att, compressor_att;
710
711         // The real compressor.
712         if (compressor_enabled) {
713                 float threshold = pow(10.0f, compressor_threshold_dbfs / 20.0f);
714                 float ratio = 20.0f;
715                 float attack_time = 0.005f;
716                 float release_time = 0.040f;
717                 float makeup_gain = 2.0f;  // +6 dB.
718                 compressor.process(samples_out.data(), samples_out.size() / 2, threshold, ratio, attack_time, release_time, makeup_gain);
719 //              compressor_att = compressor.get_attenuation();
720         }
721
722         // Finally a limiter at -4 dB (so, -10 dBFS) to take out the worst peaks only.
723         // Note that since ratio is not infinite, we could go slightly higher than this.
724         if (limiter_enabled) {
725                 float threshold = pow(10.0f, limiter_threshold_dbfs / 20.0f);
726                 float ratio = 30.0f;
727                 float attack_time = 0.0f;  // Instant.
728                 float release_time = 0.020f;
729                 float makeup_gain = 1.0f;  // 0 dB.
730                 limiter.process(samples_out.data(), samples_out.size() / 2, threshold, ratio, attack_time, release_time, makeup_gain);
731 //              limiter_att = limiter.get_attenuation();
732         }
733
734 //      printf("limiter=%+5.1f  compressor=%+5.1f\n", 20.0*log10(limiter_att), 20.0*log10(compressor_att));
735
736         // Upsample 4x to find interpolated peak.
737         peak_resampler.inp_data = samples_out.data();
738         peak_resampler.inp_count = samples_out.size() / 2;
739
740         vector<float> interpolated_samples_out;
741         interpolated_samples_out.resize(samples_out.size());
742         while (peak_resampler.inp_count > 0) {  // About four iterations.
743                 peak_resampler.out_data = &interpolated_samples_out[0];
744                 peak_resampler.out_count = interpolated_samples_out.size() / 2;
745                 peak_resampler.process();
746                 size_t out_stereo_samples = interpolated_samples_out.size() / 2 - peak_resampler.out_count;
747                 peak = max<float>(peak, find_peak(interpolated_samples_out.data(), out_stereo_samples * 2));
748         }
749
750         // Find R128 levels.
751         vector<float> left, right;
752         deinterleave_samples(samples_out, &left, &right);
753         float *ptrs[] = { left.data(), right.data() };
754         {
755                 unique_lock<mutex> lock(r128_mutex);
756                 r128.process(left.size(), ptrs);
757         }
758
759         // Send the samples to the sound card.
760         if (alsa) {
761                 alsa->write(samples_out);
762         }
763
764         // And finally add them to the output.
765         h264_encoder->add_audio(frame_pts_int, move(samples_out));
766 }
767
768 void Mixer::subsample_chroma(GLuint src_tex, GLuint dst_tex)
769 {
770         GLuint vao;
771         glGenVertexArrays(1, &vao);
772         check_error();
773
774         float vertices[] = {
775                 0.0f, 2.0f,
776                 0.0f, 0.0f,
777                 2.0f, 0.0f
778         };
779
780         glBindVertexArray(vao);
781         check_error();
782
783         // Extract Cb/Cr.
784         GLuint fbo = resource_pool->create_fbo(dst_tex);
785         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
786         glViewport(0, 0, WIDTH/2, HEIGHT/2);
787         check_error();
788
789         glUseProgram(cbcr_program_num);
790         check_error();
791
792         glActiveTexture(GL_TEXTURE0);
793         check_error();
794         glBindTexture(GL_TEXTURE_2D, src_tex);
795         check_error();
796         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
797         check_error();
798         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
799         check_error();
800         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
801         check_error();
802
803         float chroma_offset_0[] = { -0.5f / WIDTH, 0.0f };
804         set_uniform_vec2(cbcr_program_num, "foo", "chroma_offset_0", chroma_offset_0);
805
806         GLuint position_vbo = fill_vertex_attribute(cbcr_program_num, "position", 2, GL_FLOAT, sizeof(vertices), vertices);
807         GLuint texcoord_vbo = fill_vertex_attribute(cbcr_program_num, "texcoord", 2, GL_FLOAT, sizeof(vertices), vertices);  // Same as vertices.
808
809         glDrawArrays(GL_TRIANGLES, 0, 3);
810         check_error();
811
812         cleanup_vertex_attribute(cbcr_program_num, "position", position_vbo);
813         cleanup_vertex_attribute(cbcr_program_num, "texcoord", texcoord_vbo);
814
815         glUseProgram(0);
816         check_error();
817
818         resource_pool->release_fbo(fbo);
819         glDeleteVertexArrays(1, &vao);
820 }
821
822 void Mixer::release_display_frame(DisplayFrame *frame)
823 {
824         for (GLuint texnum : frame->temp_textures) {
825                 resource_pool->release_2d_texture(texnum);
826         }
827         frame->temp_textures.clear();
828         frame->ready_fence.reset();
829         frame->input_frames.clear();
830 }
831
832 void Mixer::start()
833 {
834         mixer_thread = thread(&Mixer::thread_func, this);
835         audio_thread = thread(&Mixer::audio_thread_func, this);
836 }
837
838 void Mixer::quit()
839 {
840         should_quit = true;
841         mixer_thread.join();
842         audio_thread.join();
843 }
844
845 void Mixer::transition_clicked(int transition_num)
846 {
847         theme->transition_clicked(transition_num, pts());
848 }
849
850 void Mixer::channel_clicked(int preview_num)
851 {
852         theme->channel_clicked(preview_num);
853 }
854
855 void Mixer::reset_meters()
856 {
857         peak_resampler.reset();
858         peak = 0.0f;
859         r128.reset();
860         r128.integr_start();
861 }
862
863 Mixer::OutputChannel::~OutputChannel()
864 {
865         if (has_current_frame) {
866                 parent->release_display_frame(&current_frame);
867         }
868         if (has_ready_frame) {
869                 parent->release_display_frame(&ready_frame);
870         }
871 }
872
873 void Mixer::OutputChannel::output_frame(DisplayFrame frame)
874 {
875         // Store this frame for display. Remove the ready frame if any
876         // (it was seemingly never used).
877         {
878                 unique_lock<mutex> lock(frame_mutex);
879                 if (has_ready_frame) {
880                         parent->release_display_frame(&ready_frame);
881                 }
882                 ready_frame = frame;
883                 has_ready_frame = true;
884         }
885
886         if (has_new_frame_ready_callback) {
887                 new_frame_ready_callback();
888         }
889 }
890
891 bool Mixer::OutputChannel::get_display_frame(DisplayFrame *frame)
892 {
893         unique_lock<mutex> lock(frame_mutex);
894         if (!has_current_frame && !has_ready_frame) {
895                 return false;
896         }
897
898         if (has_current_frame && has_ready_frame) {
899                 // We have a new ready frame. Toss the current one.
900                 parent->release_display_frame(&current_frame);
901                 has_current_frame = false;
902         }
903         if (has_ready_frame) {
904                 assert(!has_current_frame);
905                 current_frame = ready_frame;
906                 ready_frame.ready_fence.reset();  // Drop the refcount.
907                 ready_frame.input_frames.clear();  // Drop the refcounts.
908                 has_current_frame = true;
909                 has_ready_frame = false;
910         }
911
912         *frame = current_frame;
913         return true;
914 }
915
916 void Mixer::OutputChannel::set_frame_ready_callback(Mixer::new_frame_ready_callback_t callback)
917 {
918         new_frame_ready_callback = callback;
919         has_new_frame_ready_callback = true;
920 }