summaryrefslogtreecommitdiffstats
path: root/video/vaapi.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-10-17 14:17:49 +0200
committerwm4 <wm4@nowhere>2015-10-17 14:17:49 +0200
commit7e7ef2f01d56cc1a89b41ee45419075e01bf1ebd (patch)
treeefd65d71046533ff5462b9cac865b77b06c76787 /video/vaapi.h
parent76bfd5b4a237dda8f4ec5c05315bf566421f7908 (diff)
downloadmpv-7e7ef2f01d56cc1a89b41ee45419075e01bf1ebd.tar.bz2
mpv-7e7ef2f01d56cc1a89b41ee45419075e01bf1ebd.tar.xz
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.
Diffstat (limited to 'video/vaapi.h')
-rw-r--r--video/vaapi.h6
1 files changed, 0 insertions, 6 deletions
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}