Skip to content
Snippets Groups Projects
Commit 6da57043 authored by Mans Rullgard's avatar Mans Rullgard
Browse files

fate: disable threading for encoding


This explicitly disables threading for encoding as slices are otherwise
automatically activated.  This should be dropped once option resetting
between files is fully implemented.

Signed-off-by: default avatarMans Rullgard <mans@mansr.com>
parent 5ffccc00
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ echov(){ ...@@ -53,7 +53,7 @@ echov(){
FFMPEG_OPTS="-v 0 -y" FFMPEG_OPTS="-v 0 -y"
COMMON_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact" COMMON_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact"
DEC_OPTS="$COMMON_OPTS -threads $threads" DEC_OPTS="$COMMON_OPTS -threads $threads"
ENC_OPTS="$COMMON_OPTS -dct fastint" ENC_OPTS="$COMMON_OPTS -threads 1 -dct fastint"
run_ffmpeg() run_ffmpeg()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment