From 7e7ef2f01d56cc1a89b41ee45419075e01bf1ebd Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 17 Oct 2015 14:17:49 +0200 Subject: build: bump required libva version 0.34 and 0.35 don't have the buffer API, such as vaAcquireBufferHandle. This is only needed for the EGL interop, but why bother staying compatible for such old things (0.36 was released over a year ago). We also can drop some minor compatibility ifdeffery. --- video/vaapi.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'video/vaapi.h') diff --git a/video/vaapi.h b/video/vaapi.h index 3f4a02b2bb..a3478c018d 100644 --- a/video/vaapi.h +++ b/video/vaapi.h @@ -26,12 +26,6 @@ #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 VA_FOURCC('I', '4', '2', '0') #endif -#ifndef VA_FOURCC_RGBX -#define VA_FOURCC_RGBX 0x58424752 -#endif -#ifndef VA_FOURCC_BGRX -#define VA_FOURCC_BGRX 0x58524742 -#endif #define VA_STR_FOURCC(fcc) \ (const char[]){(fcc), (fcc) >> 8u, (fcc) >> 16u, (fcc) >> 24u, 0} -- cgit v1.2.3