diff options
Diffstat (limited to 'src/rmd_capture_sound.c')
-rw-r--r-- | src/rmd_capture_sound.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rmd_capture_sound.c b/src/rmd_capture_sound.c index 76ccd4b..0c95afa 100644 --- a/src/rmd_capture_sound.c +++ b/src/rmd_capture_sound.c @@ -29,6 +29,7 @@ #include "rmd_jack.h" #include "rmd_opendev.h" +#include "rmd_threads.h" #include "rmd_types.h" #include <pthread.h> @@ -46,6 +47,8 @@ void *rmdCaptureSound(ProgData *pdata) { #ifdef HAVE_LIBASOUND int frames = pdata->periodsize; #endif + rmdThreadsSetName("rmdCaptureSound"); + //start capturing only after first frame is taken nanosleep(&(struct timespec){ .tv_nsec = pdata->frametime * 1000 }, NULL); |