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 --- libavformat/mpegts.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libavformat/mpegts.h') diff --git a/libavformat/mpegts.h b/libavformat/mpegts.h index fc0fd11548..178988a994 100644 --- a/libavformat/mpegts.h +++ b/libavformat/mpegts.h @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVFORMAT_MPEGTS_H +#define AVFORMAT_MPEGTS_H + #include "avformat.h" #define TS_FEC_PACKET_SIZE 204 @@ -63,3 +66,5 @@ MpegTSContext *mpegts_parse_open(AVFormatContext *s); int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, const uint8_t *buf, int len); void mpegts_parse_close(MpegTSContext *ts); + +#endif -- cgit v1.2.3