From 1204ce0b6371f5b51efdfe84d1b5aa5925809186 Mon Sep 17 00:00:00 2001 From: Rodger Combs Date: Mon, 27 Nov 2017 23:38:46 -0600 Subject: [PATCH] lavu/hwcontext_opencl.h: fix build on macOS --- libavutil/hwcontext_opencl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavutil/hwcontext_opencl.h b/libavutil/hwcontext_opencl.h index 8e34df44cd..ef54486c95 100644 --- a/libavutil/hwcontext_opencl.h +++ b/libavutil/hwcontext_opencl.h @@ -19,7 +19,11 @@ #ifndef AVUTIL_HWCONTEXT_OPENCL_H #define AVUTIL_HWCONTEXT_OPENCL_H +#ifdef __APPLE__ +#include +#else #include +#endif #include "frame.h"