diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2012-09-24 09:36:09 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-09-27 08:59:37 +0200 |
commit | 00e1afd83f7585f4acb65911100d79e32c1f6fc4 (patch) | |
tree | b66a055cfc9b7b0aeaf025fb5e58916df75721d5 /tests/lavf-regression.sh | |
parent | a714150827c70f8baf2ec42dfecd9363c17e803d (diff) | |
download | ffmpeg-00e1afd83f7585f4acb65911100d79e32c1f6fc4.tar.gz |
fate: add faststart regression test.
Also factorize the common options for the different mov-based tests.
Since the header is now on top in the last generated file, the data
offset in the seek test needed some updates as well.
Diffstat (limited to 'tests/lavf-regression.sh')
-rwxr-xr-x | tests/lavf-regression.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/lavf-regression.sh b/tests/lavf-regression.sh index 29f9ba17e9..4a348f57c3 100755 --- a/tests/lavf-regression.sh +++ b/tests/lavf-regression.sh @@ -107,8 +107,9 @@ do_lavf flv "" "-an" fi if [ -n "$do_mov" ] ; then -do_lavf mov "" "-movflags +rtphint -acodec pcm_alaw -vcodec mpeg4" -do_lavf_timecode mov "-acodec pcm_alaw -vcodec mpeg4" +mov_common_opt="-acodec pcm_alaw -vcodec mpeg4" +do_lavf mov "" "-movflags +rtphint $mov_common_opt" +do_lavf_timecode mov "-movflags +faststart $mov_common_opt" fi if [ -n "$do_ismv" ] ; then |