Browse Source

TT#111357 don't allow libav* to create its own threads

Change-Id: I5227bb947c07841f0481f73ee75f7c36cc8f3257
pull/1194/head
Richard Fuchs 5 years ago
parent
commit
a25fa3cc00
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      recording-daemon/mix.c

+ 2
- 0
recording-daemon/mix.c View File

@ -119,6 +119,8 @@ int mix_config(mix_t *mix, const format_t *format) {
mix->graph = avfilter_graph_alloc(); mix->graph = avfilter_graph_alloc();
if (!mix->graph) if (!mix->graph)
goto err; goto err;
mix->graph->nb_threads = 1;
mix->graph->thread_type = 0;
// amix // amix
err = "no amix filter available"; err = "no amix filter available";


Loading…
Cancel
Save