summaryrefslogtreecommitdiff
path: root/ffmpeg1/tests/copycooker.sh
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-09-05 17:55:35 +0100
committerTim Redfern <tim@eclectronics.org>2013-09-05 17:55:35 +0100
commit741fb4b9e135cfb161a749db88713229038577bb (patch)
tree08bc9925659cbcac45162bacf31dc6336d4f60b4 /ffmpeg1/tests/copycooker.sh
parenta2e1bf3495b7bfefdaedb8fc737e969ab06df079 (diff)
making act segmenter
Diffstat (limited to 'ffmpeg1/tests/copycooker.sh')
-rwxr-xr-xffmpeg1/tests/copycooker.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/ffmpeg1/tests/copycooker.sh b/ffmpeg1/tests/copycooker.sh
deleted file mode 100755
index 4b5811d..0000000
--- a/ffmpeg1/tests/copycooker.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-LC_ALL=C
-export LC_ALL
-
-datadir="tests/data"
-
-logfile="$datadir/copy.regression"
-reffile="$1"
-
-list=$(grep -oh ' ./tests/data/.*' tests/ref/{acodec,lavf,vsynth1}/*| sort)
-rm -f $logfile
-for i in $list ; do
- echo ---------------- >> $logfile
- echo $i >> $logfile
- ./ffmpeg_g -flags +bitexact -i $i -acodec copy -vcodec copy -y first.nut
- ./ffmpeg_g -flags +bitexact -i first.nut -acodec copy -vcodec copy -y second.nut
- cmp first.nut second.nut >> $logfile
- md5sum first.nut >> $logfile
-done
-
-if diff -u -w "$reffile" "$logfile" ; then
- echo
- echo copy regression test: success
- exit 0
-else
- echo
- echo copy regression test: error
- exit 1
-fi