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