]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mpegts.h
avformat/mov: Support reading Avid's metadata for DNXHD codec.
[ffmpeg] / libavformat / mpegts.h
index 50a02590faf71518d143e7b712b226651059e1a8..1cd1ba17709eddc3563563c4daf56d166bffaf6a 100644 (file)
 
 typedef struct MpegTSContext MpegTSContext;
 
+MpegTSContext *avpriv_mpegts_parse_open(AVFormatContext *s);
+int avpriv_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
+                               const uint8_t *buf, int len);
+void avpriv_mpegts_parse_close(MpegTSContext *ts);
+
+#if LIBAVFORMAT_VERSION_MAJOR < 56
 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
 
 typedef struct SLConfigDescr {
     int use_au_start;