]> git.sesse.net Git - ffmpeg/blob - libavformat/mpegts.c
1213ecae46ed2ea9bf37131459626f25d374f6e6
[ffmpeg] / libavformat / mpegts.c
1 /*
2  * MPEG2 transport stream (aka DVB) demuxer
3  * Copyright (c) 2002-2003 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/buffer.h"
23 #include "libavutil/crc.h"
24 #include "libavutil/intreadwrite.h"
25 #include "libavutil/log.h"
26 #include "libavutil/dict.h"
27 #include "libavutil/mathematics.h"
28 #include "libavutil/opt.h"
29 #include "libavutil/avassert.h"
30 #include "libavcodec/bytestream.h"
31 #include "libavcodec/get_bits.h"
32 #include "libavcodec/mathops.h"
33 #include "avformat.h"
34 #include "mpegts.h"
35 #include "internal.h"
36 #include "avio_internal.h"
37 #include "seek.h"
38 #include "mpeg.h"
39 #include "isom.h"
40
41 /* maximum size in which we look for synchronisation if
42    synchronisation is lost */
43 #define MAX_RESYNC_SIZE 65536
44
45 #define MAX_PES_PAYLOAD 200*1024
46
47 #define MAX_MP4_DESCR_COUNT 16
48
49 enum MpegTSFilterType {
50     MPEGTS_PES,
51     MPEGTS_SECTION,
52 };
53
54 typedef struct MpegTSFilter MpegTSFilter;
55
56 typedef int PESCallback(MpegTSFilter *f, const uint8_t *buf, int len, int is_start, int64_t pos, int64_t cur_pcr);
57
58 typedef struct MpegTSPESFilter {
59     PESCallback *pes_cb;
60     void *opaque;
61 } MpegTSPESFilter;
62
63 typedef void SectionCallback(MpegTSFilter *f, const uint8_t *buf, int len);
64
65 typedef void SetServiceCallback(void *opaque, int ret);
66
67 typedef struct MpegTSSectionFilter {
68     int section_index;
69     int section_h_size;
70     uint8_t *section_buf;
71     unsigned int check_crc:1;
72     unsigned int end_of_section_reached:1;
73     SectionCallback *section_cb;
74     void *opaque;
75 } MpegTSSectionFilter;
76
77 struct MpegTSFilter {
78     int pid;
79     int es_id;
80     int last_cc; /* last cc code (-1 if first packet) */
81     enum MpegTSFilterType type;
82     union {
83         MpegTSPESFilter pes_filter;
84         MpegTSSectionFilter section_filter;
85     } u;
86 };
87
88 #define MAX_PIDS_PER_PROGRAM 64
89 struct Program {
90     unsigned int id; //program id/service id
91     unsigned int nb_pids;
92     unsigned int pids[MAX_PIDS_PER_PROGRAM];
93 };
94
95 struct MpegTSContext {
96     const AVClass *class;
97     /* user data */
98     AVFormatContext *stream;
99     /** raw packet size, including FEC if present            */
100     int raw_packet_size;
101
102     int size_stat[3];
103     int size_stat_count;
104 #define SIZE_STAT_THRESHOLD 10
105
106     int64_t pos47_full;
107
108     /** if true, all pids are analyzed to find streams       */
109     int auto_guess;
110
111     /** compute exact PCR for each transport stream packet   */
112     int mpeg2ts_compute_pcr;
113
114     /** fix dvb teletext pts                                 */
115     int fix_teletext_pts;
116
117     int64_t cur_pcr;    /**< used to estimate the exact PCR  */
118     int pcr_incr;       /**< used to estimate the exact PCR  */
119
120     /* data needed to handle file based ts */
121     /** stop parsing loop                                    */
122     int stop_parse;
123     /** packet containing Audio/Video data                   */
124     AVPacket *pkt;
125     /** to detect seek                                       */
126     int64_t last_pos;
127
128     /******************************************/
129     /* private mpegts data */
130     /* scan context */
131     /** structure to keep track of Program->pids mapping     */
132     unsigned int nb_prg;
133     struct Program *prg;
134
135     int8_t crc_validity[NB_PID_MAX];
136
137     /** filters for various streams specified by PMT + for the PAT and PMT */
138     MpegTSFilter *pids[NB_PID_MAX];
139     int current_pid;
140 };
141
142 static const AVOption mpegtsraw_options[] = {
143     {"compute_pcr", "Compute exact PCR for each transport stream packet.", offsetof(MpegTSContext, mpeg2ts_compute_pcr), AV_OPT_TYPE_INT,
144      {.i64 = 0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
145     { NULL },
146 };
147
148 static const AVClass mpegtsraw_class = {
149     .class_name = "mpegtsraw demuxer",
150     .item_name  = av_default_item_name,
151     .option     = mpegtsraw_options,
152     .version    = LIBAVUTIL_VERSION_INT,
153 };
154
155 static const AVOption mpegts_options[] = {
156     {"fix_teletext_pts", "Try to fix pts values of dvb teletext streams.", offsetof(MpegTSContext, fix_teletext_pts), AV_OPT_TYPE_INT,
157      {.i64 = 1}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
158     { NULL },
159 };
160
161 static const AVClass mpegts_class = {
162     .class_name = "mpegts demuxer",
163     .item_name  = av_default_item_name,
164     .option     = mpegts_options,
165     .version    = LIBAVUTIL_VERSION_INT,
166 };
167
168 /* TS stream handling */
169
170 enum MpegTSState {
171     MPEGTS_HEADER = 0,
172     MPEGTS_PESHEADER,
173     MPEGTS_PESHEADER_FILL,
174     MPEGTS_PAYLOAD,
175     MPEGTS_SKIP,
176 };
177
178 /* enough for PES header + length */
179 #define PES_START_SIZE  6
180 #define PES_HEADER_SIZE 9
181 #define MAX_PES_HEADER_SIZE (9 + 255)
182
183 typedef struct PESContext {
184     int pid;
185     int pcr_pid; /**< if -1 then all packets containing PCR are considered */
186     int stream_type;
187     MpegTSContext *ts;
188     AVFormatContext *stream;
189     AVStream *st;
190     AVStream *sub_st; /**< stream for the embedded AC3 stream in HDMV TrueHD */
191     enum MpegTSState state;
192     /* used to get the format */
193     int data_index;
194     int flags; /**< copied to the AVPacket flags */
195     int total_size;
196     int pes_header_size;
197     int extended_stream_id;
198     int64_t pts, dts;
199     int64_t ts_packet_pos; /**< position of first TS packet of this PES packet */
200     uint8_t header[MAX_PES_HEADER_SIZE];
201     AVBufferRef *buffer;
202     SLConfigDescr sl;
203     int64_t last_pcr;
204 } PESContext;
205
206 extern AVInputFormat ff_mpegts_demuxer;
207
208 static void clear_avprogram(MpegTSContext *ts, unsigned int programid)
209 {
210     AVProgram *prg = NULL;
211     int i;
212     for(i=0; i<ts->stream->nb_programs; i++)
213         if(ts->stream->programs[i]->id == programid){
214             prg = ts->stream->programs[i];
215             break;
216         }
217     if (!prg)
218         return;
219     prg->nb_stream_indexes = 0;
220 }
221
222 static void clear_program(MpegTSContext *ts, unsigned int programid)
223 {
224     int i;
225
226     clear_avprogram(ts, programid);
227     for(i=0; i<ts->nb_prg; i++)
228         if(ts->prg[i].id == programid)
229             ts->prg[i].nb_pids = 0;
230 }
231
232 static void clear_programs(MpegTSContext *ts)
233 {
234     av_freep(&ts->prg);
235     ts->nb_prg=0;
236 }
237
238 static void add_pat_entry(MpegTSContext *ts, unsigned int programid)
239 {
240     struct Program *p;
241     void *tmp = av_realloc(ts->prg, (ts->nb_prg+1)*sizeof(struct Program));
242     if(!tmp)
243         return;
244     ts->prg = tmp;
245     p = &ts->prg[ts->nb_prg];
246     p->id = programid;
247     p->nb_pids = 0;
248     ts->nb_prg++;
249 }
250
251 static void add_pid_to_pmt(MpegTSContext *ts, unsigned int programid, unsigned int pid)
252 {
253     int i;
254     struct Program *p = NULL;
255     for(i=0; i<ts->nb_prg; i++) {
256         if(ts->prg[i].id == programid) {
257             p = &ts->prg[i];
258             break;
259         }
260     }
261     if(!p)
262         return;
263
264     if(p->nb_pids >= MAX_PIDS_PER_PROGRAM)
265         return;
266     p->pids[p->nb_pids++] = pid;
267 }
268
269 static void set_pcr_pid(AVFormatContext *s, unsigned int programid, unsigned int pid)
270 {
271     int i;
272     for(i=0; i<s->nb_programs; i++) {
273         if(s->programs[i]->id == programid) {
274             s->programs[i]->pcr_pid = pid;
275             break;
276         }
277     }
278 }
279
280 /**
281  * @brief discard_pid() decides if the pid is to be discarded according
282  *                      to caller's programs selection
283  * @param ts    : - TS context
284  * @param pid   : - pid
285  * @return 1 if the pid is only comprised in programs that have .discard=AVDISCARD_ALL
286  *         0 otherwise
287  */
288 static int discard_pid(MpegTSContext *ts, unsigned int pid)
289 {
290     int i, j, k;
291     int used = 0, discarded = 0;
292     struct Program *p;
293
294     /* If none of the programs have .discard=AVDISCARD_ALL then there's
295      * no way we have to discard this packet
296      */
297     for (k = 0; k < ts->stream->nb_programs; k++) {
298         if (ts->stream->programs[k]->discard == AVDISCARD_ALL)
299             break;
300     }
301     if (k == ts->stream->nb_programs)
302         return 0;
303
304     for(i=0; i<ts->nb_prg; i++) {
305         p = &ts->prg[i];
306         for(j=0; j<p->nb_pids; j++) {
307             if(p->pids[j] != pid)
308                 continue;
309             //is program with id p->id set to be discarded?
310             for(k=0; k<ts->stream->nb_programs; k++) {
311                 if(ts->stream->programs[k]->id == p->id) {
312                     if(ts->stream->programs[k]->discard == AVDISCARD_ALL)
313                         discarded++;
314                     else
315                         used++;
316                 }
317             }
318         }
319     }
320
321     return !used && discarded;
322 }
323
324 /**
325  *  Assemble PES packets out of TS packets, and then call the "section_cb"
326  *  function when they are complete.
327  */
328 static void write_section_data(AVFormatContext *s, MpegTSFilter *tss1,
329                                const uint8_t *buf, int buf_size, int is_start)
330 {
331     MpegTSContext *ts = s->priv_data;
332     MpegTSSectionFilter *tss = &tss1->u.section_filter;
333     int len;
334
335     if (is_start) {
336         memcpy(tss->section_buf, buf, buf_size);
337         tss->section_index = buf_size;
338         tss->section_h_size = -1;
339         tss->end_of_section_reached = 0;
340     } else {
341         if (tss->end_of_section_reached)
342             return;
343         len = 4096 - tss->section_index;
344         if (buf_size < len)
345             len = buf_size;
346         memcpy(tss->section_buf + tss->section_index, buf, len);
347         tss->section_index += len;
348     }
349
350     /* compute section length if possible */
351     if (tss->section_h_size == -1 && tss->section_index >= 3) {
352         len = (AV_RB16(tss->section_buf + 1) & 0xfff) + 3;
353         if (len > 4096)
354             return;
355         tss->section_h_size = len;
356     }
357
358     if (tss->section_h_size != -1 && tss->section_index >= tss->section_h_size) {
359         int crc_valid = 1;
360         tss->end_of_section_reached = 1;
361
362         if (tss->check_crc){
363             crc_valid = !av_crc(av_crc_get_table(AV_CRC_32_IEEE), -1, tss->section_buf, tss->section_h_size);
364             if (crc_valid){
365                 ts->crc_validity[ tss1->pid ] = 100;
366             }else if(ts->crc_validity[ tss1->pid ] > -10){
367                 ts->crc_validity[ tss1->pid ]--;
368             }else
369                 crc_valid = 2;
370         }
371         if (crc_valid)
372             tss->section_cb(tss1, tss->section_buf, tss->section_h_size);
373     }
374 }
375
376 static MpegTSFilter *mpegts_open_section_filter(MpegTSContext *ts, unsigned int pid,
377                                          SectionCallback *section_cb, void *opaque,
378                                          int check_crc)
379
380 {
381     MpegTSFilter *filter;
382     MpegTSSectionFilter *sec;
383
384     av_dlog(ts->stream, "Filter: pid=0x%x\n", pid);
385
386     if (pid >= NB_PID_MAX || ts->pids[pid])
387         return NULL;
388     filter = av_mallocz(sizeof(MpegTSFilter));
389     if (!filter)
390         return NULL;
391     ts->pids[pid] = filter;
392     filter->type = MPEGTS_SECTION;
393     filter->pid = pid;
394     filter->es_id = -1;
395     filter->last_cc = -1;
396     sec = &filter->u.section_filter;
397     sec->section_cb = section_cb;
398     sec->opaque = opaque;
399     sec->section_buf = av_malloc(MAX_SECTION_SIZE);
400     sec->check_crc = check_crc;
401     if (!sec->section_buf) {
402         av_free(filter);
403         return NULL;
404     }
405     return filter;
406 }
407
408 static MpegTSFilter *mpegts_open_pes_filter(MpegTSContext *ts, unsigned int pid,
409                                      PESCallback *pes_cb,
410                                      void *opaque)
411 {
412     MpegTSFilter *filter;
413     MpegTSPESFilter *pes;
414
415     if (pid >= NB_PID_MAX || ts->pids[pid])
416         return NULL;
417     filter = av_mallocz(sizeof(MpegTSFilter));
418     if (!filter)
419         return NULL;
420     ts->pids[pid] = filter;
421     filter->type = MPEGTS_PES;
422     filter->pid = pid;
423     filter->es_id = -1;
424     filter->last_cc = -1;
425     pes = &filter->u.pes_filter;
426     pes->pes_cb = pes_cb;
427     pes->opaque = opaque;
428     return filter;
429 }
430
431 static void mpegts_close_filter(MpegTSContext *ts, MpegTSFilter *filter)
432 {
433     int pid;
434
435     pid = filter->pid;
436     if (filter->type == MPEGTS_SECTION)
437         av_freep(&filter->u.section_filter.section_buf);
438     else if (filter->type == MPEGTS_PES) {
439         PESContext *pes = filter->u.pes_filter.opaque;
440         av_buffer_unref(&pes->buffer);
441         /* referenced private data will be freed later in
442          * avformat_close_input */
443         if (!((PESContext *)filter->u.pes_filter.opaque)->st) {
444             av_freep(&filter->u.pes_filter.opaque);
445         }
446     }
447
448     av_free(filter);
449     ts->pids[pid] = NULL;
450 }
451
452 static int analyze(const uint8_t *buf, int size, int packet_size, int *index){
453     int stat[TS_MAX_PACKET_SIZE];
454     int i;
455     int x=0;
456     int best_score=0;
457
458     memset(stat, 0, packet_size*sizeof(int));
459
460     for(x=i=0; i<size-3; i++){
461         if(buf[i] == 0x47 && !(buf[i+1] & 0x80) && buf[i+3] != 0x47){
462             stat[x]++;
463             if(stat[x] > best_score){
464                 best_score= stat[x];
465                 if(index) *index= x;
466             }
467         }
468
469         x++;
470         if(x == packet_size) x= 0;
471     }
472
473     return best_score;
474 }
475
476 /* autodetect fec presence. Must have at least 1024 bytes  */
477 static int get_packet_size(const uint8_t *buf, int size)
478 {
479     int score, fec_score, dvhs_score;
480
481     if (size < (TS_FEC_PACKET_SIZE * 5 + 1))
482         return -1;
483
484     score    = analyze(buf, size, TS_PACKET_SIZE, NULL);
485     dvhs_score    = analyze(buf, size, TS_DVHS_PACKET_SIZE, NULL);
486     fec_score= analyze(buf, size, TS_FEC_PACKET_SIZE, NULL);
487     av_dlog(NULL, "score: %d, dvhs_score: %d, fec_score: %d \n",
488             score, dvhs_score, fec_score);
489
490     if     (score > fec_score && score > dvhs_score) return TS_PACKET_SIZE;
491     else if(dvhs_score > score && dvhs_score > fec_score) return TS_DVHS_PACKET_SIZE;
492     else if(score < fec_score && dvhs_score < fec_score) return TS_FEC_PACKET_SIZE;
493     else                       return -1;
494 }
495
496 typedef struct SectionHeader {
497     uint8_t tid;
498     uint16_t id;
499     uint8_t version;
500     uint8_t sec_num;
501     uint8_t last_sec_num;
502 } SectionHeader;
503
504 static inline int get8(const uint8_t **pp, const uint8_t *p_end)
505 {
506     const uint8_t *p;
507     int c;
508
509     p = *pp;
510     if (p >= p_end)
511         return -1;
512     c = *p++;
513     *pp = p;
514     return c;
515 }
516
517 static inline int get16(const uint8_t **pp, const uint8_t *p_end)
518 {
519     const uint8_t *p;
520     int c;
521
522     p = *pp;
523     if ((p + 1) >= p_end)
524         return -1;
525     c = AV_RB16(p);
526     p += 2;
527     *pp = p;
528     return c;
529 }
530
531 /* read and allocate a DVB string preceded by its length */
532 static char *getstr8(const uint8_t **pp, const uint8_t *p_end)
533 {
534     int len;
535     const uint8_t *p;
536     char *str;
537
538     p = *pp;
539     len = get8(&p, p_end);
540     if (len < 0)
541         return NULL;
542     if ((p + len) > p_end)
543         return NULL;
544     str = av_malloc(len + 1);
545     if (!str)
546         return NULL;
547     memcpy(str, p, len);
548     str[len] = '\0';
549     p += len;
550     *pp = p;
551     return str;
552 }
553
554 static int parse_section_header(SectionHeader *h,
555                                 const uint8_t **pp, const uint8_t *p_end)
556 {
557     int val;
558
559     val = get8(pp, p_end);
560     if (val < 0)
561         return -1;
562     h->tid = val;
563     *pp += 2;
564     val = get16(pp, p_end);
565     if (val < 0)
566         return -1;
567     h->id = val;
568     val = get8(pp, p_end);
569     if (val < 0)
570         return -1;
571     h->version = (val >> 1) & 0x1f;
572     val = get8(pp, p_end);
573     if (val < 0)
574         return -1;
575     h->sec_num = val;
576     val = get8(pp, p_end);
577     if (val < 0)
578         return -1;
579     h->last_sec_num = val;
580     return 0;
581 }
582
583 typedef struct {
584     uint32_t stream_type;
585     enum AVMediaType codec_type;
586     enum AVCodecID codec_id;
587 } StreamType;
588
589 static const StreamType ISO_types[] = {
590     { 0x01, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG2VIDEO },
591     { 0x02, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG2VIDEO },
592     { 0x03, AVMEDIA_TYPE_AUDIO,        AV_CODEC_ID_MP3 },
593     { 0x04, AVMEDIA_TYPE_AUDIO,        AV_CODEC_ID_MP3 },
594     { 0x0f, AVMEDIA_TYPE_AUDIO,        AV_CODEC_ID_AAC },
595     { 0x10, AVMEDIA_TYPE_VIDEO,      AV_CODEC_ID_MPEG4 },
596     /* Makito encoder sets stream type 0x11 for AAC,
597      * so auto-detect LOAS/LATM instead of hardcoding it. */
598 #if !CONFIG_LOAS_DEMUXER
599     { 0x11, AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_AAC_LATM }, /* LATM syntax */
600 #endif
601     { 0x1b, AVMEDIA_TYPE_VIDEO,       AV_CODEC_ID_H264 },
602     { 0x42, AVMEDIA_TYPE_VIDEO,       AV_CODEC_ID_CAVS },
603     { 0xd1, AVMEDIA_TYPE_VIDEO,      AV_CODEC_ID_DIRAC },
604     { 0xea, AVMEDIA_TYPE_VIDEO,        AV_CODEC_ID_VC1 },
605     { 0 },
606 };
607
608 static const StreamType HDMV_types[] = {
609     { 0x80, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_BLURAY },
610     { 0x81, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AC3 },
611     { 0x82, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS },
612     { 0x83, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_TRUEHD },
613     { 0x84, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_EAC3 },
614     { 0x85, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, /* DTS HD */
615     { 0x86, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, /* DTS HD MASTER*/
616     { 0xa1, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_EAC3 }, /* E-AC3 Secondary Audio */
617     { 0xa2, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS },  /* DTS Express Secondary Audio */
618     { 0x90, AVMEDIA_TYPE_SUBTITLE, AV_CODEC_ID_HDMV_PGS_SUBTITLE },
619     { 0 },
620 };
621
622 /* ATSC ? */
623 static const StreamType MISC_types[] = {
624     { 0x81, AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_AC3 },
625     { 0x8a, AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_DTS },
626     { 0 },
627 };
628
629 static const StreamType REGD_types[] = {
630     { MKTAG('d','r','a','c'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC },
631     { MKTAG('A','C','-','3'), AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_AC3 },
632     { MKTAG('B','S','S','D'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_S302M },
633     { MKTAG('D','T','S','1'), AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_DTS },
634     { MKTAG('D','T','S','2'), AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_DTS },
635     { MKTAG('D','T','S','3'), AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_DTS },
636     { MKTAG('K','L','V','A'), AVMEDIA_TYPE_DATA,    AV_CODEC_ID_SMPTE_KLV },
637     { MKTAG('V','C','-','1'), AVMEDIA_TYPE_VIDEO,   AV_CODEC_ID_VC1 },
638     { 0 },
639 };
640
641 /* descriptor present */
642 static const StreamType DESC_types[] = {
643     { 0x6a, AVMEDIA_TYPE_AUDIO,             AV_CODEC_ID_AC3 }, /* AC-3 descriptor */
644     { 0x7a, AVMEDIA_TYPE_AUDIO,            AV_CODEC_ID_EAC3 }, /* E-AC-3 descriptor */
645     { 0x7b, AVMEDIA_TYPE_AUDIO,             AV_CODEC_ID_DTS },
646     { 0x56, AVMEDIA_TYPE_SUBTITLE, AV_CODEC_ID_DVB_TELETEXT },
647     { 0x59, AVMEDIA_TYPE_SUBTITLE, AV_CODEC_ID_DVB_SUBTITLE }, /* subtitling descriptor */
648     { 0 },
649 };
650
651 static void mpegts_find_stream_type(AVStream *st,
652                                     uint32_t stream_type, const StreamType *types)
653 {
654     if (avcodec_is_open(st->codec)) {
655         av_log(NULL, AV_LOG_DEBUG, "cannot set stream info, codec is open\n");
656         return;
657     }
658
659     for (; types->stream_type; types++) {
660         if (stream_type == types->stream_type) {
661             st->codec->codec_type = types->codec_type;
662             st->codec->codec_id   = types->codec_id;
663             st->request_probe     = 0;
664             return;
665         }
666     }
667 }
668
669 static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
670                                   uint32_t stream_type, uint32_t prog_reg_desc)
671 {
672     int old_codec_type= st->codec->codec_type;
673     int old_codec_id  = st->codec->codec_id;
674
675     if (avcodec_is_open(st->codec)) {
676         av_log(pes->stream, AV_LOG_DEBUG, "cannot set stream info, codec is open\n");
677         return 0;
678     }
679
680     avpriv_set_pts_info(st, 33, 1, 90000);
681     st->priv_data = pes;
682     st->codec->codec_type = AVMEDIA_TYPE_DATA;
683     st->codec->codec_id   = AV_CODEC_ID_NONE;
684     st->need_parsing = AVSTREAM_PARSE_FULL;
685     pes->st = st;
686     pes->stream_type = stream_type;
687
688     av_log(pes->stream, AV_LOG_DEBUG,
689            "stream=%d stream_type=%x pid=%x prog_reg_desc=%.4s\n",
690            st->index, pes->stream_type, pes->pid, (char*)&prog_reg_desc);
691
692     st->codec->codec_tag = pes->stream_type;
693
694     mpegts_find_stream_type(st, pes->stream_type, ISO_types);
695     if ((prog_reg_desc == AV_RL32("HDMV") ||
696          prog_reg_desc == AV_RL32("HDPR")) &&
697         st->codec->codec_id == AV_CODEC_ID_NONE) {
698         mpegts_find_stream_type(st, pes->stream_type, HDMV_types);
699         if (pes->stream_type == 0x83) {
700             // HDMV TrueHD streams also contain an AC3 coded version of the
701             // audio track - add a second stream for this
702             AVStream *sub_st;
703             // priv_data cannot be shared between streams
704             PESContext *sub_pes = av_malloc(sizeof(*sub_pes));
705             if (!sub_pes)
706                 return AVERROR(ENOMEM);
707             memcpy(sub_pes, pes, sizeof(*sub_pes));
708
709             sub_st = avformat_new_stream(pes->stream, NULL);
710             if (!sub_st) {
711                 av_free(sub_pes);
712                 return AVERROR(ENOMEM);
713             }
714
715             sub_st->id = pes->pid;
716             avpriv_set_pts_info(sub_st, 33, 1, 90000);
717             sub_st->priv_data = sub_pes;
718             sub_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
719             sub_st->codec->codec_id   = AV_CODEC_ID_AC3;
720             sub_st->need_parsing = AVSTREAM_PARSE_FULL;
721             sub_pes->sub_st = pes->sub_st = sub_st;
722         }
723     }
724     if (st->codec->codec_id == AV_CODEC_ID_NONE)
725         mpegts_find_stream_type(st, pes->stream_type, MISC_types);
726     if (st->codec->codec_id == AV_CODEC_ID_NONE){
727         st->codec->codec_id  = old_codec_id;
728         st->codec->codec_type= old_codec_type;
729     }
730
731     return 0;
732 }
733
734 static void new_pes_packet(PESContext *pes, AVPacket *pkt)
735 {
736     av_init_packet(pkt);
737
738     pkt->buf  = pes->buffer;
739     pkt->data = pes->buffer->data;
740     pkt->size = pes->data_index;
741
742     if(pes->total_size != MAX_PES_PAYLOAD &&
743        pes->pes_header_size + pes->data_index != pes->total_size + PES_START_SIZE) {
744         av_log(pes->stream, AV_LOG_WARNING, "PES packet size mismatch\n");
745         pes->flags |= AV_PKT_FLAG_CORRUPT;
746     }
747     memset(pkt->data+pkt->size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
748
749     // Separate out the AC3 substream from an HDMV combined TrueHD/AC3 PID
750     if (pes->sub_st && pes->stream_type == 0x83 && pes->extended_stream_id == 0x76)
751         pkt->stream_index = pes->sub_st->index;
752     else
753         pkt->stream_index = pes->st->index;
754     pkt->pts = pes->pts;
755     pkt->dts = pes->dts;
756     /* store position of first TS packet of this PES packet */
757     pkt->pos = pes->ts_packet_pos;
758     pkt->flags = pes->flags;
759
760     /* reset pts values */
761     pes->pts = AV_NOPTS_VALUE;
762     pes->dts = AV_NOPTS_VALUE;
763     pes->buffer = NULL;
764     pes->data_index = 0;
765     pes->flags = 0;
766 }
767
768 static uint64_t get_ts64(GetBitContext *gb, int bits)
769 {
770     if (get_bits_left(gb) < bits)
771         return AV_NOPTS_VALUE;
772     return get_bits64(gb, bits);
773 }
774
775 static int read_sl_header(PESContext *pes, SLConfigDescr *sl, const uint8_t *buf, int buf_size)
776 {
777     GetBitContext gb;
778     int au_start_flag = 0, au_end_flag = 0, ocr_flag = 0, idle_flag = 0;
779     int padding_flag = 0, padding_bits = 0, inst_bitrate_flag = 0;
780     int dts_flag = -1, cts_flag = -1;
781     int64_t dts = AV_NOPTS_VALUE, cts = AV_NOPTS_VALUE;
782
783     init_get_bits(&gb, buf, buf_size*8);
784
785     if (sl->use_au_start)
786         au_start_flag = get_bits1(&gb);
787     if (sl->use_au_end)
788         au_end_flag = get_bits1(&gb);
789     if (!sl->use_au_start && !sl->use_au_end)
790         au_start_flag = au_end_flag = 1;
791     if (sl->ocr_len > 0)
792         ocr_flag = get_bits1(&gb);
793     if (sl->use_idle)
794         idle_flag = get_bits1(&gb);
795     if (sl->use_padding)
796         padding_flag = get_bits1(&gb);
797     if (padding_flag)
798         padding_bits = get_bits(&gb, 3);
799
800     if (!idle_flag && (!padding_flag || padding_bits != 0)) {
801         if (sl->packet_seq_num_len)
802             skip_bits_long(&gb, sl->packet_seq_num_len);
803         if (sl->degr_prior_len)
804             if (get_bits1(&gb))
805                 skip_bits(&gb, sl->degr_prior_len);
806         if (ocr_flag)
807             skip_bits_long(&gb, sl->ocr_len);
808         if (au_start_flag) {
809             if (sl->use_rand_acc_pt)
810                 get_bits1(&gb);
811             if (sl->au_seq_num_len > 0)
812                 skip_bits_long(&gb, sl->au_seq_num_len);
813             if (sl->use_timestamps) {
814                 dts_flag = get_bits1(&gb);
815                 cts_flag = get_bits1(&gb);
816             }
817         }
818         if (sl->inst_bitrate_len)
819             inst_bitrate_flag = get_bits1(&gb);
820         if (dts_flag == 1)
821             dts = get_ts64(&gb, sl->timestamp_len);
822         if (cts_flag == 1)
823             cts = get_ts64(&gb, sl->timestamp_len);
824         if (sl->au_len > 0)
825             skip_bits_long(&gb, sl->au_len);
826         if (inst_bitrate_flag)
827             skip_bits_long(&gb, sl->inst_bitrate_len);
828     }
829
830     if (dts != AV_NOPTS_VALUE)
831         pes->dts = dts;
832     if (cts != AV_NOPTS_VALUE)
833         pes->pts = cts;
834
835     if (sl->timestamp_len && sl->timestamp_res)
836         avpriv_set_pts_info(pes->st, sl->timestamp_len, 1, sl->timestamp_res);
837
838     return (get_bits_count(&gb) + 7) >> 3;
839 }
840
841 /* return non zero if a packet could be constructed */
842 static int mpegts_push_data(MpegTSFilter *filter,
843                             const uint8_t *buf, int buf_size, int is_start,
844                             int64_t pos, int64_t pcr)
845 {
846     PESContext *pes = filter->u.pes_filter.opaque;
847     MpegTSContext *ts = pes->ts;
848     const uint8_t *p;
849     int len, code;
850
851     if(!ts->pkt)
852         return 0;
853
854     if (pcr != -1)
855         pes->last_pcr = pcr;
856
857     if (is_start) {
858         if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
859             new_pes_packet(pes, ts->pkt);
860             ts->stop_parse = 1;
861         }
862         pes->state = MPEGTS_HEADER;
863         pes->data_index = 0;
864         pes->ts_packet_pos = pos;
865     }
866     p = buf;
867     while (buf_size > 0) {
868         switch(pes->state) {
869         case MPEGTS_HEADER:
870             len = PES_START_SIZE - pes->data_index;
871             if (len > buf_size)
872                 len = buf_size;
873             memcpy(pes->header + pes->data_index, p, len);
874             pes->data_index += len;
875             p += len;
876             buf_size -= len;
877             if (pes->data_index == PES_START_SIZE) {
878                 /* we got all the PES or section header. We can now
879                    decide */
880                 if (pes->header[0] == 0x00 && pes->header[1] == 0x00 &&
881                     pes->header[2] == 0x01) {
882                     /* it must be an mpeg2 PES stream */
883                     code = pes->header[3] | 0x100;
884                     av_dlog(pes->stream, "pid=%x pes_code=%#x\n", pes->pid, code);
885
886                     if ((pes->st && pes->st->discard == AVDISCARD_ALL &&
887                          (!pes->sub_st || pes->sub_st->discard == AVDISCARD_ALL)) ||
888                         code == 0x1be) /* padding_stream */
889                         goto skip;
890
891                     /* stream not present in PMT */
892                     if (!pes->st) {
893                         pes->st = avformat_new_stream(ts->stream, NULL);
894                         if (!pes->st)
895                             return AVERROR(ENOMEM);
896                         pes->st->id = pes->pid;
897                         mpegts_set_stream_info(pes->st, pes, 0, 0);
898                     }
899
900                     pes->total_size = AV_RB16(pes->header + 4);
901                     /* NOTE: a zero total size means the PES size is
902                        unbounded */
903                     if (!pes->total_size)
904                         pes->total_size = MAX_PES_PAYLOAD;
905
906                     /* allocate pes buffer */
907                     pes->buffer = av_buffer_alloc(pes->total_size +
908                                                   FF_INPUT_BUFFER_PADDING_SIZE);
909                     if (!pes->buffer)
910                         return AVERROR(ENOMEM);
911
912                     if (code != 0x1bc && code != 0x1bf && /* program_stream_map, private_stream_2 */
913                         code != 0x1f0 && code != 0x1f1 && /* ECM, EMM */
914                         code != 0x1ff && code != 0x1f2 && /* program_stream_directory, DSMCC_stream */
915                         code != 0x1f8) {                  /* ITU-T Rec. H.222.1 type E stream */
916                         pes->state = MPEGTS_PESHEADER;
917                         if (pes->st->codec->codec_id == AV_CODEC_ID_NONE && !pes->st->request_probe) {
918                             av_dlog(pes->stream, "pid=%x stream_type=%x probing\n",
919                                     pes->pid, pes->stream_type);
920                             pes->st->request_probe= 1;
921                         }
922                     } else {
923                         pes->state = MPEGTS_PAYLOAD;
924                         pes->data_index = 0;
925                     }
926                 } else {
927                     /* otherwise, it should be a table */
928                     /* skip packet */
929                 skip:
930                     pes->state = MPEGTS_SKIP;
931                     continue;
932                 }
933             }
934             break;
935             /**********************************************/
936             /* PES packing parsing */
937         case MPEGTS_PESHEADER:
938             len = PES_HEADER_SIZE - pes->data_index;
939             if (len < 0)
940                 return -1;
941             if (len > buf_size)
942                 len = buf_size;
943             memcpy(pes->header + pes->data_index, p, len);
944             pes->data_index += len;
945             p += len;
946             buf_size -= len;
947             if (pes->data_index == PES_HEADER_SIZE) {
948                 pes->pes_header_size = pes->header[8] + 9;
949                 pes->state = MPEGTS_PESHEADER_FILL;
950             }
951             break;
952         case MPEGTS_PESHEADER_FILL:
953             len = pes->pes_header_size - pes->data_index;
954             if (len < 0)
955                 return -1;
956             if (len > buf_size)
957                 len = buf_size;
958             memcpy(pes->header + pes->data_index, p, len);
959             pes->data_index += len;
960             p += len;
961             buf_size -= len;
962             if (pes->data_index == pes->pes_header_size) {
963                 const uint8_t *r;
964                 unsigned int flags, pes_ext, skip;
965
966                 flags = pes->header[7];
967                 r = pes->header + 9;
968                 pes->pts = AV_NOPTS_VALUE;
969                 pes->dts = AV_NOPTS_VALUE;
970                 if ((flags & 0xc0) == 0x80) {
971                     pes->dts = pes->pts = ff_parse_pes_pts(r);
972                     r += 5;
973                 } else if ((flags & 0xc0) == 0xc0) {
974                     pes->pts = ff_parse_pes_pts(r);
975                     r += 5;
976                     pes->dts = ff_parse_pes_pts(r);
977                     r += 5;
978                 }
979                 pes->extended_stream_id = -1;
980                 if (flags & 0x01) { /* PES extension */
981                     pes_ext = *r++;
982                     /* Skip PES private data, program packet sequence counter and P-STD buffer */
983                     skip = (pes_ext >> 4) & 0xb;
984                     skip += skip & 0x9;
985                     r += skip;
986                     if ((pes_ext & 0x41) == 0x01 &&
987                         (r + 2) <= (pes->header + pes->pes_header_size)) {
988                         /* PES extension 2 */
989                         if ((r[0] & 0x7f) > 0 && (r[1] & 0x80) == 0)
990                             pes->extended_stream_id = r[1];
991                     }
992                 }
993
994                 /* we got the full header. We parse it and get the payload */
995                 pes->state = MPEGTS_PAYLOAD;
996                 pes->data_index = 0;
997                 if (pes->stream_type == 0x12 && buf_size > 0) {
998                     int sl_header_bytes = read_sl_header(pes, &pes->sl, p, buf_size);
999                     pes->pes_header_size += sl_header_bytes;
1000                     p += sl_header_bytes;
1001                     buf_size -= sl_header_bytes;
1002                 }
1003                 if (pes->ts->fix_teletext_pts && pes->st->codec->codec_id == AV_CODEC_ID_DVB_TELETEXT) {
1004                     AVProgram *p = NULL;
1005                     while ((p = av_find_program_from_stream(pes->stream, p, pes->st->index))) {
1006                         if (p->pcr_pid != -1 && p->discard != AVDISCARD_ALL) {
1007                             MpegTSFilter *f = pes->ts->pids[p->pcr_pid];
1008                             if (f && f->type == MPEGTS_PES) {
1009                                 PESContext *pcrpes = f->u.pes_filter.opaque;
1010                                 if (pcrpes && pcrpes->last_pcr != -1 && pcrpes->st && pcrpes->st->discard != AVDISCARD_ALL) {
1011                                     // teletext packets do not always have correct timestamps,
1012                                     // the standard says they should be handled after 40.6 ms at most,
1013                                     // and the pcr error to this packet should be no more than 100 ms.
1014                                     // TODO: we should interpolate the PCR, not just use the last one
1015                                     int64_t pcr = pcrpes->last_pcr / 300;
1016                                     pes->st->pts_wrap_reference = pcrpes->st->pts_wrap_reference;
1017                                     pes->st->pts_wrap_behavior = pcrpes->st->pts_wrap_behavior;
1018                                     if (pes->dts == AV_NOPTS_VALUE || pes->dts < pcr) {
1019                                         pes->pts = pes->dts = pcr;
1020                                     } else if (pes->dts > pcr + 3654 + 9000) {
1021                                         pes->pts = pes->dts = pcr + 3654 + 9000;
1022                                     }
1023                                     break;
1024                                 }
1025                             }
1026                         }
1027                     }
1028                 }
1029             }
1030             break;
1031         case MPEGTS_PAYLOAD:
1032             if (buf_size > 0 && pes->buffer) {
1033                 if (pes->data_index > 0 && pes->data_index+buf_size > pes->total_size) {
1034                     new_pes_packet(pes, ts->pkt);
1035                     pes->total_size = MAX_PES_PAYLOAD;
1036                     pes->buffer = av_buffer_alloc(pes->total_size + FF_INPUT_BUFFER_PADDING_SIZE);
1037                     if (!pes->buffer)
1038                         return AVERROR(ENOMEM);
1039                     ts->stop_parse = 1;
1040                 } else if (pes->data_index == 0 && buf_size > pes->total_size) {
1041                     // pes packet size is < ts size packet and pes data is padded with 0xff
1042                     // not sure if this is legal in ts but see issue #2392
1043                     buf_size = pes->total_size;
1044                 }
1045                 memcpy(pes->buffer->data + pes->data_index, p, buf_size);
1046                 pes->data_index += buf_size;
1047             }
1048             buf_size = 0;
1049             /* emit complete packets with known packet size
1050              * decreases demuxer delay for infrequent packets like subtitles from
1051              * a couple of seconds to milliseconds for properly muxed files.
1052              * total_size is the number of bytes following pes_packet_length
1053              * in the pes header, i.e. not counting the first PES_START_SIZE bytes */
1054             if (!ts->stop_parse && pes->total_size < MAX_PES_PAYLOAD &&
1055                 pes->pes_header_size + pes->data_index == pes->total_size + PES_START_SIZE) {
1056                 ts->stop_parse = 1;
1057                 new_pes_packet(pes, ts->pkt);
1058             }
1059             break;
1060         case MPEGTS_SKIP:
1061             buf_size = 0;
1062             break;
1063         }
1064     }
1065
1066     return 0;
1067 }
1068
1069 static PESContext *add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid)
1070 {
1071     MpegTSFilter *tss;
1072     PESContext *pes;
1073
1074     /* if no pid found, then add a pid context */
1075     pes = av_mallocz(sizeof(PESContext));
1076     if (!pes)
1077         return 0;
1078     pes->ts = ts;
1079     pes->stream = ts->stream;
1080     pes->pid = pid;
1081     pes->pcr_pid = pcr_pid;
1082     pes->state = MPEGTS_SKIP;
1083     pes->pts = AV_NOPTS_VALUE;
1084     pes->dts = AV_NOPTS_VALUE;
1085     pes->last_pcr = -1;
1086     tss = mpegts_open_pes_filter(ts, pid, mpegts_push_data, pes);
1087     if (!tss) {
1088         av_free(pes);
1089         return 0;
1090     }
1091     return pes;
1092 }
1093
1094 #define MAX_LEVEL 4
1095 typedef struct {
1096     AVFormatContext *s;
1097     AVIOContext pb;
1098     Mp4Descr *descr;
1099     Mp4Descr *active_descr;
1100     int descr_count;
1101     int max_descr_count;
1102     int level;
1103 } MP4DescrParseContext;
1104
1105 static int init_MP4DescrParseContext(
1106     MP4DescrParseContext *d, AVFormatContext *s, const uint8_t *buf,
1107     unsigned size, Mp4Descr *descr, int max_descr_count)
1108 {
1109     int ret;
1110     if (size > (1<<30))
1111         return AVERROR_INVALIDDATA;
1112
1113     if ((ret = ffio_init_context(&d->pb, (unsigned char*)buf, size, 0,
1114                           NULL, NULL, NULL, NULL)) < 0)
1115         return ret;
1116
1117     d->s = s;
1118     d->level = 0;
1119     d->descr_count = 0;
1120     d->descr = descr;
1121     d->active_descr = NULL;
1122     d->max_descr_count = max_descr_count;
1123
1124     return 0;
1125 }
1126
1127 static void update_offsets(AVIOContext *pb, int64_t *off, int *len) {
1128     int64_t new_off = avio_tell(pb);
1129     (*len) -= new_off - *off;
1130     *off = new_off;
1131 }
1132
1133 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1134                            int target_tag);
1135
1136 static int parse_mp4_descr_arr(MP4DescrParseContext *d, int64_t off, int len)
1137 {
1138     while (len > 0) {
1139         if (parse_mp4_descr(d, off, len, 0) < 0)
1140             return -1;
1141         update_offsets(&d->pb, &off, &len);
1142     }
1143     return 0;
1144 }
1145
1146 static int parse_MP4IODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1147 {
1148     avio_rb16(&d->pb); // ID
1149     avio_r8(&d->pb);
1150     avio_r8(&d->pb);
1151     avio_r8(&d->pb);
1152     avio_r8(&d->pb);
1153     avio_r8(&d->pb);
1154     update_offsets(&d->pb, &off, &len);
1155     return parse_mp4_descr_arr(d, off, len);
1156 }
1157
1158 static int parse_MP4ODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1159 {
1160     int id_flags;
1161     if (len < 2)
1162         return 0;
1163     id_flags = avio_rb16(&d->pb);
1164     if (!(id_flags & 0x0020)) { //URL_Flag
1165         update_offsets(&d->pb, &off, &len);
1166         return parse_mp4_descr_arr(d, off, len); //ES_Descriptor[]
1167     } else {
1168         return 0;
1169     }
1170 }
1171
1172 static int parse_MP4ESDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1173 {
1174     int es_id = 0;
1175     if (d->descr_count >= d->max_descr_count)
1176         return -1;
1177     ff_mp4_parse_es_descr(&d->pb, &es_id);
1178     d->active_descr = d->descr + (d->descr_count++);
1179
1180     d->active_descr->es_id = es_id;
1181     update_offsets(&d->pb, &off, &len);
1182     parse_mp4_descr(d, off, len, MP4DecConfigDescrTag);
1183     update_offsets(&d->pb, &off, &len);
1184     if (len > 0)
1185         parse_mp4_descr(d, off, len, MP4SLDescrTag);
1186     d->active_descr = NULL;
1187     return 0;
1188 }
1189
1190 static int parse_MP4DecConfigDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1191 {
1192     Mp4Descr *descr = d->active_descr;
1193     if (!descr)
1194         return -1;
1195     d->active_descr->dec_config_descr = av_malloc(len);
1196     if (!descr->dec_config_descr)
1197         return AVERROR(ENOMEM);
1198     descr->dec_config_descr_len = len;
1199     avio_read(&d->pb, descr->dec_config_descr, len);
1200     return 0;
1201 }
1202
1203 static int parse_MP4SLDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1204 {
1205     Mp4Descr *descr = d->active_descr;
1206     int predefined;
1207     if (!descr)
1208         return -1;
1209
1210     predefined = avio_r8(&d->pb);
1211     if (!predefined) {
1212         int lengths;
1213         int flags = avio_r8(&d->pb);
1214         descr->sl.use_au_start       = !!(flags & 0x80);
1215         descr->sl.use_au_end         = !!(flags & 0x40);
1216         descr->sl.use_rand_acc_pt    = !!(flags & 0x20);
1217         descr->sl.use_padding        = !!(flags & 0x08);
1218         descr->sl.use_timestamps     = !!(flags & 0x04);
1219         descr->sl.use_idle           = !!(flags & 0x02);
1220         descr->sl.timestamp_res      = avio_rb32(&d->pb);
1221                                        avio_rb32(&d->pb);
1222         descr->sl.timestamp_len      = avio_r8(&d->pb);
1223         descr->sl.ocr_len            = avio_r8(&d->pb);
1224         descr->sl.au_len             = avio_r8(&d->pb);
1225         descr->sl.inst_bitrate_len   = avio_r8(&d->pb);
1226         lengths                      = avio_rb16(&d->pb);
1227         descr->sl.degr_prior_len     = lengths >> 12;
1228         descr->sl.au_seq_num_len     = (lengths >> 7) & 0x1f;
1229         descr->sl.packet_seq_num_len = (lengths >> 2) & 0x1f;
1230     } else {
1231         avpriv_report_missing_feature(d->s, "Predefined SLConfigDescriptor");
1232     }
1233     return 0;
1234 }
1235
1236 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1237                            int target_tag) {
1238     int tag;
1239     int len1 = ff_mp4_read_descr(d->s, &d->pb, &tag);
1240     update_offsets(&d->pb, &off, &len);
1241     if (len < 0 || len1 > len || len1 <= 0) {
1242         av_log(d->s, AV_LOG_ERROR, "Tag %x length violation new length %d bytes remaining %d\n", tag, len1, len);
1243         return -1;
1244     }
1245
1246     if (d->level++ >= MAX_LEVEL) {
1247         av_log(d->s, AV_LOG_ERROR, "Maximum MP4 descriptor level exceeded\n");
1248         goto done;
1249     }
1250
1251     if (target_tag && tag != target_tag) {
1252         av_log(d->s, AV_LOG_ERROR, "Found tag %x expected %x\n", tag, target_tag);
1253         goto done;
1254     }
1255
1256     switch (tag) {
1257     case MP4IODescrTag:
1258         parse_MP4IODescrTag(d, off, len1);
1259         break;
1260     case MP4ODescrTag:
1261         parse_MP4ODescrTag(d, off, len1);
1262         break;
1263     case MP4ESDescrTag:
1264         parse_MP4ESDescrTag(d, off, len1);
1265         break;
1266     case MP4DecConfigDescrTag:
1267         parse_MP4DecConfigDescrTag(d, off, len1);
1268         break;
1269     case MP4SLDescrTag:
1270         parse_MP4SLDescrTag(d, off, len1);
1271         break;
1272     }
1273
1274 done:
1275     d->level--;
1276     avio_seek(&d->pb, off + len1, SEEK_SET);
1277     return 0;
1278 }
1279
1280 static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size,
1281                          Mp4Descr *descr, int *descr_count, int max_descr_count)
1282 {
1283     MP4DescrParseContext d;
1284     if (init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count) < 0)
1285         return -1;
1286
1287     parse_mp4_descr(&d, avio_tell(&d.pb), size, MP4IODescrTag);
1288
1289     *descr_count = d.descr_count;
1290     return 0;
1291 }
1292
1293 static int mp4_read_od(AVFormatContext *s, const uint8_t *buf, unsigned size,
1294                        Mp4Descr *descr, int *descr_count, int max_descr_count)
1295 {
1296     MP4DescrParseContext d;
1297     if (init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count) < 0)
1298         return -1;
1299
1300     parse_mp4_descr_arr(&d, avio_tell(&d.pb), size);
1301
1302     *descr_count = d.descr_count;
1303     return 0;
1304 }
1305
1306 static void m4sl_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1307 {
1308     MpegTSContext *ts = filter->u.section_filter.opaque;
1309     SectionHeader h;
1310     const uint8_t *p, *p_end;
1311     AVIOContext pb;
1312     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = {{ 0 }};
1313     int mp4_descr_count = 0;
1314     int i, pid;
1315     AVFormatContext *s = ts->stream;
1316
1317     p_end = section + section_len - 4;
1318     p = section;
1319     if (parse_section_header(&h, &p, p_end) < 0)
1320         return;
1321     if (h.tid != M4OD_TID)
1322         return;
1323
1324     mp4_read_od(s, p, (unsigned)(p_end - p), mp4_descr, &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1325
1326     for (pid = 0; pid < NB_PID_MAX; pid++) {
1327         if (!ts->pids[pid])
1328              continue;
1329         for (i = 0; i < mp4_descr_count; i++) {
1330             PESContext *pes;
1331             AVStream *st;
1332             if (ts->pids[pid]->es_id != mp4_descr[i].es_id)
1333                 continue;
1334             if (!(ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES)) {
1335                 av_log(s, AV_LOG_ERROR, "pid %x is not PES\n", pid);
1336                 continue;
1337             }
1338             pes = ts->pids[pid]->u.pes_filter.opaque;
1339             st = pes->st;
1340             if (!st) {
1341                 continue;
1342             }
1343
1344             pes->sl = mp4_descr[i].sl;
1345
1346             ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1347                               mp4_descr[i].dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1348             ff_mp4_read_dec_config_descr(s, st, &pb);
1349             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1350                 st->codec->extradata_size > 0)
1351                 st->need_parsing = 0;
1352             if (st->codec->codec_id == AV_CODEC_ID_H264 &&
1353                 st->codec->extradata_size > 0)
1354                 st->need_parsing = 0;
1355
1356             if (st->codec->codec_id <= AV_CODEC_ID_NONE) {
1357             } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_AUDIO) {
1358                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1359             } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_SUBTITLE) {
1360                 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1361             } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_UNKNOWN) {
1362                 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1363             }
1364         }
1365     }
1366     for (i = 0; i < mp4_descr_count; i++)
1367         av_free(mp4_descr[i].dec_config_descr);
1368 }
1369
1370 int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type,
1371                               const uint8_t **pp, const uint8_t *desc_list_end,
1372                               Mp4Descr *mp4_descr, int mp4_descr_count, int pid,
1373                               MpegTSContext *ts)
1374 {
1375     const uint8_t *desc_end;
1376     int desc_len, desc_tag, desc_es_id;
1377     char language[252];
1378     int i;
1379
1380     desc_tag = get8(pp, desc_list_end);
1381     if (desc_tag < 0)
1382         return -1;
1383     desc_len = get8(pp, desc_list_end);
1384     if (desc_len < 0)
1385         return -1;
1386     desc_end = *pp + desc_len;
1387     if (desc_end > desc_list_end)
1388         return -1;
1389
1390     av_dlog(fc, "tag: 0x%02x len=%d\n", desc_tag, desc_len);
1391
1392     if (st->codec->codec_id == AV_CODEC_ID_NONE &&
1393         stream_type == STREAM_TYPE_PRIVATE_DATA)
1394         mpegts_find_stream_type(st, desc_tag, DESC_types);
1395
1396     switch(desc_tag) {
1397     case 0x1E: /* SL descriptor */
1398         desc_es_id = get16(pp, desc_end);
1399         if (ts && ts->pids[pid])
1400             ts->pids[pid]->es_id = desc_es_id;
1401         for (i = 0; i < mp4_descr_count; i++)
1402         if (mp4_descr[i].dec_config_descr_len &&
1403             mp4_descr[i].es_id == desc_es_id) {
1404             AVIOContext pb;
1405             ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1406                           mp4_descr[i].dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1407             ff_mp4_read_dec_config_descr(fc, st, &pb);
1408             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1409                 st->codec->extradata_size > 0)
1410                 st->need_parsing = 0;
1411             if (st->codec->codec_id == AV_CODEC_ID_MPEG4SYSTEMS)
1412                 mpegts_open_section_filter(ts, pid, m4sl_cb, ts, 1);
1413         }
1414         break;
1415     case 0x1F: /* FMC descriptor */
1416         get16(pp, desc_end);
1417         if (mp4_descr_count > 0 && (st->codec->codec_id == AV_CODEC_ID_AAC_LATM || st->request_probe>0) &&
1418             mp4_descr->dec_config_descr_len && mp4_descr->es_id == pid) {
1419             AVIOContext pb;
1420             ffio_init_context(&pb, mp4_descr->dec_config_descr,
1421                           mp4_descr->dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1422             ff_mp4_read_dec_config_descr(fc, st, &pb);
1423             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1424                 st->codec->extradata_size > 0){
1425                 st->request_probe= st->need_parsing = 0;
1426                 st->codec->codec_type= AVMEDIA_TYPE_AUDIO;
1427             }
1428         }
1429         break;
1430     case 0x56: /* DVB teletext descriptor */
1431         language[0] = get8(pp, desc_end);
1432         language[1] = get8(pp, desc_end);
1433         language[2] = get8(pp, desc_end);
1434         language[3] = 0;
1435         av_dict_set(&st->metadata, "language", language, 0);
1436         break;
1437     case 0x59: /* subtitling descriptor */
1438         language[0] = get8(pp, desc_end);
1439         language[1] = get8(pp, desc_end);
1440         language[2] = get8(pp, desc_end);
1441         language[3] = 0;
1442         /* hearing impaired subtitles detection */
1443         switch(get8(pp, desc_end)) {
1444         case 0x20: /* DVB subtitles (for the hard of hearing) with no monitor aspect ratio criticality */
1445         case 0x21: /* DVB subtitles (for the hard of hearing) for display on 4:3 aspect ratio monitor */
1446         case 0x22: /* DVB subtitles (for the hard of hearing) for display on 16:9 aspect ratio monitor */
1447         case 0x23: /* DVB subtitles (for the hard of hearing) for display on 2.21:1 aspect ratio monitor */
1448         case 0x24: /* DVB subtitles (for the hard of hearing) for display on a high definition monitor */
1449         case 0x25: /* DVB subtitles (for the hard of hearing) with plano-stereoscopic disparity for display on a high definition monitor */
1450             st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
1451             break;
1452         }
1453         if (st->codec->extradata) {
1454             if (st->codec->extradata_size == 4 && memcmp(st->codec->extradata, *pp, 4))
1455                 avpriv_request_sample(fc, "DVB sub with multiple IDs");
1456         } else {
1457             st->codec->extradata = av_malloc(4 + FF_INPUT_BUFFER_PADDING_SIZE);
1458             if (st->codec->extradata) {
1459                 st->codec->extradata_size = 4;
1460                 memcpy(st->codec->extradata, *pp, 4);
1461             }
1462         }
1463         *pp += 4;
1464         av_dict_set(&st->metadata, "language", language, 0);
1465         break;
1466     case 0x0a: /* ISO 639 language descriptor */
1467         for (i = 0; i + 4 <= desc_len; i += 4) {
1468             language[i + 0] = get8(pp, desc_end);
1469             language[i + 1] = get8(pp, desc_end);
1470             language[i + 2] = get8(pp, desc_end);
1471             language[i + 3] = ',';
1472         switch (get8(pp, desc_end)) {
1473             case 0x01: st->disposition |= AV_DISPOSITION_CLEAN_EFFECTS; break;
1474             case 0x02: st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED; break;
1475             case 0x03: st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED; break;
1476         }
1477         }
1478         if (i) {
1479             language[i - 1] = 0;
1480             av_dict_set(&st->metadata, "language", language, 0);
1481         }
1482         break;
1483     case 0x05: /* registration descriptor */
1484         st->codec->codec_tag = bytestream_get_le32(pp);
1485         av_dlog(fc, "reg_desc=%.4s\n", (char*)&st->codec->codec_tag);
1486         if (st->codec->codec_id == AV_CODEC_ID_NONE)
1487             mpegts_find_stream_type(st, st->codec->codec_tag, REGD_types);
1488         break;
1489     case 0x52: /* stream identifier descriptor */
1490         st->stream_identifier = 1 + get8(pp, desc_end);
1491         break;
1492     default:
1493         break;
1494     }
1495     *pp = desc_end;
1496     return 0;
1497 }
1498
1499 static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1500 {
1501     MpegTSContext *ts = filter->u.section_filter.opaque;
1502     SectionHeader h1, *h = &h1;
1503     PESContext *pes;
1504     AVStream *st;
1505     const uint8_t *p, *p_end, *desc_list_end;
1506     int program_info_length, pcr_pid, pid, stream_type;
1507     int desc_list_len;
1508     uint32_t prog_reg_desc = 0; /* registration descriptor */
1509
1510     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = {{ 0 }};
1511     int mp4_descr_count = 0;
1512     int i;
1513
1514     av_dlog(ts->stream, "PMT: len %i\n", section_len);
1515     hex_dump_debug(ts->stream, section, section_len);
1516
1517     p_end = section + section_len - 4;
1518     p = section;
1519     if (parse_section_header(h, &p, p_end) < 0)
1520         return;
1521
1522     av_dlog(ts->stream, "sid=0x%x sec_num=%d/%d\n",
1523            h->id, h->sec_num, h->last_sec_num);
1524
1525     if (h->tid != PMT_TID)
1526         return;
1527
1528     clear_program(ts, h->id);
1529     pcr_pid = get16(&p, p_end);
1530     if (pcr_pid < 0)
1531         return;
1532     pcr_pid &= 0x1fff;
1533     add_pid_to_pmt(ts, h->id, pcr_pid);
1534     set_pcr_pid(ts->stream, h->id, pcr_pid);
1535
1536     av_dlog(ts->stream, "pcr_pid=0x%x\n", pcr_pid);
1537
1538     program_info_length = get16(&p, p_end);
1539     if (program_info_length < 0)
1540         return;
1541     program_info_length &= 0xfff;
1542     while(program_info_length >= 2) {
1543         uint8_t tag, len;
1544         tag = get8(&p, p_end);
1545         len = get8(&p, p_end);
1546
1547         av_dlog(ts->stream, "program tag: 0x%02x len=%d\n", tag, len);
1548
1549         if(len > program_info_length - 2)
1550             //something else is broken, exit the program_descriptors_loop
1551             break;
1552         program_info_length -= len + 2;
1553         if (tag == 0x1d) { // IOD descriptor
1554             get8(&p, p_end); // scope
1555             get8(&p, p_end); // label
1556             len -= 2;
1557             mp4_read_iods(ts->stream, p, len, mp4_descr + mp4_descr_count,
1558                           &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1559         } else if (tag == 0x05 && len >= 4) { // registration descriptor
1560             prog_reg_desc = bytestream_get_le32(&p);
1561             len -= 4;
1562         }
1563         p += len;
1564     }
1565     p += program_info_length;
1566     if (p >= p_end)
1567         goto out;
1568
1569     // stop parsing after pmt, we found header
1570     if (!ts->stream->nb_streams)
1571         ts->stop_parse = 2;
1572
1573     for(;;) {
1574         st = 0;
1575         pes = NULL;
1576         stream_type = get8(&p, p_end);
1577         if (stream_type < 0)
1578             break;
1579         pid = get16(&p, p_end);
1580         if (pid < 0)
1581             break;
1582         pid &= 0x1fff;
1583         if (pid == ts->current_pid)
1584             break;
1585
1586         /* now create stream */
1587         if (ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES) {
1588             pes = ts->pids[pid]->u.pes_filter.opaque;
1589             if (!pes->st) {
1590                 pes->st = avformat_new_stream(pes->stream, NULL);
1591                 if (!pes->st)
1592                     goto out;
1593                 pes->st->id = pes->pid;
1594             }
1595             st = pes->st;
1596         } else if (stream_type != 0x13) {
1597             if (ts->pids[pid]) mpegts_close_filter(ts, ts->pids[pid]); //wrongly added sdt filter probably
1598             pes = add_pes_stream(ts, pid, pcr_pid);
1599             if (pes) {
1600                 st = avformat_new_stream(pes->stream, NULL);
1601                 if (!st)
1602                     goto out;
1603                 st->id = pes->pid;
1604             }
1605         } else {
1606             int idx = ff_find_stream_index(ts->stream, pid);
1607             if (idx >= 0) {
1608                 st = ts->stream->streams[idx];
1609             } else {
1610                 st = avformat_new_stream(ts->stream, NULL);
1611                 if (!st)
1612                     goto out;
1613                 st->id = pid;
1614                 st->codec->codec_type = AVMEDIA_TYPE_DATA;
1615             }
1616         }
1617
1618         if (!st)
1619             goto out;
1620
1621         if (pes && !pes->stream_type)
1622             mpegts_set_stream_info(st, pes, stream_type, prog_reg_desc);
1623
1624         add_pid_to_pmt(ts, h->id, pid);
1625
1626         ff_program_add_stream_index(ts->stream, h->id, st->index);
1627
1628         desc_list_len = get16(&p, p_end);
1629         if (desc_list_len < 0)
1630             break;
1631         desc_list_len &= 0xfff;
1632         desc_list_end = p + desc_list_len;
1633         if (desc_list_end > p_end)
1634             break;
1635         for(;;) {
1636             if (ff_parse_mpeg2_descriptor(ts->stream, st, stream_type, &p, desc_list_end,
1637                 mp4_descr, mp4_descr_count, pid, ts) < 0)
1638                 break;
1639
1640             if (pes && prog_reg_desc == AV_RL32("HDMV") && stream_type == 0x83 && pes->sub_st) {
1641                 ff_program_add_stream_index(ts->stream, h->id, pes->sub_st->index);
1642                 pes->sub_st->codec->codec_tag = st->codec->codec_tag;
1643             }
1644         }
1645         p = desc_list_end;
1646     }
1647
1648  out:
1649     for (i = 0; i < mp4_descr_count; i++)
1650         av_free(mp4_descr[i].dec_config_descr);
1651 }
1652
1653 static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1654 {
1655     MpegTSContext *ts = filter->u.section_filter.opaque;
1656     SectionHeader h1, *h = &h1;
1657     const uint8_t *p, *p_end;
1658     int sid, pmt_pid;
1659     AVProgram *program;
1660
1661     av_dlog(ts->stream, "PAT:\n");
1662     hex_dump_debug(ts->stream, section, section_len);
1663
1664     p_end = section + section_len - 4;
1665     p = section;
1666     if (parse_section_header(h, &p, p_end) < 0)
1667         return;
1668     if (h->tid != PAT_TID)
1669         return;
1670
1671     ts->stream->ts_id = h->id;
1672
1673     clear_programs(ts);
1674     for(;;) {
1675         sid = get16(&p, p_end);
1676         if (sid < 0)
1677             break;
1678         pmt_pid = get16(&p, p_end);
1679         if (pmt_pid < 0)
1680             break;
1681         pmt_pid &= 0x1fff;
1682
1683         if (pmt_pid == ts->current_pid)
1684             break;
1685
1686         av_dlog(ts->stream, "sid=0x%x pid=0x%x\n", sid, pmt_pid);
1687
1688         if (sid == 0x0000) {
1689             /* NIT info */
1690         } else {
1691             MpegTSFilter *fil = ts->pids[pmt_pid];
1692             program = av_new_program(ts->stream, sid);
1693             program->program_num = sid;
1694             program->pmt_pid = pmt_pid;
1695             if (fil)
1696                 if (   fil->type != MPEGTS_SECTION
1697                     || fil->pid != pmt_pid
1698                     || fil->u.section_filter.section_cb != pmt_cb)
1699                     mpegts_close_filter(ts, ts->pids[pmt_pid]);
1700
1701             if (!ts->pids[pmt_pid])
1702                 mpegts_open_section_filter(ts, pmt_pid, pmt_cb, ts, 1);
1703             add_pat_entry(ts, sid);
1704             add_pid_to_pmt(ts, sid, 0); //add pat pid to program
1705             add_pid_to_pmt(ts, sid, pmt_pid);
1706         }
1707     }
1708
1709     if (sid < 0) {
1710         int i,j;
1711         for (j=0; j<ts->stream->nb_programs; j++) {
1712             for (i=0; i<ts->nb_prg; i++)
1713                 if (ts->prg[i].id == ts->stream->programs[j]->id)
1714                     break;
1715             if (i==ts->nb_prg)
1716                 clear_avprogram(ts, ts->stream->programs[j]->id);
1717         }
1718     }
1719 }
1720
1721 static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1722 {
1723     MpegTSContext *ts = filter->u.section_filter.opaque;
1724     SectionHeader h1, *h = &h1;
1725     const uint8_t *p, *p_end, *desc_list_end, *desc_end;
1726     int onid, val, sid, desc_list_len, desc_tag, desc_len, service_type;
1727     char *name, *provider_name;
1728
1729     av_dlog(ts->stream, "SDT:\n");
1730     hex_dump_debug(ts->stream, section, section_len);
1731
1732     p_end = section + section_len - 4;
1733     p = section;
1734     if (parse_section_header(h, &p, p_end) < 0)
1735         return;
1736     if (h->tid != SDT_TID)
1737         return;
1738     onid = get16(&p, p_end);
1739     if (onid < 0)
1740         return;
1741     val = get8(&p, p_end);
1742     if (val < 0)
1743         return;
1744     for(;;) {
1745         sid = get16(&p, p_end);
1746         if (sid < 0)
1747             break;
1748         val = get8(&p, p_end);
1749         if (val < 0)
1750             break;
1751         desc_list_len = get16(&p, p_end);
1752         if (desc_list_len < 0)
1753             break;
1754         desc_list_len &= 0xfff;
1755         desc_list_end = p + desc_list_len;
1756         if (desc_list_end > p_end)
1757             break;
1758         for(;;) {
1759             desc_tag = get8(&p, desc_list_end);
1760             if (desc_tag < 0)
1761                 break;
1762             desc_len = get8(&p, desc_list_end);
1763             desc_end = p + desc_len;
1764             if (desc_end > desc_list_end)
1765                 break;
1766
1767             av_dlog(ts->stream, "tag: 0x%02x len=%d\n",
1768                    desc_tag, desc_len);
1769
1770             switch(desc_tag) {
1771             case 0x48:
1772                 service_type = get8(&p, p_end);
1773                 if (service_type < 0)
1774                     break;
1775                 provider_name = getstr8(&p, p_end);
1776                 if (!provider_name)
1777                     break;
1778                 name = getstr8(&p, p_end);
1779                 if (name) {
1780                     AVProgram *program = av_new_program(ts->stream, sid);
1781                     if(program) {
1782                         av_dict_set(&program->metadata, "service_name", name, 0);
1783                         av_dict_set(&program->metadata, "service_provider", provider_name, 0);
1784                     }
1785                 }
1786                 av_free(name);
1787                 av_free(provider_name);
1788                 break;
1789             default:
1790                 break;
1791             }
1792             p = desc_end;
1793         }
1794         p = desc_list_end;
1795     }
1796 }
1797
1798 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
1799                      const uint8_t *packet);
1800
1801 /* handle one TS packet */
1802 static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
1803 {
1804     AVFormatContext *s = ts->stream;
1805     MpegTSFilter *tss;
1806     int len, pid, cc, expected_cc, cc_ok, afc, is_start, is_discontinuity,
1807         has_adaptation, has_payload;
1808     const uint8_t *p, *p_end;
1809     int64_t pos;
1810
1811     pid = AV_RB16(packet + 1) & 0x1fff;
1812     if(pid && discard_pid(ts, pid))
1813         return 0;
1814     is_start = packet[1] & 0x40;
1815     tss = ts->pids[pid];
1816     if (ts->auto_guess && tss == NULL && is_start) {
1817         add_pes_stream(ts, pid, -1);
1818         tss = ts->pids[pid];
1819     }
1820     if (!tss)
1821         return 0;
1822     ts->current_pid = pid;
1823
1824     afc = (packet[3] >> 4) & 3;
1825     if (afc == 0) /* reserved value */
1826         return 0;
1827     has_adaptation = afc & 2;
1828     has_payload = afc & 1;
1829     is_discontinuity = has_adaptation
1830                 && packet[4] != 0 /* with length > 0 */
1831                 && (packet[5] & 0x80); /* and discontinuity indicated */
1832
1833     /* continuity check (currently not used) */
1834     cc = (packet[3] & 0xf);
1835     expected_cc = has_payload ? (tss->last_cc + 1) & 0x0f : tss->last_cc;
1836     cc_ok = pid == 0x1FFF // null packet PID
1837             || is_discontinuity
1838             || tss->last_cc < 0
1839             || expected_cc == cc;
1840
1841     tss->last_cc = cc;
1842     if (!cc_ok) {
1843         av_log(ts->stream, AV_LOG_DEBUG,
1844                "Continuity check failed for pid %d expected %d got %d\n",
1845                pid, expected_cc, cc);
1846         if(tss->type == MPEGTS_PES) {
1847             PESContext *pc = tss->u.pes_filter.opaque;
1848             pc->flags |= AV_PKT_FLAG_CORRUPT;
1849         }
1850     }
1851
1852     if (!has_payload)
1853         return 0;
1854     p = packet + 4;
1855     if (has_adaptation) {
1856         /* skip adaptation field */
1857         p += p[0] + 1;
1858     }
1859     /* if past the end of packet, ignore */
1860     p_end = packet + TS_PACKET_SIZE;
1861     if (p >= p_end)
1862         return 0;
1863
1864     pos = avio_tell(ts->stream->pb);
1865     ts->pos47_full = pos;
1866
1867     if (tss->type == MPEGTS_SECTION) {
1868         if (is_start) {
1869             /* pointer field present */
1870             len = *p++;
1871             if (p + len > p_end)
1872                 return 0;
1873             if (len && cc_ok) {
1874                 /* write remaining section bytes */
1875                 write_section_data(s, tss,
1876                                    p, len, 0);
1877                 /* check whether filter has been closed */
1878                 if (!ts->pids[pid])
1879                     return 0;
1880             }
1881             p += len;
1882             if (p < p_end) {
1883                 write_section_data(s, tss,
1884                                    p, p_end - p, 1);
1885             }
1886         } else {
1887             if (cc_ok) {
1888                 write_section_data(s, tss,
1889                                    p, p_end - p, 0);
1890             }
1891         }
1892     } else {
1893         int ret;
1894         int64_t pcr = -1;
1895         int64_t pcr_h;
1896         int pcr_l;
1897         if (parse_pcr(&pcr_h, &pcr_l, packet) == 0)
1898             pcr = pcr_h * 300 + pcr_l;
1899         // Note: The position here points actually behind the current packet.
1900         if ((ret = tss->u.pes_filter.pes_cb(tss, p, p_end - p, is_start,
1901                                             pos - ts->raw_packet_size, pcr)) < 0)
1902             return ret;
1903     }
1904
1905     return 0;
1906 }
1907
1908 static void reanalyze(MpegTSContext *ts) {
1909     AVIOContext *pb = ts->stream->pb;
1910     int64_t pos = avio_tell(pb);
1911     if(pos < 0)
1912         return;
1913     pos += ts->raw_packet_size - ts->pos47_full;
1914     if (pos == TS_PACKET_SIZE) {
1915         ts->size_stat[0] ++;
1916     } else if (pos == TS_DVHS_PACKET_SIZE) {
1917         ts->size_stat[1] ++;
1918     } else if (pos == TS_FEC_PACKET_SIZE) {
1919         ts->size_stat[2] ++;
1920     }
1921
1922     ts->size_stat_count ++;
1923     if(ts->size_stat_count > SIZE_STAT_THRESHOLD) {
1924         int newsize = 0;
1925         if (ts->size_stat[0] > SIZE_STAT_THRESHOLD) {
1926             newsize = TS_PACKET_SIZE;
1927         } else if (ts->size_stat[1] > SIZE_STAT_THRESHOLD) {
1928             newsize = TS_DVHS_PACKET_SIZE;
1929         } else if (ts->size_stat[2] > SIZE_STAT_THRESHOLD) {
1930             newsize = TS_FEC_PACKET_SIZE;
1931         }
1932         if (newsize && newsize != ts->raw_packet_size) {
1933             av_log(ts->stream, AV_LOG_WARNING, "changing packet size to %d\n", newsize);
1934             ts->raw_packet_size = newsize;
1935         }
1936         ts->size_stat_count = 0;
1937         memset(ts->size_stat, 0, sizeof(ts->size_stat));
1938     }
1939 }
1940
1941 /* XXX: try to find a better synchro over several packets (use
1942    get_packet_size() ?) */
1943 static int mpegts_resync(AVFormatContext *s)
1944 {
1945     AVIOContext *pb = s->pb;
1946     int c, i;
1947
1948     for(i = 0;i < MAX_RESYNC_SIZE; i++) {
1949         c = avio_r8(pb);
1950         if (url_feof(pb))
1951             return -1;
1952         if (c == 0x47) {
1953             avio_seek(pb, -1, SEEK_CUR);
1954             reanalyze(s->priv_data);
1955             return 0;
1956         }
1957     }
1958     av_log(s, AV_LOG_ERROR, "max resync size reached, could not find sync byte\n");
1959     /* no sync found */
1960     return -1;
1961 }
1962
1963 /* return -1 if error or EOF. Return 0 if OK. */
1964 static int read_packet(AVFormatContext *s, uint8_t *buf, int raw_packet_size, const uint8_t **data)
1965 {
1966     AVIOContext *pb = s->pb;
1967     int len;
1968
1969     for(;;) {
1970         len = ffio_read_indirect(pb, buf, TS_PACKET_SIZE, data);
1971         if (len != TS_PACKET_SIZE)
1972             return len < 0 ? len : AVERROR_EOF;
1973         /* check packet sync byte */
1974         if ((*data)[0] != 0x47) {
1975             /* find a new packet start */
1976             avio_seek(pb, -TS_PACKET_SIZE, SEEK_CUR);
1977             if (mpegts_resync(s) < 0)
1978                 return AVERROR(EAGAIN);
1979             else
1980                 continue;
1981         } else {
1982             break;
1983         }
1984     }
1985     return 0;
1986 }
1987
1988 static void finished_reading_packet(AVFormatContext *s, int raw_packet_size)
1989 {
1990     AVIOContext *pb = s->pb;
1991     int skip = raw_packet_size - TS_PACKET_SIZE;
1992     if (skip > 0)
1993         avio_skip(pb, skip);
1994 }
1995
1996 static int handle_packets(MpegTSContext *ts, int nb_packets)
1997 {
1998     AVFormatContext *s = ts->stream;
1999     uint8_t packet[TS_PACKET_SIZE + FF_INPUT_BUFFER_PADDING_SIZE];
2000     const uint8_t *data;
2001     int packet_num, ret = 0;
2002
2003     if (avio_tell(s->pb) != ts->last_pos) {
2004         int i;
2005         av_dlog(ts->stream, "Skipping after seek\n");
2006         /* seek detected, flush pes buffer */
2007         for (i = 0; i < NB_PID_MAX; i++) {
2008             if (ts->pids[i]) {
2009                 if (ts->pids[i]->type == MPEGTS_PES) {
2010                    PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2011                    av_buffer_unref(&pes->buffer);
2012                    pes->data_index = 0;
2013                    pes->state = MPEGTS_SKIP; /* skip until pes header */
2014                    pes->last_pcr = -1;
2015                 }
2016                 ts->pids[i]->last_cc = -1;
2017             }
2018         }
2019     }
2020
2021     ts->stop_parse = 0;
2022     packet_num = 0;
2023     memset(packet + TS_PACKET_SIZE, 0, FF_INPUT_BUFFER_PADDING_SIZE);
2024     for(;;) {
2025         packet_num++;
2026         if (nb_packets != 0 && packet_num >= nb_packets ||
2027             ts->stop_parse > 1) {
2028             ret = AVERROR(EAGAIN);
2029             break;
2030         }
2031         if (ts->stop_parse > 0)
2032             break;
2033
2034         ret = read_packet(s, packet, ts->raw_packet_size, &data);
2035         if (ret != 0)
2036             break;
2037         ret = handle_packet(ts, data);
2038         finished_reading_packet(s, ts->raw_packet_size);
2039         if (ret != 0)
2040             break;
2041     }
2042     ts->last_pos = avio_tell(s->pb);
2043     return ret;
2044 }
2045
2046 static int mpegts_probe(AVProbeData *p)
2047 {
2048     const int size= p->buf_size;
2049     int maxscore=0;
2050     int sumscore=0;
2051     int i;
2052     int check_count= size / TS_FEC_PACKET_SIZE;
2053 #define CHECK_COUNT 10
2054 #define CHECK_BLOCK 100
2055
2056     if (check_count < CHECK_COUNT)
2057         return -1;
2058
2059     for (i=0; i<check_count; i+=CHECK_BLOCK){
2060         int left = FFMIN(check_count - i, CHECK_BLOCK);
2061         int score     = analyze(p->buf + TS_PACKET_SIZE     *i, TS_PACKET_SIZE     *left, TS_PACKET_SIZE     , NULL);
2062         int dvhs_score= analyze(p->buf + TS_DVHS_PACKET_SIZE*i, TS_DVHS_PACKET_SIZE*left, TS_DVHS_PACKET_SIZE, NULL);
2063         int fec_score = analyze(p->buf + TS_FEC_PACKET_SIZE *i, TS_FEC_PACKET_SIZE *left, TS_FEC_PACKET_SIZE , NULL);
2064         score = FFMAX3(score, dvhs_score, fec_score);
2065         sumscore += score;
2066         maxscore = FFMAX(maxscore, score);
2067     }
2068
2069     sumscore = sumscore*CHECK_COUNT/check_count;
2070     maxscore = maxscore*CHECK_COUNT/CHECK_BLOCK;
2071
2072     av_dlog(0, "TS score: %d %d\n", sumscore, maxscore);
2073
2074     if (sumscore > 6)           return AVPROBE_SCORE_MAX + sumscore - CHECK_COUNT;
2075     else if (maxscore > 6)      return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT;
2076     else                        return -1;
2077 }
2078
2079 /* return the 90kHz PCR and the extension for the 27MHz PCR. return
2080    (-1) if not available */
2081 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
2082                      const uint8_t *packet)
2083 {
2084     int afc, len, flags;
2085     const uint8_t *p;
2086     unsigned int v;
2087
2088     afc = (packet[3] >> 4) & 3;
2089     if (afc <= 1)
2090         return -1;
2091     p = packet + 4;
2092     len = p[0];
2093     p++;
2094     if (len == 0)
2095         return -1;
2096     flags = *p++;
2097     len--;
2098     if (!(flags & 0x10))
2099         return -1;
2100     if (len < 6)
2101         return -1;
2102     v = AV_RB32(p);
2103     *ppcr_high = ((int64_t)v << 1) | (p[4] >> 7);
2104     *ppcr_low = ((p[4] & 1) << 8) | p[5];
2105     return 0;
2106 }
2107
2108 static void seek_back(AVFormatContext *s, AVIOContext *pb, int64_t pos) {
2109
2110     /* NOTE: We attempt to seek on non-seekable files as well, as the
2111      * probe buffer usually is big enough. Only warn if the seek failed
2112      * on files where the seek should work. */
2113     if (avio_seek(pb, pos, SEEK_SET) < 0)
2114         av_log(s, pb->seekable ? AV_LOG_ERROR : AV_LOG_INFO, "Unable to seek back to the start\n");
2115 }
2116
2117 static int mpegts_read_header(AVFormatContext *s)
2118 {
2119     MpegTSContext *ts = s->priv_data;
2120     AVIOContext *pb = s->pb;
2121     uint8_t buf[8*1024]={0};
2122     int len;
2123     int64_t pos;
2124
2125     ffio_ensure_seekback(pb, s->probesize);
2126
2127     /* read the first 8192 bytes to get packet size */
2128     pos = avio_tell(pb);
2129     len = avio_read(pb, buf, sizeof(buf));
2130     ts->raw_packet_size = get_packet_size(buf, len);
2131     if (ts->raw_packet_size <= 0) {
2132         av_log(s, AV_LOG_WARNING, "Could not detect TS packet size, defaulting to non-FEC/DVHS\n");
2133         ts->raw_packet_size = TS_PACKET_SIZE;
2134     }
2135     ts->stream = s;
2136     ts->auto_guess = 0;
2137
2138     if (s->iformat == &ff_mpegts_demuxer) {
2139         /* normal demux */
2140
2141         /* first do a scan to get all the services */
2142         seek_back(s, pb, pos);
2143
2144         mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
2145
2146         mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
2147
2148         handle_packets(ts, s->probesize / ts->raw_packet_size);
2149         /* if could not find service, enable auto_guess */
2150
2151         ts->auto_guess = 1;
2152
2153         av_dlog(ts->stream, "tuning done\n");
2154
2155         s->ctx_flags |= AVFMTCTX_NOHEADER;
2156     } else {
2157         AVStream *st;
2158         int pcr_pid, pid, nb_packets, nb_pcrs, ret, pcr_l;
2159         int64_t pcrs[2], pcr_h;
2160         int packet_count[2];
2161         uint8_t packet[TS_PACKET_SIZE];
2162         const uint8_t *data;
2163
2164         /* only read packets */
2165
2166         st = avformat_new_stream(s, NULL);
2167         if (!st)
2168             goto fail;
2169         avpriv_set_pts_info(st, 60, 1, 27000000);
2170         st->codec->codec_type = AVMEDIA_TYPE_DATA;
2171         st->codec->codec_id = AV_CODEC_ID_MPEG2TS;
2172
2173         /* we iterate until we find two PCRs to estimate the bitrate */
2174         pcr_pid = -1;
2175         nb_pcrs = 0;
2176         nb_packets = 0;
2177         for(;;) {
2178             ret = read_packet(s, packet, ts->raw_packet_size, &data);
2179             if (ret < 0)
2180                 goto fail;
2181             pid = AV_RB16(data + 1) & 0x1fff;
2182             if ((pcr_pid == -1 || pcr_pid == pid) &&
2183                 parse_pcr(&pcr_h, &pcr_l, data) == 0) {
2184                 finished_reading_packet(s, ts->raw_packet_size);
2185                 pcr_pid = pid;
2186                 packet_count[nb_pcrs] = nb_packets;
2187                 pcrs[nb_pcrs] = pcr_h * 300 + pcr_l;
2188                 nb_pcrs++;
2189                 if (nb_pcrs >= 2)
2190                     break;
2191             } else {
2192                 finished_reading_packet(s, ts->raw_packet_size);
2193             }
2194             nb_packets++;
2195         }
2196
2197         /* NOTE1: the bitrate is computed without the FEC */
2198         /* NOTE2: it is only the bitrate of the start of the stream */
2199         ts->pcr_incr = (pcrs[1] - pcrs[0]) / (packet_count[1] - packet_count[0]);
2200         ts->cur_pcr = pcrs[0] - ts->pcr_incr * packet_count[0];
2201         s->bit_rate = (TS_PACKET_SIZE * 8) * 27e6 / ts->pcr_incr;
2202         st->codec->bit_rate = s->bit_rate;
2203         st->start_time = ts->cur_pcr;
2204         av_dlog(ts->stream, "start=%0.3f pcr=%0.3f incr=%d\n",
2205                 st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr);
2206     }
2207
2208     seek_back(s, pb, pos);
2209     return 0;
2210  fail:
2211     return -1;
2212 }
2213
2214 #define MAX_PACKET_READAHEAD ((128 * 1024) / 188)
2215
2216 static int mpegts_raw_read_packet(AVFormatContext *s,
2217                                   AVPacket *pkt)
2218 {
2219     MpegTSContext *ts = s->priv_data;
2220     int ret, i;
2221     int64_t pcr_h, next_pcr_h, pos;
2222     int pcr_l, next_pcr_l;
2223     uint8_t pcr_buf[12];
2224     const uint8_t *data;
2225
2226     if (av_new_packet(pkt, TS_PACKET_SIZE) < 0)
2227         return AVERROR(ENOMEM);
2228     pkt->pos= avio_tell(s->pb);
2229     ret = read_packet(s, pkt->data, ts->raw_packet_size, &data);
2230     if (ret < 0) {
2231         av_free_packet(pkt);
2232         return ret;
2233     }
2234     if (data != pkt->data)
2235         memcpy(pkt->data, data, ts->raw_packet_size);
2236     finished_reading_packet(s, ts->raw_packet_size);
2237     if (ts->mpeg2ts_compute_pcr) {
2238         /* compute exact PCR for each packet */
2239         if (parse_pcr(&pcr_h, &pcr_l, pkt->data) == 0) {
2240             /* we read the next PCR (XXX: optimize it by using a bigger buffer */
2241             pos = avio_tell(s->pb);
2242             for(i = 0; i < MAX_PACKET_READAHEAD; i++) {
2243                 avio_seek(s->pb, pos + i * ts->raw_packet_size, SEEK_SET);
2244                 avio_read(s->pb, pcr_buf, 12);
2245                 if (parse_pcr(&next_pcr_h, &next_pcr_l, pcr_buf) == 0) {
2246                     /* XXX: not precise enough */
2247                     ts->pcr_incr = ((next_pcr_h - pcr_h) * 300 + (next_pcr_l - pcr_l)) /
2248                         (i + 1);
2249                     break;
2250                 }
2251             }
2252             avio_seek(s->pb, pos, SEEK_SET);
2253             /* no next PCR found: we use previous increment */
2254             ts->cur_pcr = pcr_h * 300 + pcr_l;
2255         }
2256         pkt->pts = ts->cur_pcr;
2257         pkt->duration = ts->pcr_incr;
2258         ts->cur_pcr += ts->pcr_incr;
2259     }
2260     pkt->stream_index = 0;
2261     return 0;
2262 }
2263
2264 static int mpegts_read_packet(AVFormatContext *s,
2265                               AVPacket *pkt)
2266 {
2267     MpegTSContext *ts = s->priv_data;
2268     int ret, i;
2269
2270     pkt->size = -1;
2271     ts->pkt = pkt;
2272     ret = handle_packets(ts, 0);
2273     if (ret < 0) {
2274         av_free_packet(ts->pkt);
2275         /* flush pes data left */
2276         for (i = 0; i < NB_PID_MAX; i++) {
2277             if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
2278                 PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2279                 if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
2280                     new_pes_packet(pes, pkt);
2281                     pes->state = MPEGTS_SKIP;
2282                     ret = 0;
2283                     break;
2284                 }
2285             }
2286         }
2287     }
2288
2289     if (!ret && pkt->size < 0)
2290         ret = AVERROR(EINTR);
2291     return ret;
2292 }
2293
2294 static void mpegts_free(MpegTSContext *ts)
2295 {
2296     int i;
2297
2298     clear_programs(ts);
2299
2300     for(i=0;i<NB_PID_MAX;i++)
2301         if (ts->pids[i]) mpegts_close_filter(ts, ts->pids[i]);
2302 }
2303
2304 static int mpegts_read_close(AVFormatContext *s)
2305 {
2306     MpegTSContext *ts = s->priv_data;
2307     mpegts_free(ts);
2308     return 0;
2309 }
2310
2311 static av_unused int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
2312                               int64_t *ppos, int64_t pos_limit)
2313 {
2314     MpegTSContext *ts = s->priv_data;
2315     int64_t pos, timestamp;
2316     uint8_t buf[TS_PACKET_SIZE];
2317     int pcr_l, pcr_pid = ((PESContext*)s->streams[stream_index]->priv_data)->pcr_pid;
2318     int pos47 = ts->pos47_full % ts->raw_packet_size;
2319     pos = ((*ppos  + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) * ts->raw_packet_size + pos47;
2320     while(pos < pos_limit) {
2321         if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2322             return AV_NOPTS_VALUE;
2323         if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
2324             return AV_NOPTS_VALUE;
2325         if (buf[0] != 0x47) {
2326             if (mpegts_resync(s) < 0)
2327                 return AV_NOPTS_VALUE;
2328             pos = avio_tell(s->pb);
2329             continue;
2330         }
2331         if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
2332             parse_pcr(&timestamp, &pcr_l, buf) == 0) {
2333             *ppos = pos;
2334             return timestamp;
2335         }
2336         pos += ts->raw_packet_size;
2337     }
2338
2339     return AV_NOPTS_VALUE;
2340 }
2341
2342 static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index,
2343                               int64_t *ppos, int64_t pos_limit)
2344 {
2345     MpegTSContext *ts = s->priv_data;
2346     int64_t pos;
2347     int pos47 = ts->pos47_full % ts->raw_packet_size;
2348     pos = ((*ppos  + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) * ts->raw_packet_size + pos47;
2349     ff_read_frame_flush(s);
2350     if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2351         return AV_NOPTS_VALUE;
2352     while(pos < pos_limit) {
2353         int ret;
2354         AVPacket pkt;
2355         av_init_packet(&pkt);
2356         ret= av_read_frame(s, &pkt);
2357         if(ret < 0)
2358             return AV_NOPTS_VALUE;
2359         av_free_packet(&pkt);
2360         if(pkt.dts != AV_NOPTS_VALUE && pkt.pos >= 0){
2361             ff_reduce_index(s, pkt.stream_index);
2362             av_add_index_entry(s->streams[pkt.stream_index], pkt.pos, pkt.dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
2363             if(pkt.stream_index == stream_index){
2364                 *ppos= pkt.pos;
2365                 return pkt.dts;
2366             }
2367         }
2368         pos = pkt.pos;
2369     }
2370
2371     return AV_NOPTS_VALUE;
2372 }
2373
2374 /**************************************************************/
2375 /* parsing functions - called from other demuxers such as RTP */
2376
2377 MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s)
2378 {
2379     MpegTSContext *ts;
2380
2381     ts = av_mallocz(sizeof(MpegTSContext));
2382     if (!ts)
2383         return NULL;
2384     /* no stream case, currently used by RTP */
2385     ts->raw_packet_size = TS_PACKET_SIZE;
2386     ts->stream = s;
2387     ts->auto_guess = 1;
2388     mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
2389     mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
2390
2391     return ts;
2392 }
2393
2394 /* return the consumed length if a packet was output, or -1 if no
2395    packet is output */
2396 int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
2397                         const uint8_t *buf, int len)
2398 {
2399     int len1;
2400
2401     len1 = len;
2402     ts->pkt = pkt;
2403     for(;;) {
2404         ts->stop_parse = 0;
2405         if (len < TS_PACKET_SIZE)
2406             return -1;
2407         if (buf[0] != 0x47) {
2408             buf++;
2409             len--;
2410         } else {
2411             handle_packet(ts, buf);
2412             buf += TS_PACKET_SIZE;
2413             len -= TS_PACKET_SIZE;
2414             if (ts->stop_parse == 1)
2415                 break;
2416         }
2417     }
2418     return len1 - len;
2419 }
2420
2421 void ff_mpegts_parse_close(MpegTSContext *ts)
2422 {
2423     mpegts_free(ts);
2424     av_free(ts);
2425 }
2426
2427 AVInputFormat ff_mpegts_demuxer = {
2428     .name           = "mpegts",
2429     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-TS (MPEG-2 Transport Stream)"),
2430     .priv_data_size = sizeof(MpegTSContext),
2431     .read_probe     = mpegts_probe,
2432     .read_header    = mpegts_read_header,
2433     .read_packet    = mpegts_read_packet,
2434     .read_close     = mpegts_read_close,
2435     .read_timestamp = mpegts_get_dts,
2436     .flags          = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT,
2437     .priv_class     = &mpegts_class,
2438 };
2439
2440 AVInputFormat ff_mpegtsraw_demuxer = {
2441     .name           = "mpegtsraw",
2442     .long_name      = NULL_IF_CONFIG_SMALL("raw MPEG-TS (MPEG-2 Transport Stream)"),
2443     .priv_data_size = sizeof(MpegTSContext),
2444     .read_header    = mpegts_read_header,
2445     .read_packet    = mpegts_raw_read_packet,
2446     .read_close     = mpegts_read_close,
2447     .read_timestamp = mpegts_get_dts,
2448     .flags          = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT,
2449     .priv_class     = &mpegtsraw_class,
2450 };