aboutsummaryrefslogtreecommitdiffhomepage
path: root/meson.build
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2026-08-01 21:49:08 +0200
committerdec05eba <dec05eba@protonmail.com>2026-08-01 21:49:08 +0200
commitbd12a0ede46bbd92510f1cd82b04383e4a9e83c8 (patch)
tree4cb025520db4c75e91e238207c3799ef15c227b1 /meson.build
parente91f1c0b75968c576fd5adb1738737cb19dd6094 (diff)
Move audio capture from main.cpp into audio_capture module and replace std::thread with pthread
Audio device and mix threads are now pthreads with explicit context structs, and the paused time tracking moved into a gsr_recording_clock.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index c751f9e..d56b21c 100644
--- a/meson.build
+++ b/meson.build
@@ -39,6 +39,8 @@ src = [
'src/recorder/capture_source.c',
'src/recorder/capture_setup.c',
'src/recorder/audio_input.c',
+ 'src/recorder/audio_capture.c',
+ 'src/recorder/recording_clock.c',
'src/egl.c',
'src/cuda.c',
'src/window_texture.c',