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/microsoft.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/microsoft.mak')
-rw-r--r-- | tests/fate/microsoft.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fate/microsoft.mak b/tests/fate/microsoft.mak index e1aac0b8c1..639757880c 100644 --- a/tests/fate/microsoft.mak +++ b/tests/fate/microsoft.mak @@ -11,10 +11,10 @@ FATE_MSS2 += fate-mss2-pals fate-mss2-pals: CMD = framecrc -i $(TARGET_SAMPLES)/mss2/rlepals.wmv FATE_MSS2 += fate-mss2-rgb555 -fate-mss2-rgb555: CMD = framecrc -i $(TARGET_SAMPLES)/mss2/rle555.wmv -pix_fmt rgb555le +fate-mss2-rgb555: CMD = framecrc -i $(TARGET_SAMPLES)/mss2/rle555.wmv -pix_fmt rgb555le -vf scale FATE_MSS2 += fate-mss2-rgb555s -fate-mss2-rgb555s: CMD = framecrc -i $(TARGET_SAMPLES)/mss2/rle555s.wmv -pix_fmt rgb555le +fate-mss2-rgb555s: CMD = framecrc -i $(TARGET_SAMPLES)/mss2/rle555s.wmv -pix_fmt rgb555le -vf scale FATE_MSS2 += fate-mss2-wmv fate-mss2-wmv: CMD = framecrc -i $(TARGET_SAMPLES)/mss2/msscreencodec.wmv -an -frames 100 |