annotate TOOLS/benchmark/test.sh @ 6228:ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
slightly modified version of Michael's ffmpeg-preview-michael-20020529-mplayer.diff
author |
arpi |
date |
Wed, 29 May 2002 21:34:29 +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 ""
|