diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 18:25:13 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-01-31 15:44:11 -0800 |
commit | 180f9a09588d1c68983692bb5245213956fdde11 (patch) | |
tree | acde2f7c3e24f7fab834cfafbeeebfc6b8785b8a /libavutil/opencl.h | |
parent | def56677e58de9aaa516a738b6469747662ac372 (diff) | |
download | ffmpeg-180f9a09588d1c68983692bb5245213956fdde11.tar.gz |
all: Make header guard names consistent
Diffstat (limited to 'libavutil/opencl.h')
-rw-r--r-- | libavutil/opencl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/opencl.h b/libavutil/opencl.h index 168461dc34..b709927c42 100644 --- a/libavutil/opencl.h +++ b/libavutil/opencl.h @@ -29,8 +29,8 @@ * change without prior notice. */ -#ifndef LIBAVUTIL_OPENCL_H -#define LIBAVUTIL_OPENCL_H +#ifndef AVUTIL_OPENCL_H +#define AVUTIL_OPENCL_H #define CL_USE_DEPRECATED_OPENCL_1_2_APIS 1 #ifdef __APPLE__ @@ -289,4 +289,4 @@ void av_opencl_uninit(void); int64_t av_opencl_benchmark(AVOpenCLDeviceNode *device, cl_platform_id platform, int64_t (*benchmark)(AVOpenCLExternalEnv *ext_opencl_env)); -#endif /* LIBAVUTIL_OPENCL_H */ +#endif /* AVUTIL_OPENCL_H */ |