aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-08-02 17:07:41 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-08-02 23:25:07 +0200
commit9a345b235fbd6dd48030b192b2292b1806f8d600 (patch)
tree6e111350fff98d19506dadf361387b3cf355a7d6
parent8f6a95a103b4586bf79034c5c9e9764f7eb19b57 (diff)
downloadffmpeg-9a345b235fbd6dd48030b192b2292b1806f8d600.tar.gz
lavu/hwcontext_vaapi: Fix compilation if VA_FOURCC_ABGR is not defined.
Fixes ticket #5484. (cherry picked from commit 5aede051202150a1904c0f07a5c7901f402395a5)
-rw-r--r--libavutil/hwcontext_vaapi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/hwcontext_vaapi.c
index 3c1493be9a..92fa23538b 100644
--- a/libavutil/hwcontext_vaapi.c
+++ b/libavutil/hwcontext_vaapi.c
@@ -115,8 +115,10 @@ static struct {
MAP(BGRX, RGB32, BGR0),
MAP(RGBA, RGB32, RGBA),
MAP(RGBX, RGB32, RGB0),
+#ifdef VA_FOURCC_ABGR
MAP(ABGR, RGB32, ABGR),
MAP(XBGR, RGB32, 0BGR),
+#endif
MAP(ARGB, RGB32, ARGB),
MAP(XRGB, RGB32, 0RGB),
};