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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-05-23 07:44:32 +0300
committerJames Almer <jamrial@gmail.com>2015-05-23 07:44:54 +0300
commit44ca8a6adbc3157771b9388876c29d260a165ba7 (patch)
tree13e171fb7d80f000133ff010b7b8fcdf207a172e /libavcodec/libwebpenc_common.h
parent98be2d94eaa1706aeac25cb8624bcb6bd1d9e782 (diff)
libwebpenc_common: add header guards
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/libwebpenc_common.h')
-rw-r--r--libavcodec/libwebpenc_common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/libwebpenc_common.h b/libavcodec/libwebpenc_common.h
index ea2410ceac..1126fd0a30 100644
--- a/libavcodec/libwebpenc_common.h
+++ b/libavcodec/libwebpenc_common.h
@@ -24,6 +24,9 @@
* WebP encoder using libwebp: common structs and methods.
*/
+#ifndef AVCODEC_LIBWEBPENC_COMMON_H
+#define AVCODEC_LIBWEBPENC_COMMON_H
+
#include <webp/encode.h>
#include "libavutil/common.h"
@@ -87,3 +90,5 @@ static const AVCodecDefault libwebp_defaults[] = {
{ "global_quality", "-1" },
{ NULL },
};
+
+#endif /* AVCODEC_LIBWEBPENC_COMMON_H */