mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-02 03:06:28 +02:00
f08e024ac7
Explicitly insert the scale or aresample filter where it would have been inserted by the negotiation. Re-enable conversions if it cannot be done easily. If a conversion is needed in a test, we want to know about it. If the negotiation changes and makes new conversion necessary, we want to know about it even more.
31 lines
1.2 KiB
Makefile
31 lines
1.2 KiB
Makefile
FATE_GIF += fate-gif-color
|
|
fate-gif-color: CMD = framecrc -i $(TARGET_SAMPLES)/gif/tc217.gif -pix_fmt bgra
|
|
|
|
FATE_GIF += fate-gif-disposal-background
|
|
fate-gif-disposal-background: CMD = framecrc -trans_color 0 -i $(TARGET_SAMPLES)/gif/m4nb.gif -pix_fmt bgra
|
|
|
|
FATE_GIF += fate-gif-disposal-restore
|
|
fate-gif-disposal-restore: CMD = framecrc -i $(TARGET_SAMPLES)/gif/banner2.gif -pix_fmt bgra
|
|
|
|
FATE_GIF += fate-gif-gray
|
|
fate-gif-gray: CMD = framecrc -i $(TARGET_SAMPLES)/gif/Newtons_cradle_animation_book_2.gif -pix_fmt bgra
|
|
|
|
FATE_GIF += fate-gif-deal
|
|
fate-gif-deal: CMD = framecrc -i $(TARGET_SAMPLES)/gif/deal.gif -vsync cfr -pix_fmt bgra
|
|
|
|
fate-gifenc%: fate-gif-color
|
|
fate-gifenc%: PIXFMT = $(word 3, $(subst -, ,$(@)))
|
|
fate-gifenc%: SRC = $(TARGET_SAMPLES)/gif/tc217.gif
|
|
fate-gifenc%: CMD = framecrc -i $(SRC) -c:v gif -pix_fmt $(PIXFMT) -sws_flags +accurate_rnd+bitexact -vf scale
|
|
|
|
FATE_GIF_ENC_PIXFMT = rgb8 bgr8 rgb4_byte bgr4_byte gray pal8
|
|
FATE_GIF_ENC-$(call ENCDEC, GIF, GIF) = $(FATE_GIF_ENC_PIXFMT:%=fate-gifenc-%)
|
|
|
|
FATE_GIF += $(FATE_GIF_ENC-yes)
|
|
fate-gifenc: $(FATE_GIF_ENC-yes)
|
|
|
|
FATE_GIF-$(call DEMDEC, GIF, GIF) += $(FATE_GIF)
|
|
|
|
FATE_SAMPLES_AVCONV += $(FATE_GIF-yes)
|
|
fate-gif: $(FATE_GIF-yes)
|