From 5499a313228d2345da41f6f6202a6f789706d442 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 21 Apr 2009 21:51:01 +0000 Subject: [PATCH] Add missing header inclusion guard. Originally committed as revision 18647 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/pixdesc.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavcodec/pixdesc.h b/libavcodec/pixdesc.h index 5c2718dba..a8ca48454 100644 --- a/libavcodec/pixdesc.h +++ b/libavcodec/pixdesc.h @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVCODEC_PIXDESC_H +#define AVCODEC_PIXDESC_H + #include #include "libavutil/intreadwrite.h" @@ -188,3 +191,5 @@ static inline void write_line(const uint16_t *src, uint8_t *data[4], const int l } } } + +#endif /* AVCODEC_PIXDESC_H */ -- 2.11.0