diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-04-04 11:16:23 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-04-04 11:16:23 -0700 |
commit | 7756859a313497c3cfb33ab2bd3feb168c55d917 (patch) | |
tree | ef9bbc9c71336cecb6cb6b009b58df4204848a55 /tests/fate | |
parent | bc0bdda77b8df4c963dde55793dcecb65232c21a (diff) | |
download | ffmpeg-7756859a313497c3cfb33ab2bd3feb168c55d917.tar.gz |
fate: add BMP tests.
Diffstat (limited to 'tests/fate')
-rw-r--r-- | tests/fate/bmp.mak | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/fate/bmp.mak b/tests/fate/bmp.mak new file mode 100644 index 0000000000..56b5059a33 --- /dev/null +++ b/tests/fate/bmp.mak @@ -0,0 +1,41 @@ +FATE_BMP += fate-bmp-1bit +fate-bmp-1bit: CMD = framecrc -i $(SAMPLES)/bmp/test1.bmp -pix_fmt rgb24 + +FATE_BMP += fate-bmp-4bit +fate-bmp-4bit: CMD = framecrc -i $(SAMPLES)/bmp/test4.bmp -pix_fmt rgb24 + +FATE_BMP += fate-bmp-4bit-os2 +fate-bmp-4bit-os2: CMD = framecrc -i $(SAMPLES)/bmp/test4os2v2.bmp -pix_fmt rgb24 + +FATE_BMP += fate-bmp-8bit +fate-bmp-8bit: CMD = framecrc -i $(SAMPLES)/bmp/test8.bmp -pix_fmt rgb24 + +FATE_BMP += fate-bmp-8bit-os2 +fate-bmp-8bit-os2: CMD = framecrc -i $(SAMPLES)/bmp/test8os2.bmp -pix_fmt rgb24 + +FATE_BMP += fate-bmp-15bit +fate-bmp-15bit: CMD = framecrc -i $(SAMPLES)/bmp/test16.bmp -pix_fmt rgb555le + +FATE_BMP += fate-bmp-15bit-mask +fate-bmp-15bit-mask: CMD = framecrc -i $(SAMPLES)/bmp/test16bf555.bmp -pix_fmt rgb555le + +FATE_BMP += fate-bmp-16bit-mask +fate-bmp-16bit-mask: CMD = framecrc -i $(SAMPLES)/bmp/test16bf565.bmp -pix_fmt rgb565le + +FATE_BMP += fate-bmp-24bit +fate-bmp-24bit: CMD = framecrc -i $(SAMPLES)/bmp/test24.bmp + +FATE_BMP += fate-bmp-32bit +fate-bmp-32bit: CMD = framecrc -i $(SAMPLES)/bmp/test32.bmp -pix_fmt bgr24 + +FATE_BMP += fate-bmp-32bit-mask +fate-bmp-32bit-mask: CMD = framecrc -i $(SAMPLES)/bmp/test32bf.bmp -pix_fmt bgr24 + +FATE_BMP += fate-bmp-rle4 +fate-bmp-rle4: CMD = framecrc -i $(SAMPLES)/bmp/testcompress4.bmp -pix_fmt rgb24 + +FATE_BMP += fate-bmp-rle8 +fate-bmp-rle8: CMD = framecrc -i $(SAMPLES)/bmp/testcompress8.bmp -pix_fmt rgb24 + +FATE_TESTS += $(FATE_BMP) +fate-bmp: $(FATE_BMP) |