annotate tests/test-vamp-test-plugin/test-vamp-test-plugin.sh @ 271:7b3a80021b7c piper-nopiper

Add MAD_BUFFER_GUARD padding at end of mp3 buffer, in order to ensure last frame is decoded successfully (otherwise the decoded audio is truncated). Another thing learned from madplay.
author Chris Cannam
date Thu, 24 Nov 2016 17:06:31 +0000
parents ffa60ff17a86
children 23b1e214014a
rev   line source
Chris@75 1 #!/bin/bash
Chris@75 2
Chris@119 3 . ../include.sh
Chris@75 4
Chris@119 5 infile=$audiopath/20sec-silence.wav
Chris@75 6 tmpcsv=$mypath/tmp_1_$$.csv
Chris@75 7
Chris@75 8 trap "rm -f $tmpcsv" 0
Chris@75 9
Chris@256 10 $r --transform-minversion $testplug 4 || \
Chris@256 11 fail "Vamp Test Plugin version is too old (at least v4 required)"
Chris@256 12
Chris@256 13 for output in instants curve-oss curve-fsr curve-fsr-timed curve-fsr-mixed curve-vsr grid-oss grid-fsr notes-regions; do
Chris@75 14
Chris@75 15 $r -d "$testplug:$output" -w csv --csv-one-file "$tmpcsv" --csv-force "$infile" 2>/dev/null || \
Chris@75 16 fail "Failed to run for plugin $testplug with output $output"
Chris@75 17
Chris@75 18 csvcompare_ignorefirst "$tmpcsv" "$mypath/expected/vamp-test-plugin-$output.csv" || \
Chris@256 19 faildiff "Output differs from expected for $output" "$tmpcsv" "$mypath/expected/vamp-test-plugin-$output.csv"
Chris@75 20
Chris@75 21 done
Chris@75 22
Chris@75 23 exit 0
Chris@75 24