summaryrefslogtreecommitdiffstats
path: root/TOOLS/benchmark/test.sh
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-18 21:06:04 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-18 21:06:04 +0000
commit946d61003226b5a26ff2d607b49afb370d51c5c3 (patch)
treee0dc15cacba233889c372d980097904a14041a5b /TOOLS/benchmark/test.sh
parent9efe559634f26fae45d3b071fc7032e5af6fd00e (diff)
downloadmpv-946d61003226b5a26ff2d607b49afb370d51c5c3.tar.bz2
mpv-946d61003226b5a26ff2d607b49afb370d51c5c3.tar.xz
scripts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2264 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/benchmark/test.sh')
-rwxr-xr-xTOOLS/benchmark/test.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/TOOLS/benchmark/test.sh b/TOOLS/benchmark/test.sh
new file mode 100755
index 0000000000..e83eba86aa
--- /dev/null
+++ b/TOOLS/benchmark/test.sh
@@ -0,0 +1,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 ""