From 0eb45343ca004aeb5e79f174f1d4df49f7725570 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 17 Oct 2015 14:20:53 +0200 Subject: vaapi: drop non-existing FourCC This VA_FOURCC isn't even defined by latest drivers, so I'm just assuming it doesn't exist and never existed. For planar 4:2:0, VA_FOURCC_YV12 is normally preferred, and there's even a VA_FOURCC_IYUV for 4:2:0 with unswapped planes. --- video/vaapi.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'video/vaapi.h') diff --git a/video/vaapi.h b/video/vaapi.h index a3478c018d..888730e514 100644 --- a/video/vaapi.h +++ b/video/vaapi.h @@ -23,10 +23,6 @@ #include #include -#ifndef VA_FOURCC_I420 -#define VA_FOURCC_I420 VA_FOURCC('I', '4', '2', '0') -#endif - #define VA_STR_FOURCC(fcc) \ (const char[]){(fcc), (fcc) >> 8u, (fcc) >> 16u, (fcc) >> 24u, 0} -- cgit v1.2.3