mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-03 00:56:54 +00:00
pthread: dont autoenable frame threads with visualization
This combination doesnt work Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e404eee1e1
commit
57581e4110
@ -781,6 +781,8 @@ static int frame_thread_init(AVCodecContext *avctx)
|
||||
|
||||
if (!thread_count) {
|
||||
int nb_cpus = get_logical_cpus(avctx);
|
||||
if ((avctx->debug & (FF_DEBUG_VIS_QP | FF_DEBUG_VIS_MB_TYPE)) || avctx->debug_mv)
|
||||
nb_cpus = 1;
|
||||
// use number of cores + 1 as thread count if there is motre than one
|
||||
if (nb_cpus > 1)
|
||||
thread_count = avctx->thread_count = nb_cpus + 1;
|
||||
|
Loading…
Reference in New Issue
Block a user