From 5b70e28c6ec9ddb8d6713460d3d9e7acdc80146a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Wed, 9 May 2012 09:06:06 +0200 Subject: [PATCH] lavc/libutvideo: protect header. --- libavcodec/libutvideo.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavcodec/libutvideo.h b/libavcodec/libutvideo.h index 0b98b7cd06..a9387e134e 100644 --- a/libavcodec/libutvideo.h +++ b/libavcodec/libutvideo.h @@ -24,6 +24,9 @@ * 'ULY0' (YCbCr 4:2:0), 'ULY2' (YCbCr 4:2:2), 'ULRG' (RGB), 'ULRA' (RGBA) */ +#ifndef AVCODEC_LIBUTVIDEO_H +#define AVCODEC_LIBUTVIDEO_H + #include #include #include @@ -40,3 +43,5 @@ typedef struct { unsigned int buf_size; uint8_t *buffer; } UtVideoContext; + +#endif /* AVCODEC_LIBUTVIDEO_H */