Browse code

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>

Mans Rullgard authored on 2011/05/20 20:57:12
Showing 1 changed files
... ...
@@ -53,7 +53,7 @@ echov(){
53 53
 FFMPEG_OPTS="-v 0 -y"
54 54
 COMMON_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact"
55 55
 DEC_OPTS="$COMMON_OPTS -threads $threads"
56
-ENC_OPTS="$COMMON_OPTS -dct fastint"
56
+ENC_OPTS="$COMMON_OPTS -threads 1 -dct fastint"
57 57
 
58 58
 run_ffmpeg()
59 59
 {