diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-04-01 14:02:47 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-04-01 23:54:29 +0200 |
commit | 064acc9743edfc4625d219e1152510ae027fceae (patch) | |
tree | dc807f69126196fe04c7f50536661aa54367b746 /libavutil | |
parent | 57d77b3963ce1023eaf5ada8cba58b9379405cc8 (diff) | |
download | ffmpeg-064acc9743edfc4625d219e1152510ae027fceae.tar.gz |
lavu/opencl: use consistent inclusion header guard name
Diffstat (limited to 'libavutil')
-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 f41ba89382..6ebde1023b 100644 --- a/libavutil/opencl.h +++ b/libavutil/opencl.h @@ -28,8 +28,8 @@ * change without prior notice. */ -#ifndef LIBAVUTIL_OPENCLWRAPPER_H -#define LIBAVUTIL_OPENCLWRAPPER_H +#ifndef LIBAVUTIL_OPENCL_H +#define LIBAVUTIL_OPENCL_H #include <CL/cl.h> #include "config.h" @@ -199,4 +199,4 @@ void av_opencl_release_kernel(AVOpenCLKernelEnv *env); */ void av_opencl_uninit(void); -#endif/*LIBAVUTIL_OPENCL_H*/ +#endif /* LIBAVUTIL_OPENCL_H */ |