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 /configure | |
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 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1778,7 +1778,7 @@ test_deps _muxer _demuxer \ pcm_mulaw=mulaw \ mxf="mxf mxf_d10" \ nut \ - ogg \ + ogg="ogg ogg_vp3" \ rawvideo=pixfmt \ rm \ swf \ @@ -1946,11 +1946,12 @@ find_tests(){ ACODEC_TESTS=$(find_tests acodec) VCODEC_TESTS=$(find_tests vsynth1) +LAVF_FATE_TESTS=$(find_tests lavf-fate) LAVF_TESTS=$(find_tests lavf) LAVFI_TESTS=$(find_tests lavfi) SEEK_TESTS=$(find_tests seek seek_) -ALL_TESTS="$ACODEC_TESTS $VCODEC_TESTS $LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS" +ALL_TESTS="$ACODEC_TESTS $VCODEC_TESTS $LAVF_FATE_TESTS $LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS" pcm_test_deps=$(map 'echo ${v%_*}_decoder $v' $(filter pcm_* $ENCODER_LIST)) @@ -3699,6 +3700,7 @@ print_config CONFIG_ "$config_files" $CONFIG_LIST \ cat >>config.mak <<EOF ACODEC_TESTS=$(print_enabled -n _test $ACODEC_TESTS) VCODEC_TESTS=$(print_enabled -n _test $VCODEC_TESTS) +LAVF_FATE_TESTS=$(print_enabled -n _test $LAVF_FATE_TESTS) LAVF_TESTS=$(print_enabled -n _test $LAVF_TESTS) LAVFI_TESTS=$(print_enabled -n _test $LAVFI_TESTS) SEEK_TESTS=$(print_enabled -n _test $SEEK_TESTS) |