diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-05-09 09:06:06 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-05-18 23:34:11 +0200 |
commit | 5b70e28c6ec9ddb8d6713460d3d9e7acdc80146a (patch) | |
tree | 12b5428cd88afe9a5960e3d9c214bdb567545c2f /libavcodec/libutvideo.h | |
parent | c8a7dd03f8a3e16b20a60737d5a492255532f967 (diff) | |
download | ffmpeg-5b70e28c6ec9ddb8d6713460d3d9e7acdc80146a.tar.gz |
lavc/libutvideo: protect header.
Diffstat (limited to 'libavcodec/libutvideo.h')
-rw-r--r-- | libavcodec/libutvideo.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 <stdlib.h> #include <utvideo/utvideo.h> #include <utvideo/Codec.h> @@ -40,3 +43,5 @@ typedef struct { unsigned int buf_size; uint8_t *buffer; } UtVideoContext; + +#endif /* AVCODEC_LIBUTVIDEO_H */ |