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