]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mpegts.h
nb_chapters should be unsigned
[ffmpeg] / libavformat / mpegts.h
index fc0fd11548cf2584b1f0570587542612a8c95595..bdfc760b37abf3d9ebe3d081d885f29304b0e0f1 100644 (file)
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#ifndef FFMPEG_MPEGTS_H
+#define FFMPEG_MPEGTS_H
+
 #include "avformat.h"
 
 #define TS_FEC_PACKET_SIZE 204
 
 #define STREAM_TYPE_AUDIO_AC3       0x81
 #define STREAM_TYPE_AUDIO_DTS       0x8a
+#define STREAM_TYPE_AUDIO_HDMV_DTS  0x82
 
 #define STREAM_TYPE_SUBTITLE_DVB    0x100
 
-extern AVOutputFormat mpegts_muxer;
-
 typedef struct MpegTSContext MpegTSContext;
 
 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 /* FFMPEG_MPEGTS_H */