annotate TOOLS/benchmark/test.sh @ 7950:d41eb993f6e2
Prebuffering is no longer the default option.
Switch :prebuf enables prebuffering, :noprebuf has been removed
Added new sync-engine, activate it with :sync
Rewrote commandline parser to be more intelligent (no need for an
internal structure of commands)
Replaced prebuf variable with spubuf, this name was real confusing. I
did not add this variable.
author |
mswitch |
date |
Tue, 29 Oct 2002 01:38:42 +0000 |
parents |
351aaf1eff87 |
children |
|
rev |
line source |
2263
|
1
|
|
2 echo 'File: ' $1
|
|
3 mplayer -frames 0 -vo null $1 | grep VIDEO
|
|
4
|
|
5 echo -n 'DShow DLL : '
|
|
6 ./test1.sh mplayer $1 -vc divxds -vo null |cut -c 15-23 |xargs echo
|
|
7 echo -n 'VfW DLL : '
|
|
8 ./test1.sh mplayer $1 -vc divx -vo null |cut -c 15-23 |xargs echo
|
|
9 echo -n 'DivX4-YV12 : '
|
|
10 ./test1.sh mplayer $1 -vc odivx -vo null |cut -c 15-23 |xargs echo
|
|
11 echo -n 'DivX4-YUY2 : '
|
|
12 ./test1.sh mplayer $1 -vc divx4 -vo null |cut -c 15-23 |xargs echo
|
|
13 echo -n 'FFmpeg : '
|
|
14 ./test1.sh mplayer $1 -vc ffdivx -vo null |cut -c 15-23 |xargs echo
|
|
15
|
|
16 echo ""
|