diff mbox series

[FFmpeg-devel,v1,8/9] FATE/pixfmt_best: fix fail by new rules in commit 97ba9c1a

Message ID 20200619015248.21873-8-fei.w.wang@intel.com
State New
Headers show
Series [FFmpeg-devel,v1,1/9] lavu/pix_fmt: add P012 pixel format | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Fei Wang June 19, 2020, 1:52 a.m. UTC
Signed-off-by: Fei Wang <fei.w.wang@intel.com>
---
 libavutil/tests/pixfmt_best.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavutil/tests/pixfmt_best.c b/libavutil/tests/pixfmt_best.c
index 53f7264207..01387c7c98 100644
--- a/libavutil/tests/pixfmt_best.c
+++ b/libavutil/tests/pixfmt_best.c
@@ -133,7 +133,7 @@  int main(void)
     TEST(AV_PIX_FMT_RGB48LE,     AV_PIX_FMT_RGB48);
 
     // Opaque formats are least unlike each other.
-    TEST(AV_PIX_FMT_DXVA2_VLD, AV_PIX_FMT_VDPAU);
+    TEST(AV_PIX_FMT_DXVA2_VLD, AV_PIX_FMT_VAAPI);
 
     printf("%d tests passed, %d tests failed.\n", pass, fail);
     return !!fail;