[FFmpeg-cvslog] r10986 - in trunk/libavcodec: intrax8.h intrax8huf.h
aurel
subversion
Sat Nov 10 00:12:31 CET 2007
Author: aurel
Date: Sat Nov 10 00:12:31 2007
New Revision: 10986
Log:
add multiple inclusion guards
Modified:
trunk/libavcodec/intrax8.h
trunk/libavcodec/intrax8huf.h
Modified: trunk/libavcodec/intrax8.h
==============================================================================
--- trunk/libavcodec/intrax8.h (original)
+++ trunk/libavcodec/intrax8.h Sat Nov 10 00:12:31 2007
@@ -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 */
Modified: trunk/libavcodec/intrax8huf.h
==============================================================================
--- trunk/libavcodec/intrax8huf.h (original)
+++ trunk/libavcodec/intrax8huf.h Sat Nov 10 00:12:31 2007
@@ -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 <inttypes.h>
@@ -911,3 +914,5 @@ const uint16_t ff_x8_ac1_highquant_table
}
};
#define MAX_AC_VLC_BITS 16
+
+#endif /* FFMPEG_INTRAX8HUF_H */
More information about the ffmpeg-cvslog
mailing list