summaryrefslogtreecommitdiffstats
path: root/TOOLS/benchmark/test.sh
blob: e83eba86aa03c00f116a92c29fc0725065a4ad89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

echo 'File: ' $1
mplayer -frames 0 -vo null $1 | grep VIDEO

echo -n 'DShow DLL  : '
./test1.sh mplayer $1 -vc divxds -vo null |cut -c 15-23 |xargs echo
echo -n 'VfW DLL    : '
./test1.sh mplayer $1 -vc divx -vo null |cut -c 15-23 |xargs echo
echo -n 'DivX4-YV12 : '
./test1.sh mplayer $1 -vc odivx -vo null |cut -c 15-23 |xargs echo
echo -n 'DivX4-YUY2 : '
./test1.sh mplayer $1 -vc divx4 -vo null |cut -c 15-23 |xargs echo
echo -n 'FFmpeg     : '
./test1.sh mplayer $1 -vc ffdivx -vo null |cut -c 15-23 |xargs echo

echo ""