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