diff mpegts.h @ 5619:072cb3a1d4a7 libavformat

Fix warnings about implicit function declaration when compiling rtpdec.c Patch by Alexis Ballier, alexis D ballier A gmail
author cehoyos
date Mon, 01 Feb 2010 23:10:04 +0000
parents 79e17d3fdc9e
children
line wrap: on
line diff
--- a/mpegts.h	Mon Feb 01 11:39:10 2010 +0000
+++ b/mpegts.h	Mon Feb 01 23:10:04 2010 +0000
@@ -56,4 +56,11 @@
 #define STREAM_TYPE_AUDIO_AC3       0x81
 #define STREAM_TYPE_AUDIO_DTS       0x8a
 
+typedef struct MpegTSContext MpegTSContext;
+
+MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s);
+int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
+                           const uint8_t *buf, int len);
+void ff_mpegts_parse_close(MpegTSContext *ts);
+
 #endif /* AVFORMAT_MPEGTS_H */