diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-02-12 11:52:10 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-02-18 16:41:39 +0100 |
commit | f23a740303e0ae54f2dac936188475b9a9c761fc (patch) | |
tree | 8c08bab3d938525ee0063549ef604779594a6a67 /tests/fate-run.sh | |
parent | f3bd226de653fe1335a6b33a41319e106c16204c (diff) | |
download | ffmpeg-f23a740303e0ae54f2dac936188475b9a9c761fc.tar.gz |
Add muxer test based on stream-copy from FATE sample.
This should test muxing Theora into Ogg.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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 2f92a7dda6..d7b5e7e83b 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -77,13 +77,17 @@ pcm(){ regtest(){ t="${test#$2-}" ref=${base}/ref/$2/$t - ${base}/${1}-regression.sh $t $2 $3 "$target_exec" "$target_path" "$threads" "$thread_type" "$tool" + ${base}/${1}-regression.sh $t $2 $3 "$target_exec" "$target_path" "$threads" "$thread_type" "$tool" "$samples" } codectest(){ regtest codec $1 tests/$1 } +lavffatetest(){ + regtest lavf lavf-fate tests/vsynth1 +} + lavftest(){ regtest lavf lavf tests/vsynth1 } |