annotate TOOLS/benchmark/test.sh @ 17588:79081ba52e00
Move the v{Y,C}CoeffsBank vectors into the SwsContext, filling them in just
once when the scaler is initialized, instead of building them and freeing
them over and over. This gives massive performance improvements.
patch by Alan Curry, pacman*at*TheWorld*dot*com
author |
diego |
date |
Sat, 11 Feb 2006 14:16:10 +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 ""
|