Mercurial > mplayer.hg
annotate TOOLS/benchmark/test.sh @ 17985:aea12573bf10
sync up to 1.223
author | ptt |
---|---|
date | Tue, 28 Mar 2006 00:15:16 +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 "" |