summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-11-19 13:54:43 +0000
committerCarl Hetherington <cth@carlh.net>2014-11-19 13:54:43 +0000
commit30548ee7db0652fe492f11eb0dbf4b25ee693041 (patch)
treea4ab60928103cd504421150c21f07d97a9c93071
parent81c71ecbd9106d93e5e2ce803ea924199f464d8f (diff)
Rename script.
-rwxr-xr-xhacks/compare_dcp_tests.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/hacks/compare_dcp_tests.sh b/hacks/compare_dcp_tests.sh
deleted file mode 100755
index 30949cdef..000000000
--- a/hacks/compare_dcp_tests.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-name=$1
-if [ "$name" == "" ]; then
- echo "Syntax $0 <name>"
- exit 1
-fi
-
-mkdir -p tmp/ref
-cp test/data/$name/*video.mxf tmp/ref
-cd tmp/ref
-asdcp-unwrap *.mxf
-for f in *.j2c; do
- j2k_to_image -i $f -o $f.png
-done
-cd ../..
-
-mkdir -p tmp/new
-for d in `find build/test/$name -mindepth 1 -maxdepth 1 -type d`; do
- b=`basename $d`
- echo $d, $b
- if [ $b != "info" -a $b != "video" ]; then
- cp $d/*video.mxf tmp/new
- fi
-done
-
-cd tmp/new
-asdcp-unwrap *.mxf
-for f in *.j2c; do
- j2k_to_image -i $f -o $f.png
-done
-cd ../..
-
-eog tmp/ref/*.png &
-eog tmp/new/*.png
-