diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-09-20 15:26:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-09-20 15:52:08 +0200 |
commit | 492259ccda43e3b6de37b3a8d9614a2c58baf4e5 (patch) | |
tree | 2b9de8ee6266a1e858010baa46e6e5f1c37e2178 /tests/fate-run.sh | |
parent | e048b46f14d655d489ca8d3869afc0b67802dc49 (diff) | |
download | ffmpeg-492259ccda43e3b6de37b3a8d9614a2c58baf4e5.tar.gz |
fate: add aac_adtstoasc test (Ticket 3715)
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 3 |
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 } |