mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
a49d7a1497
Adds a fate test for the jpegxl_anim demuxer, that should allow testing for true positives and false positives for animated jpegxl files. Note that two of the test cases are not animated, in order to help sort out false positives. Signed-off-by: Leo Izen <leo.izen@gmail.com>
17 lines
864 B
Makefile
17 lines
864 B
Makefile
# These two are animated JXL files
|
|
FATE_JPEGXL_ANIM_DEMUX += fate-jxl-anim-demux-newton
|
|
fate-jxl-anim-demux-newton: CMD = framecrc -i $(TARGET_SAMPLES)/jxl/newton.jxl -c copy
|
|
FATE_JPEGXL_ANIM_DEMUX += fate-jxl-anim-demux-icos4d
|
|
fate-jxl-anim-demux-icos4d: CMD = framecrc -i $(TARGET_SAMPLES)/jxl/icos4d.jxl -c copy
|
|
|
|
# These two are not animated JXL. They are here to check false positives.
|
|
FATE_JPEGXL_ANIM_DEMUX += fate-jxl-anim-demux-belgium
|
|
fate-jxl-anim-demux-belgium: CMD = framecrc -i $(TARGET_SAMPLES)/jxl/belgium.jxl -c copy
|
|
FATE_JPEGXL_ANIM_DEMUX += fate-jxl-anim-demux-lenna256
|
|
fate-jxl-anim-demux-lenna256: CMD = framecrc -i $(TARGET_SAMPLES)/jxl/lenna-256.jxl -c copy
|
|
|
|
FATE_JPEGXL_ANIM_DEMUX += $(FATE_JPEGXL_ANIM_DEMUX-yes)
|
|
|
|
FATE_SAMPLES_FFMPEG-$(call FRAMECRC, JPEGXL_ANIM) += $(FATE_JPEGXL_ANIM_DEMUX)
|
|
fate-jxl-anim-demux: $(FATE_JPEGXL_ANIM_DEMUX)
|