From 699b3f99d0376a8fd5159bdad857228bda59cff6 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 17 Jun 2007 00:01:30 +0000 Subject: add multiple inclusion guards to headers Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dca.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libavcodec/dca.h') diff --git a/libavcodec/dca.h b/libavcodec/dca.h index 5e9b8a9cf0..f4da56a8e6 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -22,8 +22,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVCODEC_DCA_H +#define AVCODEC_DCA_H + /** DCA syncwords, also used for bitstream type detection */ #define DCA_MARKER_RAW_BE 0x7FFE8001 #define DCA_MARKER_RAW_LE 0xFE7F0180 #define DCA_MARKER_14B_BE 0x1FFFE800 #define DCA_MARKER_14B_LE 0xFF1F00E8 + +#endif -- cgit v1.2.3