bmp.mak 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. FATE_BMP += fate-bmp-1bit
  2. fate-bmp-1bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test1.bmp -pix_fmt rgb24
  3. FATE_BMP += fate-bmp-4bit
  4. fate-bmp-4bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test4.bmp -pix_fmt rgb24
  5. FATE_BMP += fate-bmp-4bit-os2
  6. fate-bmp-4bit-os2: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test4os2v2.bmp -pix_fmt rgb24
  7. FATE_BMP += fate-bmp-8bit
  8. fate-bmp-8bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test8.bmp -pix_fmt rgb24
  9. FATE_BMP += fate-bmp-8bit-os2
  10. fate-bmp-8bit-os2: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test8os2.bmp -pix_fmt rgb24
  11. FATE_BMP += fate-bmp-15bit
  12. fate-bmp-15bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16.bmp -pix_fmt rgb555le
  13. FATE_BMP += fate-bmp-15bit-mask
  14. fate-bmp-15bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf555.bmp -pix_fmt rgb555le
  15. FATE_BMP += fate-bmp-16bit-mask
  16. fate-bmp-16bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf565.bmp -pix_fmt rgb565le
  17. FATE_BMP += fate-bmp-24bit
  18. fate-bmp-24bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test24.bmp
  19. FATE_BMP += fate-bmp-32bit
  20. fate-bmp-32bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test32.bmp -pix_fmt bgr24
  21. FATE_BMP += fate-bmp-32bit-mask
  22. fate-bmp-32bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test32bf.bmp -pix_fmt bgr24
  23. FATE_BMP += fate-bmp-rle4
  24. fate-bmp-rle4: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/testcompress4.bmp -pix_fmt rgb24
  25. FATE_BMP += fate-bmp-rle8
  26. fate-bmp-rle8: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/testcompress8.bmp -pix_fmt rgb24
  27. FATE_BMP-$(call DEMDEC, IMAGE2, BMP) += $(FATE_BMP)
  28. FATE_SAMPLES_AVCONV += $(FATE_BMP-yes)
  29. fate-bmp: $(FATE_BMP-yes)