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