X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=hacks%2Fcompare_dcp_tests;h=ae9942c6ec252546a93c19b5bbaa87cadc61c2a8;hb=2034cf8a82be21d4d07de81ae40c8255da1ed21e;hp=30949cdef62a40c1d2d41ddcec7b5bd31e6d5152;hpb=7c34de96993118984ee3f683b2ff0c85fa1081cc;p=dcpomatic.git 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