diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-04-17 17:27:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-17 18:17:35 +0200 |
commit | 49d5c24aa150df3a6c25450f396889cc065501aa (patch) | |
tree | 9c84b9f0df99ee9a5d8d1826a6ea4f806e4047fe /tests/fate-run.sh | |
parent | 2a0aa318f813f7161760361f03c896d1443b704e (diff) | |
download | ffmpeg-49d5c24aa150df3a6c25450f396889cc065501aa.tar.gz |
fate: gapless: test seeking to a specific position
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index f1afebbafb..0165812208 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -226,7 +226,8 @@ gapless(){ decfile1="${outdir}/${test}.out-1" decfile2="${outdir}/${test}.out-2" - cleanfiles="$cleanfiles $decfile1 $decfile2" + decfile3="${outdir}/${test}.out-3" + cleanfiles="$cleanfiles $decfile1 $decfile2 $decfile3" # large enough to make ffmpeg.c seek to the start of the file start_offset=-1 @@ -240,6 +241,9 @@ gapless(){ ffmpeg -ss $start_offset -i "$sample" $extra_args -flags +bitexact -c:a copy -f framecrc -y $decfile2 do_md5sum $decfile2 ffmpeg -ss $start_offset -i "$sample" $extra_args -flags +bitexact -f wav md5: + # test packet data, with seeking to a specific position + ffmpeg -ss 5 -i "$sample" $extra_args -flags +bitexact -c:a copy -f framecrc -y $decfile3 + do_md5sum $decfile3 } mkdir -p "$outdir" |