aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-01-28 18:25:13 -0800
committerTimothy Gu <timothygu99@gmail.com>2016-01-31 15:44:11 -0800
commit180f9a09588d1c68983692bb5245213956fdde11 (patch)
treeacde2f7c3e24f7fab834cfafbeeebfc6b8785b8a /libavutil
parentdef56677e58de9aaa516a738b6469747662ac372 (diff)
downloadffmpeg-180f9a09588d1c68983692bb5245213956fdde11.tar.gz
all: Make header guard names consistent
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/mips/libm_mips.h6
-rw-r--r--libavutil/opencl.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/libavutil/mips/libm_mips.h b/libavutil/mips/libm_mips.h
index 8853bbc751..757867bce9 100644
--- a/libavutil/mips/libm_mips.h
+++ b/libavutil/mips/libm_mips.h
@@ -50,8 +50,8 @@
* MIPS optimization for some libm functions
*/
-#ifndef AVUTIL_LIBM_MIPS_H
-#define AVUTIL_LIBM_MIPS_H
+#ifndef AVUTIL_MIPS_LIBM_MIPS_H
+#define AVUTIL_MIPS_LIBM_MIPS_H
static av_always_inline av_const long int lrintf_mips(float x)
{
@@ -70,4 +70,4 @@ static av_always_inline av_const long int lrintf_mips(float x)
#define lrintf(x) lrintf_mips(x)
#define HAVE_LRINTF 1
-#endif /* AVUTIL_LIBM_MIPS_H */
+#endif /* AVUTIL_MIPS_LIBM_MIPS_H */
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 */