diff options
author | James Almer <jamrial@gmail.com> | 2015-01-12 13:48:52 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-01-12 13:49:56 -0300 |
commit | 3aaff803489af21011b8cf03847e17b29643c922 (patch) | |
tree | 485e802049e71b03106bf3c796d5945036aaa59c /libavutil/opencl.h | |
parent | 365ef88d5df4756942324b633cc439154e468276 (diff) | |
download | ffmpeg-3aaff803489af21011b8cf03847e17b29643c922.tar.gz |
avutil/opencl: don't include config.h
It's not an installed header.
Tested-by: Thilo Borgmann <thilo.borgmann@mail.de>
Tested-by: Wei Gao <highgod0401@gmail.com>
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/opencl.h')
-rw-r--r-- | libavutil/opencl.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavutil/opencl.h b/libavutil/opencl.h index 4655cba552..0b7b8d4764 100644 --- a/libavutil/opencl.h +++ b/libavutil/opencl.h @@ -32,11 +32,10 @@ #ifndef LIBAVUTIL_OPENCL_H #define LIBAVUTIL_OPENCL_H -#include "config.h" -#if HAVE_CL_CL_H -#include <CL/cl.h> -#else +#ifdef __APPLE__ #include <OpenCL/cl.h> +#else +#include <CL/cl.h> #endif #include <stdint.h> #include "dict.h" |