From fddfee05a9fd533bb0bb5a55e001530f5ff9cad3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 9 May 2015 10:00:51 +0200 Subject: [PATCH] Turn threaded data runloop off by default - still very unstable when used in conjunction with threaded video --- config.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index ad6b287d2f..d4b212a2e0 100644 --- a/config.def.h +++ b/config.def.h @@ -417,7 +417,8 @@ static unsigned swap_interval = 1; static const bool video_threaded = false; #ifdef HAVE_THREADS -static const bool threaded_data_runloop_enable = true; +/* unstable for now when used in conjunction with threaded video */ +static const bool threaded_data_runloop_enable = false; #else static const bool threaded_data_runloop_enable = false; #endif