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