diff options
author | Martin Storsjö <martin@martin.st> | 2015-06-30 22:35:44 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-06-30 23:10:29 +0300 |
commit | e2bd03a14a4e3366df0b1ee8e284a97165be1f3c (patch) | |
tree | 9658a6582e499870bec15891b8a080af8e7b5e20 /tests/fate/video.mak | |
parent | 271ce76d317c5432e151216cf23f12b77ed6cb7e (diff) | |
download | ffmpeg-e2bd03a14a4e3366df0b1ee8e284a97165be1f3c.tar.gz |
fate: Avoid unnecessary pixel format conversions
Most of the fate-dds-* and fate-txd-* tests already
output into the same pixel format regardless of
platform endianness, so there's no need to force
conversion to another format.
This fixes the tests fate-txd-16bpp, fate-txd-odd,
fate-dds-rgb16, fate-dds-rgb24 and fate-dds-xrgb on
big endian, where the tests seem to fail due to issues
with certain conversion codepaths in swscale.
Those conversion codepaths should of course be fixed, but
the individual decoder tests should use as little extra
conversion steps as possible.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'tests/fate/video.mak')
-rw-r--r-- | tests/fate/video.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fate/video.mak b/tests/fate/video.mak index 016df7c437..f1d8f2a9c6 100644 --- a/tests/fate/video.mak +++ b/tests/fate/video.mak @@ -282,10 +282,10 @@ FATE_SAMPLES_AVCONV-$(call DEMDEC, TMV, TMV) += fate-tmv fate-tmv: CMD = framecrc -i $(TARGET_SAMPLES)/tmv/pop-partial.tmv -pix_fmt rgb24 FATE_TXD += fate-txd-16bpp -fate-txd-16bpp: CMD = framecrc -i $(TARGET_SAMPLES)/txd/misc.txd -pix_fmt bgra -an +fate-txd-16bpp: CMD = framecrc -i $(TARGET_SAMPLES)/txd/misc.txd -an FATE_TXD += fate-txd-odd -fate-txd-odd: CMD = framecrc -i $(TARGET_SAMPLES)/txd/odd.txd -pix_fmt bgra -an +fate-txd-odd: CMD = framecrc -i $(TARGET_SAMPLES)/txd/odd.txd -an FATE_TXD += fate-txd-pal8 fate-txd-pal8: CMD = framecrc -i $(TARGET_SAMPLES)/txd/outro.txd -pix_fmt rgb24 -an |