summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhacks/compare_dcp_tests8
1 files changed, 4 insertions, 4 deletions
diff --git a/hacks/compare_dcp_tests b/hacks/compare_dcp_tests
index 30949cdef..ae9942c6e 100755
--- a/hacks/compare_dcp_tests
+++ b/hacks/compare_dcp_tests
@@ -7,7 +7,7 @@ if [ "$name" == "" ]; then
fi
mkdir -p tmp/ref
-cp test/data/$name/*video.mxf tmp/ref
+cp test/data/$name/j2c*.mxf tmp/ref
cd tmp/ref
asdcp-unwrap *.mxf
for f in *.j2c; do
@@ -20,17 +20,17 @@ 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
+ cp $d/j2c_*.mxf tmp/new
fi
done
cd tmp/new
asdcp-unwrap *.mxf
-for f in *.j2c; do
+for f in *.j2c; do
j2k_to_image -i $f -o $f.png
done
cd ../..
eog tmp/ref/*.png &
-eog tmp/new/*.png
+eog tmp/new/*.png