From: Aurelien Jacobs Date: Fri, 9 Nov 2007 23:12:31 +0000 (+0000) Subject: add multiple inclusion guards X-Git-Tag: v0.5~6993 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49e9a4bf7cc14f758bb2a147e8790fb1831e7cc5;p=platform%2Fupstream%2Flibav.git add multiple inclusion guards Originally committed as revision 10986 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h index 43ce58e..2a60328 100644 --- a/libavcodec/intrax8.h +++ b/libavcodec/intrax8.h @@ -16,6 +16,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef FFMPEG_INTRAX8_H +#define FFMPEG_INTRAX8_H + typedef struct{ VLC * j_ac_vlc[4];//they point to the static j_mb_vlc VLC * j_orient_vlc; @@ -46,3 +49,5 @@ typedef struct{ void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s); int ff_intrax8_decode_picture(IntraX8Context * w, int quant, int halfpq); + +#endif /* FFMPEG_INTRAX8_H */ diff --git a/libavcodec/intrax8huf.h b/libavcodec/intrax8huf.h index 6d3653e..0b1da8e 100644 --- a/libavcodec/intrax8huf.h +++ b/libavcodec/intrax8huf.h @@ -16,6 +16,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef FFMPEG_INTRAX8HUF_H +#define FFMPEG_INTRAX8HUF_H + #include @@ -911,3 +914,5 @@ const uint16_t ff_x8_ac1_highquant_table[8][77][2]={ } }; #define MAX_AC_VLC_BITS 16 + +#endif /* FFMPEG_INTRAX8HUF_H */