Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-01-29 05:00:33 +0300
committerTimothy Gu <timothygu99@gmail.com>2016-01-29 06:49:48 +0300
commit44304ae3220f553d0b1458644e2a617ea1ad8d22 (patch)
tree90f08e24290d98cce881b05fce33fa9bcecbcea4 /libavutil/opencl_internal.h
parent6bc610b39efed743a8616104ce59c860f20487ef (diff)
all: Add missing header guards
Diffstat (limited to 'libavutil/opencl_internal.h')
-rw-r--r--libavutil/opencl_internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/opencl_internal.h b/libavutil/opencl_internal.h
index ddc6d3acba..5cabb7b3ee 100644
--- a/libavutil/opencl_internal.h
+++ b/libavutil/opencl_internal.h
@@ -20,6 +20,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#ifndef AVUTIL_OPENCL_INTERNAL_H
+#define AVUTIL_OPENCL_INTERNAL_H
+
#include "attributes.h"
#include "opencl.h"
@@ -33,3 +36,5 @@ typedef struct {
av_warn_unused_result
int avpriv_opencl_set_parameter(FFOpenclParam *opencl_param, ...);
+
+#endif /* AVUTIL_OPENCL_INTERNAL_H */