diff options
author | Nicolas George <george@nsup.org> | 2020-09-14 21:23:20 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2020-09-30 16:39:34 +0200 |
commit | 3bf5cc9c588b41d4ba49821e57650dbbf187f932 (patch) | |
tree | b45921bdd24bbd0c2f90c3c52693057e15d02b9f /tests/fate/bmp.mak | |
parent | 9d8f9b2e4094ae6b07a9f23ae044b802722b3b4e (diff) | |
download | ffmpeg-3bf5cc9c588b41d4ba49821e57650dbbf187f932.tar.gz |
fate: add scale filters for big-endian architectures.
Filters mostly work in native endianness, but they must output
a specified endianness, usually little: that requires a final
conversion for big endian.
I do not know what's the deal with gif-deal: inserting explicitly
the filters that are implicitly inserted result in less frames in
output. Probably a strange problem of duration.
Diffstat (limited to 'tests/fate/bmp.mak')
-rw-r--r-- | tests/fate/bmp.mak | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fate/bmp.mak b/tests/fate/bmp.mak index f7a7ed12ad..de27f19b15 100644 --- a/tests/fate/bmp.mak +++ b/tests/fate/bmp.mak @@ -14,13 +14,13 @@ FATE_BMP += fate-bmp-8bit-os2 fate-bmp-8bit-os2: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test8os2.bmp -pix_fmt rgb24 -vf scale FATE_BMP += fate-bmp-15bit -fate-bmp-15bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16.bmp -pix_fmt rgb555le +fate-bmp-15bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16.bmp -pix_fmt rgb555le -vf scale FATE_BMP += fate-bmp-15bit-mask -fate-bmp-15bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf555.bmp -pix_fmt rgb555le +fate-bmp-15bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf555.bmp -pix_fmt rgb555le -vf scale FATE_BMP += fate-bmp-16bit-mask -fate-bmp-16bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf565.bmp -pix_fmt rgb565le +fate-bmp-16bit-mask: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test16bf565.bmp -pix_fmt rgb565le -vf scale FATE_BMP += fate-bmp-24bit fate-bmp-24bit: CMD = framecrc -i $(TARGET_SAMPLES)/bmp/test24.bmp |