Browse code

fate: run avconv with -nostats flag

Signed-off-by: Mans Rullgard <mans@mansr.com>

Mans Rullgard authored on 2011/10/07 22:13:02
Showing 2 changed files
... ...
@@ -50,7 +50,7 @@ run(){
50 50
 }
51 51
 
52 52
 avconv(){
53
-    run avconv -v 0 -threads $threads -thread_type $thread_type "$@"
53
+    run avconv -nostats -threads $threads -thread_type $thread_type "$@"
54 54
 }
55 55
 
56 56
 framecrc(){
... ...
@@ -43,7 +43,7 @@ echov(){
43 43
 
44 44
 . $(dirname $0)/md5.sh
45 45
 
46
-AVCONV_OPTS="-v 0 -y"
46
+AVCONV_OPTS="-nostats -y"
47 47
 COMMON_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact"
48 48
 DEC_OPTS="$COMMON_OPTS -threads $threads"
49 49
 ENC_OPTS="$COMMON_OPTS -threads 1 -dct fastint"