summaryrefslogtreecommitdiff
path: root/tests/fate-run.sh
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-09-20 15:26:03 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-09-20 15:52:08 +0200
commit492259ccda43e3b6de37b3a8d9614a2c58baf4e5 (patch)
tree2b9de8ee6266a1e858010baa46e6e5f1c37e2178 /tests/fate-run.sh
parente048b46f14d655d489ca8d3869afc0b67802dc49 (diff)
fate: add aac_adtstoasc test (Ticket 3715)
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-xtests/fate-run.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 1111cffebc..c640cc5794 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -197,6 +197,7 @@ transcode(){
srcfile=$2
enc_fmt=$3
enc_opt=$4
+ final_decode=$5
encfile="${outdir}/${test}.${enc_fmt}"
test "$7" = -keep || cleanfiles="$cleanfiles $encfile"
tsrcfile=$(target_path $srcfile)
@@ -205,7 +206,7 @@ transcode(){
-f $enc_fmt -y $tencfile || return
do_md5sum $encfile
echo $(wc -c $encfile)
- ffmpeg $DEC_OPTS -i $encfile $ENC_OPTS $FLAGS \
+ ffmpeg $DEC_OPTS -i $encfile $ENC_OPTS $FLAGS $final_decode \
-f framecrc - || return
}