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:
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 /libavfilter/blend.h
parent6bc610b39efed743a8616104ce59c860f20487ef (diff)
all: Add missing header guards
Diffstat (limited to 'libavfilter/blend.h')
-rw-r--r--libavfilter/blend.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/blend.h b/libavfilter/blend.h
index fcedd415b8..ed0738cbdd 100644
--- a/libavfilter/blend.h
+++ b/libavfilter/blend.h
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#ifndef AVFILTER_BLEND_H
+#define AVFILTER_BLEND_H
+
#include "libavutil/eval.h"
#include "avfilter.h"
@@ -68,3 +71,5 @@ typedef struct FilterParams {
} FilterParams;
void ff_blend_init_x86(FilterParams *param, int is_16bit);
+
+#endif /* AVFILTER_BLEND_H */