diff options
author | Mans Rullgard <mans@mansr.com> | 2011-05-20 12:57:12 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-05-20 13:50:52 +0100 |
commit | 6da57043eabdcde99e8411da3628f2249e951e66 (patch) | |
tree | 0b1d9708b284a79ef7bac2b3ef8726bf4806bde9 /tests | |
parent | 5ffccc00567363c8e09d4c47dd03dee99c312b7d (diff) | |
download | ffmpeg-6da57043eabdcde99e8411da3628f2249e951e66.tar.gz |
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: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/regression-funcs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regression-funcs.sh b/tests/regression-funcs.sh index b79c258e77..933aa648d6 100755 --- a/tests/regression-funcs.sh +++ b/tests/regression-funcs.sh @@ -53,7 +53,7 @@ echov(){ FFMPEG_OPTS="-v 0 -y" COMMON_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact" DEC_OPTS="$COMMON_OPTS -threads $threads" -ENC_OPTS="$COMMON_OPTS -dct fastint" +ENC_OPTS="$COMMON_OPTS -threads 1 -dct fastint" run_ffmpeg() { |