diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2013-01-01 18:20:55 +0100 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2013-01-01 23:48:41 +0100 |
commit | 98ce9b84681bd4b8679bb25889e8f487c35e3ed3 (patch) | |
tree | a582bc52ad659908718552b58f62a2a3e68299e4 /tests/fate/ffmpeg.mak | |
parent | 102cf964ddc97b5ee4a5fe194794ae594617bfaf (diff) | |
download | ffmpeg-98ce9b84681bd4b8679bb25889e8f487c35e3ed3.tar.gz |
fate: merge mapchan and options into ffmpeg.
They were two very short files that cover ffmpeg-specific features.
Diffstat (limited to 'tests/fate/ffmpeg.mak')
-rw-r--r-- | tests/fate/ffmpeg.mak | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/fate/ffmpeg.mak b/tests/fate/ffmpeg.mak new file mode 100644 index 0000000000..eb8666f9ea --- /dev/null +++ b/tests/fate/ffmpeg.mak @@ -0,0 +1,21 @@ +FATE_MAPCHAN += fate-mapchan-6ch-extract-2 +fate-mapchan-6ch-extract-2: tests/data/asynth-22050-6.wav +fate-mapchan-6ch-extract-2: CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-22050-6.wav -map_channel 0.0.0 -flags +bitexact -f wav md5: -map_channel 0.0.1 -flags +bitexact -f wav md5: + +FATE_MAPCHAN += fate-mapchan-6ch-extract-2-downmix-mono +fate-mapchan-6ch-extract-2-downmix-mono: tests/data/asynth-22050-6.wav +fate-mapchan-6ch-extract-2-downmix-mono: CMD = md5 -i $(TARGET_PATH)/tests/data/asynth-22050-6.wav -map_channel 0.0.1 -map_channel 0.0.0 -ac 1 -flags +bitexact -f wav + +FATE_MAPCHAN += fate-mapchan-silent-mono +fate-mapchan-silent-mono: tests/data/asynth-22050-1.wav +fate-mapchan-silent-mono: CMD = md5 -i $(TARGET_PATH)/tests/data/asynth-22050-1.wav -map_channel -1 -map_channel 0.0.0 -flags +bitexact -f wav + +FATE_FFMPEG += $(FATE_MAPCHAN) +fate-mapchan: $(FATE_MAPCHAN) + +FATE_FFMPEG += fate-force_key_frames +fate-force_key_frames: tests/data/vsynth2.yuv +fate-force_key_frames: CMD = enc_dec \ + "rawvideo -s 352x288 -pix_fmt yuv420p" tests/data/vsynth2.yuv \ + avi "-c mpeg4 -g 240 -qscale 10 -force_key_frames 0.5,0:00:01.5" \ + framecrc "" "" "-skip_frame nokey" |