]> git.sesse.net Git - ffmpeg/blob - libavformat/mpegts.c
Merge commit '5a79bf0284a37855636390e620d189a964214c9e'
[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     { 0x24, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_HEVC       },
702     { 0x42, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_CAVS       },
703     { 0xd1, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC      },
704     { 0xea, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1        },
705     { 0 },
706 };
707
708 static const StreamType HDMV_types[] = {
709     { 0x80, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_PCM_BLURAY        },
710     { 0x81, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_AC3               },
711     { 0x82, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_DTS               },
712     { 0x83, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_TRUEHD            },
713     { 0x84, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_EAC3              },
714     { 0x85, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_DTS               }, /* DTS HD */
715     { 0x86, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_DTS               }, /* DTS HD MASTER*/
716     { 0xa1, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_EAC3              }, /* E-AC3 Secondary Audio */
717     { 0xa2, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_DTS               }, /* DTS Express Secondary Audio */
718     { 0x90, AVMEDIA_TYPE_SUBTITLE, AV_CODEC_ID_HDMV_PGS_SUBTITLE },
719     { 0 },
720 };
721
722 /* ATSC ? */
723 static const StreamType MISC_types[] = {
724     { 0x81, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AC3 },
725     { 0x8a, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS },
726     { 0 },
727 };
728
729 static const StreamType REGD_types[] = {
730     { MKTAG('d', 'r', 'a', 'c'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC },
731     { MKTAG('A', 'C', '-', '3'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AC3   },
732     { MKTAG('B', 'S', 'S', 'D'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_S302M },
733     { MKTAG('D', 'T', 'S', '1'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS   },
734     { MKTAG('D', 'T', 'S', '2'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS   },
735     { MKTAG('D', 'T', 'S', '3'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS   },
736     { MKTAG('H', 'E', 'V', 'C'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_HEVC  },
737     { MKTAG('K', 'L', 'V', 'A'), AVMEDIA_TYPE_DATA,  AV_CODEC_ID_SMPTE_KLV },
738     { MKTAG('V', 'C', '-', '1'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1   },
739     { MKTAG('O', 'p', 'u', 's'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_OPUS  },
740     { 0 },
741 };
742
743 static const StreamType METADATA_types[] = {
744     { MKTAG('K','L','V','A'), AVMEDIA_TYPE_DATA, AV_CODEC_ID_SMPTE_KLV },
745     { MKTAG('I','D','3',' '), AVMEDIA_TYPE_DATA, AV_CODEC_ID_TIMED_ID3 },
746     { 0 },
747 };
748
749 /* descriptor present */
750 static const StreamType DESC_types[] = {
751     { 0x6a, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_AC3          }, /* AC-3 descriptor */
752     { 0x7a, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_EAC3         }, /* E-AC-3 descriptor */
753     { 0x7b, AVMEDIA_TYPE_AUDIO,    AV_CODEC_ID_DTS          },
754     { 0x56, AVMEDIA_TYPE_SUBTITLE, AV_CODEC_ID_DVB_TELETEXT },
755     { 0x59, AVMEDIA_TYPE_SUBTITLE, AV_CODEC_ID_DVB_SUBTITLE }, /* subtitling descriptor */
756     { 0 },
757 };
758
759 static void mpegts_find_stream_type(AVStream *st,
760                                     uint32_t stream_type,
761                                     const StreamType *types)
762 {
763     if (avcodec_is_open(st->codec)) {
764         av_log(NULL, AV_LOG_DEBUG, "cannot set stream info, codec is open\n");
765         return;
766     }
767
768     for (; types->stream_type; types++)
769         if (stream_type == types->stream_type) {
770             st->codec->codec_type = types->codec_type;
771             st->codec->codec_id   = types->codec_id;
772             st->request_probe     = 0;
773             return;
774         }
775 }
776
777 static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
778                                   uint32_t stream_type, uint32_t prog_reg_desc)
779 {
780     int old_codec_type = st->codec->codec_type;
781     int old_codec_id  = st->codec->codec_id;
782
783     if (avcodec_is_open(st->codec)) {
784         av_log(pes->stream, AV_LOG_DEBUG, "cannot set stream info, codec is open\n");
785         return 0;
786     }
787
788     avpriv_set_pts_info(st, 33, 1, 90000);
789     st->priv_data         = pes;
790     st->codec->codec_type = AVMEDIA_TYPE_DATA;
791     st->codec->codec_id   = AV_CODEC_ID_NONE;
792     st->need_parsing      = AVSTREAM_PARSE_FULL;
793     pes->st          = st;
794     pes->stream_type = stream_type;
795
796     av_log(pes->stream, AV_LOG_DEBUG,
797            "stream=%d stream_type=%x pid=%x prog_reg_desc=%.4s\n",
798            st->index, pes->stream_type, pes->pid, (char *)&prog_reg_desc);
799
800     st->codec->codec_tag = pes->stream_type;
801
802     mpegts_find_stream_type(st, pes->stream_type, ISO_types);
803     if ((prog_reg_desc == AV_RL32("HDMV") ||
804          prog_reg_desc == AV_RL32("HDPR")) &&
805         st->codec->codec_id == AV_CODEC_ID_NONE) {
806         mpegts_find_stream_type(st, pes->stream_type, HDMV_types);
807         if (pes->stream_type == 0x83) {
808             // HDMV TrueHD streams also contain an AC3 coded version of the
809             // audio track - add a second stream for this
810             AVStream *sub_st;
811             // priv_data cannot be shared between streams
812             PESContext *sub_pes = av_malloc(sizeof(*sub_pes));
813             if (!sub_pes)
814                 return AVERROR(ENOMEM);
815             memcpy(sub_pes, pes, sizeof(*sub_pes));
816
817             sub_st = avformat_new_stream(pes->stream, NULL);
818             if (!sub_st) {
819                 av_free(sub_pes);
820                 return AVERROR(ENOMEM);
821             }
822
823             sub_st->id = pes->pid;
824             avpriv_set_pts_info(sub_st, 33, 1, 90000);
825             sub_st->priv_data         = sub_pes;
826             sub_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
827             sub_st->codec->codec_id   = AV_CODEC_ID_AC3;
828             sub_st->need_parsing      = AVSTREAM_PARSE_FULL;
829             sub_pes->sub_st           = pes->sub_st = sub_st;
830         }
831     }
832     if (st->codec->codec_id == AV_CODEC_ID_NONE)
833         mpegts_find_stream_type(st, pes->stream_type, MISC_types);
834     if (st->codec->codec_id == AV_CODEC_ID_NONE) {
835         st->codec->codec_id  = old_codec_id;
836         st->codec->codec_type = old_codec_type;
837     }
838     if ((st->codec->codec_id == AV_CODEC_ID_NONE ||
839             (st->request_probe > 0 && st->request_probe < AVPROBE_SCORE_STREAM_RETRY / 5)) &&
840         !avcodec_is_open(st->codec) &&
841         stream_type == STREAM_TYPE_PRIVATE_DATA) {
842         st->codec->codec_type = AVMEDIA_TYPE_DATA;
843         st->codec->codec_id   = AV_CODEC_ID_BIN_DATA;
844         st->request_probe = AVPROBE_SCORE_STREAM_RETRY / 5;
845     }
846
847     return 0;
848 }
849
850 static void reset_pes_packet_state(PESContext *pes)
851 {
852     pes->pts        = AV_NOPTS_VALUE;
853     pes->dts        = AV_NOPTS_VALUE;
854     pes->data_index = 0;
855     pes->flags      = 0;
856     av_buffer_unref(&pes->buffer);
857 }
858
859 static void new_pes_packet(PESContext *pes, AVPacket *pkt)
860 {
861     av_init_packet(pkt);
862
863     pkt->buf  = pes->buffer;
864     pkt->data = pes->buffer->data;
865     pkt->size = pes->data_index;
866
867     if (pes->total_size != MAX_PES_PAYLOAD &&
868         pes->pes_header_size + pes->data_index != pes->total_size +
869         PES_START_SIZE) {
870         av_log(pes->stream, AV_LOG_WARNING, "PES packet size mismatch\n");
871         pes->flags |= AV_PKT_FLAG_CORRUPT;
872     }
873     memset(pkt->data + pkt->size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
874
875     // Separate out the AC3 substream from an HDMV combined TrueHD/AC3 PID
876     if (pes->sub_st && pes->stream_type == 0x83 && pes->extended_stream_id == 0x76)
877         pkt->stream_index = pes->sub_st->index;
878     else
879         pkt->stream_index = pes->st->index;
880     pkt->pts = pes->pts;
881     pkt->dts = pes->dts;
882     /* store position of first TS packet of this PES packet */
883     pkt->pos   = pes->ts_packet_pos;
884     pkt->flags = pes->flags;
885
886     pes->buffer = NULL;
887     reset_pes_packet_state(pes);
888 }
889
890 static uint64_t get_ts64(GetBitContext *gb, int bits)
891 {
892     if (get_bits_left(gb) < bits)
893         return AV_NOPTS_VALUE;
894     return get_bits64(gb, bits);
895 }
896
897 static int read_sl_header(PESContext *pes, SLConfigDescr *sl,
898                           const uint8_t *buf, int buf_size)
899 {
900     GetBitContext gb;
901     int au_start_flag = 0, au_end_flag = 0, ocr_flag = 0, idle_flag = 0;
902     int padding_flag = 0, padding_bits = 0, inst_bitrate_flag = 0;
903     int dts_flag = -1, cts_flag = -1;
904     int64_t dts = AV_NOPTS_VALUE, cts = AV_NOPTS_VALUE;
905     uint8_t buf_padded[128 + FF_INPUT_BUFFER_PADDING_SIZE];
906     int buf_padded_size = FFMIN(buf_size, sizeof(buf_padded) - FF_INPUT_BUFFER_PADDING_SIZE);
907
908     memcpy(buf_padded, buf, buf_padded_size);
909
910     init_get_bits(&gb, buf_padded, buf_padded_size * 8);
911
912     if (sl->use_au_start)
913         au_start_flag = get_bits1(&gb);
914     if (sl->use_au_end)
915         au_end_flag = get_bits1(&gb);
916     if (!sl->use_au_start && !sl->use_au_end)
917         au_start_flag = au_end_flag = 1;
918     if (sl->ocr_len > 0)
919         ocr_flag = get_bits1(&gb);
920     if (sl->use_idle)
921         idle_flag = get_bits1(&gb);
922     if (sl->use_padding)
923         padding_flag = get_bits1(&gb);
924     if (padding_flag)
925         padding_bits = get_bits(&gb, 3);
926
927     if (!idle_flag && (!padding_flag || padding_bits != 0)) {
928         if (sl->packet_seq_num_len)
929             skip_bits_long(&gb, sl->packet_seq_num_len);
930         if (sl->degr_prior_len)
931             if (get_bits1(&gb))
932                 skip_bits(&gb, sl->degr_prior_len);
933         if (ocr_flag)
934             skip_bits_long(&gb, sl->ocr_len);
935         if (au_start_flag) {
936             if (sl->use_rand_acc_pt)
937                 get_bits1(&gb);
938             if (sl->au_seq_num_len > 0)
939                 skip_bits_long(&gb, sl->au_seq_num_len);
940             if (sl->use_timestamps) {
941                 dts_flag = get_bits1(&gb);
942                 cts_flag = get_bits1(&gb);
943             }
944         }
945         if (sl->inst_bitrate_len)
946             inst_bitrate_flag = get_bits1(&gb);
947         if (dts_flag == 1)
948             dts = get_ts64(&gb, sl->timestamp_len);
949         if (cts_flag == 1)
950             cts = get_ts64(&gb, sl->timestamp_len);
951         if (sl->au_len > 0)
952             skip_bits_long(&gb, sl->au_len);
953         if (inst_bitrate_flag)
954             skip_bits_long(&gb, sl->inst_bitrate_len);
955     }
956
957     if (dts != AV_NOPTS_VALUE)
958         pes->dts = dts;
959     if (cts != AV_NOPTS_VALUE)
960         pes->pts = cts;
961
962     if (sl->timestamp_len && sl->timestamp_res)
963         avpriv_set_pts_info(pes->st, sl->timestamp_len, 1, sl->timestamp_res);
964
965     return (get_bits_count(&gb) + 7) >> 3;
966 }
967
968 /* return non zero if a packet could be constructed */
969 static int mpegts_push_data(MpegTSFilter *filter,
970                             const uint8_t *buf, int buf_size, int is_start,
971                             int64_t pos)
972 {
973     PESContext *pes   = filter->u.pes_filter.opaque;
974     MpegTSContext *ts = pes->ts;
975     const uint8_t *p;
976     int len, code;
977
978     if (!ts->pkt)
979         return 0;
980
981     if (is_start) {
982         if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
983             new_pes_packet(pes, ts->pkt);
984             ts->stop_parse = 1;
985         } else {
986             reset_pes_packet_state(pes);
987         }
988         pes->state         = MPEGTS_HEADER;
989         pes->ts_packet_pos = pos;
990     }
991     p = buf;
992     while (buf_size > 0) {
993         switch (pes->state) {
994         case MPEGTS_HEADER:
995             len = PES_START_SIZE - pes->data_index;
996             if (len > buf_size)
997                 len = buf_size;
998             memcpy(pes->header + pes->data_index, p, len);
999             pes->data_index += len;
1000             p += len;
1001             buf_size -= len;
1002             if (pes->data_index == PES_START_SIZE) {
1003                 /* we got all the PES or section header. We can now
1004                  * decide */
1005                 if (pes->header[0] == 0x00 && pes->header[1] == 0x00 &&
1006                     pes->header[2] == 0x01) {
1007                     /* it must be an mpeg2 PES stream */
1008                     code = pes->header[3] | 0x100;
1009                     av_log(pes->stream, AV_LOG_TRACE, "pid=%x pes_code=%#x\n", pes->pid,
1010                             code);
1011
1012                     if ((pes->st && pes->st->discard == AVDISCARD_ALL &&
1013                          (!pes->sub_st ||
1014                           pes->sub_st->discard == AVDISCARD_ALL)) ||
1015                         code == 0x1be) /* padding_stream */
1016                         goto skip;
1017
1018                     /* stream not present in PMT */
1019                     if (!pes->st) {
1020                         if (ts->skip_changes)
1021                             goto skip;
1022
1023                         pes->st = avformat_new_stream(ts->stream, NULL);
1024                         if (!pes->st)
1025                             return AVERROR(ENOMEM);
1026                         pes->st->id = pes->pid;
1027                         mpegts_set_stream_info(pes->st, pes, 0, 0);
1028                     }
1029
1030                     pes->total_size = AV_RB16(pes->header + 4);
1031                     /* NOTE: a zero total size means the PES size is
1032                      * unbounded */
1033                     if (!pes->total_size)
1034                         pes->total_size = MAX_PES_PAYLOAD;
1035
1036                     /* allocate pes buffer */
1037                     pes->buffer = av_buffer_alloc(pes->total_size +
1038                                                   FF_INPUT_BUFFER_PADDING_SIZE);
1039                     if (!pes->buffer)
1040                         return AVERROR(ENOMEM);
1041
1042                     if (code != 0x1bc && code != 0x1bf && /* program_stream_map, private_stream_2 */
1043                         code != 0x1f0 && code != 0x1f1 && /* ECM, EMM */
1044                         code != 0x1ff && code != 0x1f2 && /* program_stream_directory, DSMCC_stream */
1045                         code != 0x1f8) {                  /* ITU-T Rec. H.222.1 type E stream */
1046                         pes->state = MPEGTS_PESHEADER;
1047                         if (pes->st->codec->codec_id == AV_CODEC_ID_NONE && !pes->st->request_probe) {
1048                             av_log(pes->stream, AV_LOG_TRACE,
1049                                     "pid=%x stream_type=%x probing\n",
1050                                     pes->pid,
1051                                     pes->stream_type);
1052                             pes->st->request_probe = 1;
1053                         }
1054                     } else {
1055                         pes->state      = MPEGTS_PAYLOAD;
1056                         pes->data_index = 0;
1057                     }
1058                 } else {
1059                     /* otherwise, it should be a table */
1060                     /* skip packet */
1061 skip:
1062                     pes->state = MPEGTS_SKIP;
1063                     continue;
1064                 }
1065             }
1066             break;
1067         /**********************************************/
1068         /* PES packing parsing */
1069         case MPEGTS_PESHEADER:
1070             len = PES_HEADER_SIZE - pes->data_index;
1071             if (len < 0)
1072                 return AVERROR_INVALIDDATA;
1073             if (len > buf_size)
1074                 len = buf_size;
1075             memcpy(pes->header + pes->data_index, p, len);
1076             pes->data_index += len;
1077             p += len;
1078             buf_size -= len;
1079             if (pes->data_index == PES_HEADER_SIZE) {
1080                 pes->pes_header_size = pes->header[8] + 9;
1081                 pes->state           = MPEGTS_PESHEADER_FILL;
1082             }
1083             break;
1084         case MPEGTS_PESHEADER_FILL:
1085             len = pes->pes_header_size - pes->data_index;
1086             if (len < 0)
1087                 return AVERROR_INVALIDDATA;
1088             if (len > buf_size)
1089                 len = buf_size;
1090             memcpy(pes->header + pes->data_index, p, len);
1091             pes->data_index += len;
1092             p += len;
1093             buf_size -= len;
1094             if (pes->data_index == pes->pes_header_size) {
1095                 const uint8_t *r;
1096                 unsigned int flags, pes_ext, skip;
1097
1098                 flags = pes->header[7];
1099                 r = pes->header + 9;
1100                 pes->pts = AV_NOPTS_VALUE;
1101                 pes->dts = AV_NOPTS_VALUE;
1102                 if ((flags & 0xc0) == 0x80) {
1103                     pes->dts = pes->pts = ff_parse_pes_pts(r);
1104                     r += 5;
1105                 } else if ((flags & 0xc0) == 0xc0) {
1106                     pes->pts = ff_parse_pes_pts(r);
1107                     r += 5;
1108                     pes->dts = ff_parse_pes_pts(r);
1109                     r += 5;
1110                 }
1111                 pes->extended_stream_id = -1;
1112                 if (flags & 0x01) { /* PES extension */
1113                     pes_ext = *r++;
1114                     /* Skip PES private data, program packet sequence counter and P-STD buffer */
1115                     skip  = (pes_ext >> 4) & 0xb;
1116                     skip += skip & 0x9;
1117                     r    += skip;
1118                     if ((pes_ext & 0x41) == 0x01 &&
1119                         (r + 2) <= (pes->header + pes->pes_header_size)) {
1120                         /* PES extension 2 */
1121                         if ((r[0] & 0x7f) > 0 && (r[1] & 0x80) == 0)
1122                             pes->extended_stream_id = r[1];
1123                     }
1124                 }
1125
1126                 /* we got the full header. We parse it and get the payload */
1127                 pes->state = MPEGTS_PAYLOAD;
1128                 pes->data_index = 0;
1129                 if (pes->stream_type == 0x12 && buf_size > 0) {
1130                     int sl_header_bytes = read_sl_header(pes, &pes->sl, p,
1131                                                          buf_size);
1132                     pes->pes_header_size += sl_header_bytes;
1133                     p += sl_header_bytes;
1134                     buf_size -= sl_header_bytes;
1135                 }
1136                 if (pes->stream_type == 0x15 && buf_size >= 5) {
1137                     /* skip metadata access unit header */
1138                     pes->pes_header_size += 5;
1139                     p += 5;
1140                     buf_size -= 5;
1141                 }
1142                 if (pes->ts->fix_teletext_pts && pes->st->codec->codec_id == AV_CODEC_ID_DVB_TELETEXT) {
1143                     AVProgram *p = NULL;
1144                     while ((p = av_find_program_from_stream(pes->stream, p, pes->st->index))) {
1145                         if (p->pcr_pid != -1 && p->discard != AVDISCARD_ALL) {
1146                             MpegTSFilter *f = pes->ts->pids[p->pcr_pid];
1147                             if (f) {
1148                                 AVStream *st = NULL;
1149                                 if (f->type == MPEGTS_PES) {
1150                                     PESContext *pcrpes = f->u.pes_filter.opaque;
1151                                     if (pcrpes)
1152                                         st = pcrpes->st;
1153                                 } else if (f->type == MPEGTS_PCR) {
1154                                     int i;
1155                                     for (i = 0; i < p->nb_stream_indexes; i++) {
1156                                         AVStream *pst = pes->stream->streams[p->stream_index[i]];
1157                                         if (pst->codec->codec_type == AVMEDIA_TYPE_VIDEO)
1158                                             st = pst;
1159                                     }
1160                                 }
1161                                 if (f->last_pcr != -1 && st && st->discard != AVDISCARD_ALL) {
1162                                     // teletext packets do not always have correct timestamps,
1163                                     // the standard says they should be handled after 40.6 ms at most,
1164                                     // and the pcr error to this packet should be no more than 100 ms.
1165                                     // TODO: we should interpolate the PCR, not just use the last one
1166                                     int64_t pcr = f->last_pcr / 300;
1167                                     pes->st->pts_wrap_reference = st->pts_wrap_reference;
1168                                     pes->st->pts_wrap_behavior = st->pts_wrap_behavior;
1169                                     if (pes->dts == AV_NOPTS_VALUE || pes->dts < pcr) {
1170                                         pes->pts = pes->dts = pcr;
1171                                     } else if (pes->dts > pcr + 3654 + 9000) {
1172                                         pes->pts = pes->dts = pcr + 3654 + 9000;
1173                                     }
1174                                     break;
1175                                 }
1176                             }
1177                         }
1178                     }
1179                 }
1180             }
1181             break;
1182         case MPEGTS_PAYLOAD:
1183             if (pes->buffer) {
1184                 if (pes->data_index > 0 &&
1185                     pes->data_index + buf_size > pes->total_size) {
1186                     new_pes_packet(pes, ts->pkt);
1187                     pes->total_size = MAX_PES_PAYLOAD;
1188                     pes->buffer = av_buffer_alloc(pes->total_size +
1189                                                   FF_INPUT_BUFFER_PADDING_SIZE);
1190                     if (!pes->buffer)
1191                         return AVERROR(ENOMEM);
1192                     ts->stop_parse = 1;
1193                 } else if (pes->data_index == 0 &&
1194                            buf_size > pes->total_size) {
1195                     // pes packet size is < ts size packet and pes data is padded with 0xff
1196                     // not sure if this is legal in ts but see issue #2392
1197                     buf_size = pes->total_size;
1198                 }
1199                 memcpy(pes->buffer->data + pes->data_index, p, buf_size);
1200                 pes->data_index += buf_size;
1201                 /* emit complete packets with known packet size
1202                  * decreases demuxer delay for infrequent packets like subtitles from
1203                  * a couple of seconds to milliseconds for properly muxed files.
1204                  * total_size is the number of bytes following pes_packet_length
1205                  * in the pes header, i.e. not counting the first PES_START_SIZE bytes */
1206                 if (!ts->stop_parse && pes->total_size < MAX_PES_PAYLOAD &&
1207                     pes->pes_header_size + pes->data_index == pes->total_size + PES_START_SIZE) {
1208                     ts->stop_parse = 1;
1209                     new_pes_packet(pes, ts->pkt);
1210                 }
1211             }
1212             buf_size = 0;
1213             break;
1214         case MPEGTS_SKIP:
1215             buf_size = 0;
1216             break;
1217         }
1218     }
1219
1220     return 0;
1221 }
1222
1223 static PESContext *add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid)
1224 {
1225     MpegTSFilter *tss;
1226     PESContext *pes;
1227
1228     /* if no pid found, then add a pid context */
1229     pes = av_mallocz(sizeof(PESContext));
1230     if (!pes)
1231         return 0;
1232     pes->ts      = ts;
1233     pes->stream  = ts->stream;
1234     pes->pid     = pid;
1235     pes->pcr_pid = pcr_pid;
1236     pes->state   = MPEGTS_SKIP;
1237     pes->pts     = AV_NOPTS_VALUE;
1238     pes->dts     = AV_NOPTS_VALUE;
1239     tss          = mpegts_open_pes_filter(ts, pid, mpegts_push_data, pes);
1240     if (!tss) {
1241         av_free(pes);
1242         return 0;
1243     }
1244     return pes;
1245 }
1246
1247 #define MAX_LEVEL 4
1248 typedef struct MP4DescrParseContext {
1249     AVFormatContext *s;
1250     AVIOContext pb;
1251     Mp4Descr *descr;
1252     Mp4Descr *active_descr;
1253     int descr_count;
1254     int max_descr_count;
1255     int level;
1256     int predefined_SLConfigDescriptor_seen;
1257 } MP4DescrParseContext;
1258
1259 static int init_MP4DescrParseContext(MP4DescrParseContext *d, AVFormatContext *s,
1260                                      const uint8_t *buf, unsigned size,
1261                                      Mp4Descr *descr, int max_descr_count)
1262 {
1263     int ret;
1264     if (size > (1 << 30))
1265         return AVERROR_INVALIDDATA;
1266
1267     if ((ret = ffio_init_context(&d->pb, (unsigned char *)buf, size, 0,
1268                                  NULL, NULL, NULL, NULL)) < 0)
1269         return ret;
1270
1271     d->s               = s;
1272     d->level           = 0;
1273     d->descr_count     = 0;
1274     d->descr           = descr;
1275     d->active_descr    = NULL;
1276     d->max_descr_count = max_descr_count;
1277
1278     return 0;
1279 }
1280
1281 static void update_offsets(AVIOContext *pb, int64_t *off, int *len)
1282 {
1283     int64_t new_off = avio_tell(pb);
1284     (*len) -= new_off - *off;
1285     *off    = new_off;
1286 }
1287
1288 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1289                            int target_tag);
1290
1291 static int parse_mp4_descr_arr(MP4DescrParseContext *d, int64_t off, int len)
1292 {
1293     while (len > 0) {
1294         int ret = parse_mp4_descr(d, off, len, 0);
1295         if (ret < 0)
1296             return ret;
1297         update_offsets(&d->pb, &off, &len);
1298     }
1299     return 0;
1300 }
1301
1302 static int parse_MP4IODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1303 {
1304     avio_rb16(&d->pb); // ID
1305     avio_r8(&d->pb);
1306     avio_r8(&d->pb);
1307     avio_r8(&d->pb);
1308     avio_r8(&d->pb);
1309     avio_r8(&d->pb);
1310     update_offsets(&d->pb, &off, &len);
1311     return parse_mp4_descr_arr(d, off, len);
1312 }
1313
1314 static int parse_MP4ODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1315 {
1316     int id_flags;
1317     if (len < 2)
1318         return 0;
1319     id_flags = avio_rb16(&d->pb);
1320     if (!(id_flags & 0x0020)) { // URL_Flag
1321         update_offsets(&d->pb, &off, &len);
1322         return parse_mp4_descr_arr(d, off, len); // ES_Descriptor[]
1323     } else {
1324         return 0;
1325     }
1326 }
1327
1328 static int parse_MP4ESDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1329 {
1330     int es_id = 0;
1331     if (d->descr_count >= d->max_descr_count)
1332         return AVERROR_INVALIDDATA;
1333     ff_mp4_parse_es_descr(&d->pb, &es_id);
1334     d->active_descr = d->descr + (d->descr_count++);
1335
1336     d->active_descr->es_id = es_id;
1337     update_offsets(&d->pb, &off, &len);
1338     parse_mp4_descr(d, off, len, MP4DecConfigDescrTag);
1339     update_offsets(&d->pb, &off, &len);
1340     if (len > 0)
1341         parse_mp4_descr(d, off, len, MP4SLDescrTag);
1342     d->active_descr = NULL;
1343     return 0;
1344 }
1345
1346 static int parse_MP4DecConfigDescrTag(MP4DescrParseContext *d, int64_t off,
1347                                       int len)
1348 {
1349     Mp4Descr *descr = d->active_descr;
1350     if (!descr)
1351         return AVERROR_INVALIDDATA;
1352     d->active_descr->dec_config_descr = av_malloc(len);
1353     if (!descr->dec_config_descr)
1354         return AVERROR(ENOMEM);
1355     descr->dec_config_descr_len = len;
1356     avio_read(&d->pb, descr->dec_config_descr, len);
1357     return 0;
1358 }
1359
1360 static int parse_MP4SLDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1361 {
1362     Mp4Descr *descr = d->active_descr;
1363     int predefined;
1364     if (!descr)
1365         return AVERROR_INVALIDDATA;
1366
1367     predefined = avio_r8(&d->pb);
1368     if (!predefined) {
1369         int lengths;
1370         int flags = avio_r8(&d->pb);
1371         descr->sl.use_au_start    = !!(flags & 0x80);
1372         descr->sl.use_au_end      = !!(flags & 0x40);
1373         descr->sl.use_rand_acc_pt = !!(flags & 0x20);
1374         descr->sl.use_padding     = !!(flags & 0x08);
1375         descr->sl.use_timestamps  = !!(flags & 0x04);
1376         descr->sl.use_idle        = !!(flags & 0x02);
1377         descr->sl.timestamp_res   = avio_rb32(&d->pb);
1378         avio_rb32(&d->pb);
1379         descr->sl.timestamp_len      = avio_r8(&d->pb);
1380         if (descr->sl.timestamp_len > 64) {
1381             avpriv_request_sample(NULL, "timestamp_len > 64");
1382             descr->sl.timestamp_len = 64;
1383             return AVERROR_PATCHWELCOME;
1384         }
1385         descr->sl.ocr_len            = avio_r8(&d->pb);
1386         descr->sl.au_len             = avio_r8(&d->pb);
1387         descr->sl.inst_bitrate_len   = avio_r8(&d->pb);
1388         lengths                      = avio_rb16(&d->pb);
1389         descr->sl.degr_prior_len     = lengths >> 12;
1390         descr->sl.au_seq_num_len     = (lengths >> 7) & 0x1f;
1391         descr->sl.packet_seq_num_len = (lengths >> 2) & 0x1f;
1392     } else if (!d->predefined_SLConfigDescriptor_seen){
1393         avpriv_report_missing_feature(d->s, "Predefined SLConfigDescriptor");
1394         d->predefined_SLConfigDescriptor_seen = 1;
1395     }
1396     return 0;
1397 }
1398
1399 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1400                            int target_tag)
1401 {
1402     int tag;
1403     int len1 = ff_mp4_read_descr(d->s, &d->pb, &tag);
1404     update_offsets(&d->pb, &off, &len);
1405     if (len < 0 || len1 > len || len1 <= 0) {
1406         av_log(d->s, AV_LOG_ERROR,
1407                "Tag %x length violation new length %d bytes remaining %d\n",
1408                tag, len1, len);
1409         return AVERROR_INVALIDDATA;
1410     }
1411
1412     if (d->level++ >= MAX_LEVEL) {
1413         av_log(d->s, AV_LOG_ERROR, "Maximum MP4 descriptor level exceeded\n");
1414         goto done;
1415     }
1416
1417     if (target_tag && tag != target_tag) {
1418         av_log(d->s, AV_LOG_ERROR, "Found tag %x expected %x\n", tag,
1419                target_tag);
1420         goto done;
1421     }
1422
1423     switch (tag) {
1424     case MP4IODescrTag:
1425         parse_MP4IODescrTag(d, off, len1);
1426         break;
1427     case MP4ODescrTag:
1428         parse_MP4ODescrTag(d, off, len1);
1429         break;
1430     case MP4ESDescrTag:
1431         parse_MP4ESDescrTag(d, off, len1);
1432         break;
1433     case MP4DecConfigDescrTag:
1434         parse_MP4DecConfigDescrTag(d, off, len1);
1435         break;
1436     case MP4SLDescrTag:
1437         parse_MP4SLDescrTag(d, off, len1);
1438         break;
1439     }
1440
1441
1442 done:
1443     d->level--;
1444     avio_seek(&d->pb, off + len1, SEEK_SET);
1445     return 0;
1446 }
1447
1448 static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size,
1449                          Mp4Descr *descr, int *descr_count, int max_descr_count)
1450 {
1451     MP4DescrParseContext d;
1452     int ret;
1453
1454     ret = init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count);
1455     if (ret < 0)
1456         return ret;
1457
1458     ret = parse_mp4_descr(&d, avio_tell(&d.pb), size, MP4IODescrTag);
1459
1460     *descr_count = d.descr_count;
1461     return ret;
1462 }
1463
1464 static int mp4_read_od(AVFormatContext *s, const uint8_t *buf, unsigned size,
1465                        Mp4Descr *descr, int *descr_count, int max_descr_count)
1466 {
1467     MP4DescrParseContext d;
1468     int ret;
1469
1470     ret = init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count);
1471     if (ret < 0)
1472         return ret;
1473
1474     ret = parse_mp4_descr_arr(&d, avio_tell(&d.pb), size);
1475
1476     *descr_count = d.descr_count;
1477     return ret;
1478 }
1479
1480 static void m4sl_cb(MpegTSFilter *filter, const uint8_t *section,
1481                     int section_len)
1482 {
1483     MpegTSContext *ts = filter->u.section_filter.opaque;
1484     MpegTSSectionFilter *tssf = &filter->u.section_filter;
1485     SectionHeader h;
1486     const uint8_t *p, *p_end;
1487     AVIOContext pb;
1488     int mp4_descr_count = 0;
1489     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = { { 0 } };
1490     int i, pid;
1491     AVFormatContext *s = ts->stream;
1492
1493     p_end = section + section_len - 4;
1494     p = section;
1495     if (parse_section_header(&h, &p, p_end) < 0)
1496         return;
1497     if (h.tid != M4OD_TID)
1498         return;
1499     if (skip_identical(&h, tssf))
1500         return;
1501
1502     mp4_read_od(s, p, (unsigned) (p_end - p), mp4_descr, &mp4_descr_count,
1503                 MAX_MP4_DESCR_COUNT);
1504
1505     for (pid = 0; pid < NB_PID_MAX; pid++) {
1506         if (!ts->pids[pid])
1507             continue;
1508         for (i = 0; i < mp4_descr_count; i++) {
1509             PESContext *pes;
1510             AVStream *st;
1511             if (ts->pids[pid]->es_id != mp4_descr[i].es_id)
1512                 continue;
1513             if (ts->pids[pid]->type != MPEGTS_PES) {
1514                 av_log(s, AV_LOG_ERROR, "pid %x is not PES\n", pid);
1515                 continue;
1516             }
1517             pes = ts->pids[pid]->u.pes_filter.opaque;
1518             st  = pes->st;
1519             if (!st)
1520                 continue;
1521
1522             pes->sl = mp4_descr[i].sl;
1523
1524             ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1525                               mp4_descr[i].dec_config_descr_len, 0,
1526                               NULL, NULL, NULL, NULL);
1527             ff_mp4_read_dec_config_descr(s, st, &pb);
1528             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1529                 st->codec->extradata_size > 0)
1530                 st->need_parsing = 0;
1531             if (st->codec->codec_id == AV_CODEC_ID_H264 &&
1532                 st->codec->extradata_size > 0)
1533                 st->need_parsing = 0;
1534
1535             if (st->codec->codec_id <= AV_CODEC_ID_NONE) {
1536                 // do nothing
1537             } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_AUDIO)
1538                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1539             else if (st->codec->codec_id < AV_CODEC_ID_FIRST_SUBTITLE)
1540                 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1541             else if (st->codec->codec_id < AV_CODEC_ID_FIRST_UNKNOWN)
1542                 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1543         }
1544     }
1545     for (i = 0; i < mp4_descr_count; i++)
1546         av_free(mp4_descr[i].dec_config_descr);
1547 }
1548
1549 static const uint8_t opus_coupled_stream_cnt[9] = {
1550     1, 0, 1, 1, 2, 2, 2, 3, 3
1551 };
1552
1553 static const uint8_t opus_stream_cnt[9] = {
1554     1, 1, 1, 2, 2, 3, 4, 4, 5,
1555 };
1556
1557 static const uint8_t opus_channel_map[8][8] = {
1558     { 0 },
1559     { 0,1 },
1560     { 0,2,1 },
1561     { 0,1,2,3 },
1562     { 0,4,1,2,3 },
1563     { 0,4,1,2,3,5 },
1564     { 0,4,1,2,3,5,6 },
1565     { 0,6,1,2,3,4,5,7 },
1566 };
1567
1568 int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type,
1569                               const uint8_t **pp, const uint8_t *desc_list_end,
1570                               Mp4Descr *mp4_descr, int mp4_descr_count, int pid,
1571                               MpegTSContext *ts)
1572 {
1573     const uint8_t *desc_end;
1574     int desc_len, desc_tag, desc_es_id, ext_desc_tag, channels, channel_config_code;
1575     char language[252];
1576     int i;
1577
1578     desc_tag = get8(pp, desc_list_end);
1579     if (desc_tag < 0)
1580         return AVERROR_INVALIDDATA;
1581     desc_len = get8(pp, desc_list_end);
1582     if (desc_len < 0)
1583         return AVERROR_INVALIDDATA;
1584     desc_end = *pp + desc_len;
1585     if (desc_end > desc_list_end)
1586         return AVERROR_INVALIDDATA;
1587
1588     av_log(fc, AV_LOG_TRACE, "tag: 0x%02x len=%d\n", desc_tag, desc_len);
1589
1590     if ((st->codec->codec_id == AV_CODEC_ID_NONE || st->request_probe > 0) &&
1591         stream_type == STREAM_TYPE_PRIVATE_DATA)
1592         mpegts_find_stream_type(st, desc_tag, DESC_types);
1593
1594     switch (desc_tag) {
1595     case 0x1E: /* SL descriptor */
1596         desc_es_id = get16(pp, desc_end);
1597         if (desc_es_id < 0)
1598             break;
1599         if (ts && ts->pids[pid])
1600             ts->pids[pid]->es_id = desc_es_id;
1601         for (i = 0; i < mp4_descr_count; i++)
1602             if (mp4_descr[i].dec_config_descr_len &&
1603                 mp4_descr[i].es_id == desc_es_id) {
1604                 AVIOContext pb;
1605                 ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1606                                   mp4_descr[i].dec_config_descr_len, 0,
1607                                   NULL, NULL, NULL, NULL);
1608                 ff_mp4_read_dec_config_descr(fc, st, &pb);
1609                 if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1610                     st->codec->extradata_size > 0)
1611                     st->need_parsing = 0;
1612                 if (st->codec->codec_id == AV_CODEC_ID_MPEG4SYSTEMS)
1613                     mpegts_open_section_filter(ts, pid, m4sl_cb, ts, 1);
1614             }
1615         break;
1616     case 0x1F: /* FMC descriptor */
1617         if (get16(pp, desc_end) < 0)
1618             break;
1619         if (mp4_descr_count > 0 &&
1620             (st->codec->codec_id == AV_CODEC_ID_AAC_LATM ||
1621              (st->request_probe == 0 && st->codec->codec_id == AV_CODEC_ID_NONE) ||
1622              st->request_probe > 0) &&
1623             mp4_descr->dec_config_descr_len && mp4_descr->es_id == pid) {
1624             AVIOContext pb;
1625             ffio_init_context(&pb, mp4_descr->dec_config_descr,
1626                               mp4_descr->dec_config_descr_len, 0,
1627                               NULL, NULL, NULL, NULL);
1628             ff_mp4_read_dec_config_descr(fc, st, &pb);
1629             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1630                 st->codec->extradata_size > 0) {
1631                 st->request_probe = st->need_parsing = 0;
1632                 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1633             }
1634         }
1635         break;
1636     case 0x56: /* DVB teletext descriptor */
1637         {
1638             uint8_t *extradata = NULL;
1639             int language_count = desc_len / 5;
1640
1641             if (desc_len > 0 && desc_len % 5 != 0)
1642                 return AVERROR_INVALIDDATA;
1643
1644             if (language_count > 0) {
1645                 /* 4 bytes per language code (3 bytes) with comma or NUL byte should fit language buffer */
1646                 if (language_count > sizeof(language) / 4) {
1647                     language_count = sizeof(language) / 4;
1648                 }
1649
1650                 if (st->codec->extradata == NULL) {
1651                     if (ff_alloc_extradata(st->codec, language_count * 2)) {
1652                         return AVERROR(ENOMEM);
1653                     }
1654                 }
1655
1656                if (st->codec->extradata_size < language_count * 2)
1657                    return AVERROR_INVALIDDATA;
1658
1659                extradata = st->codec->extradata;
1660
1661                 for (i = 0; i < language_count; i++) {
1662                     language[i * 4 + 0] = get8(pp, desc_end);
1663                     language[i * 4 + 1] = get8(pp, desc_end);
1664                     language[i * 4 + 2] = get8(pp, desc_end);
1665                     language[i * 4 + 3] = ',';
1666
1667                     memcpy(extradata, *pp, 2);
1668                     extradata += 2;
1669
1670                     *pp += 2;
1671                 }
1672
1673                 language[i * 4 - 1] = 0;
1674                 av_dict_set(&st->metadata, "language", language, 0);
1675             }
1676         }
1677         break;
1678     case 0x59: /* subtitling descriptor */
1679         {
1680             /* 8 bytes per DVB subtitle substream data:
1681              * ISO_639_language_code (3 bytes),
1682              * subtitling_type (1 byte),
1683              * composition_page_id (2 bytes),
1684              * ancillary_page_id (2 bytes) */
1685             int language_count = desc_len / 8;
1686
1687             if (desc_len > 0 && desc_len % 8 != 0)
1688                 return AVERROR_INVALIDDATA;
1689
1690             if (language_count > 1) {
1691                 avpriv_request_sample(fc, "DVB subtitles with multiple languages");
1692             }
1693
1694             if (language_count > 0) {
1695                 uint8_t *extradata;
1696
1697                 /* 4 bytes per language code (3 bytes) with comma or NUL byte should fit language buffer */
1698                 if (language_count > sizeof(language) / 4) {
1699                     language_count = sizeof(language) / 4;
1700                 }
1701
1702                 if (st->codec->extradata == NULL) {
1703                     if (ff_alloc_extradata(st->codec, language_count * 5)) {
1704                         return AVERROR(ENOMEM);
1705                     }
1706                 }
1707
1708                 if (st->codec->extradata_size < language_count * 5)
1709                     return AVERROR_INVALIDDATA;
1710
1711                 extradata = st->codec->extradata;
1712
1713                 for (i = 0; i < language_count; i++) {
1714                     language[i * 4 + 0] = get8(pp, desc_end);
1715                     language[i * 4 + 1] = get8(pp, desc_end);
1716                     language[i * 4 + 2] = get8(pp, desc_end);
1717                     language[i * 4 + 3] = ',';
1718
1719                     /* hearing impaired subtitles detection using subtitling_type */
1720                     switch (*pp[0]) {
1721                     case 0x20: /* DVB subtitles (for the hard of hearing) with no monitor aspect ratio criticality */
1722                     case 0x21: /* DVB subtitles (for the hard of hearing) for display on 4:3 aspect ratio monitor */
1723                     case 0x22: /* DVB subtitles (for the hard of hearing) for display on 16:9 aspect ratio monitor */
1724                     case 0x23: /* DVB subtitles (for the hard of hearing) for display on 2.21:1 aspect ratio monitor */
1725                     case 0x24: /* DVB subtitles (for the hard of hearing) for display on a high definition monitor */
1726                     case 0x25: /* DVB subtitles (for the hard of hearing) with plano-stereoscopic disparity for display on a high definition monitor */
1727                         st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
1728                         break;
1729                     }
1730
1731                     extradata[4] = get8(pp, desc_end); /* subtitling_type */
1732                     memcpy(extradata, *pp, 4); /* composition_page_id and ancillary_page_id */
1733                     extradata += 5;
1734
1735                     *pp += 4;
1736                 }
1737
1738                 language[i * 4 - 1] = 0;
1739                 av_dict_set(&st->metadata, "language", language, 0);
1740             }
1741         }
1742         break;
1743     case 0x0a: /* ISO 639 language descriptor */
1744         for (i = 0; i + 4 <= desc_len; i += 4) {
1745             language[i + 0] = get8(pp, desc_end);
1746             language[i + 1] = get8(pp, desc_end);
1747             language[i + 2] = get8(pp, desc_end);
1748             language[i + 3] = ',';
1749             switch (get8(pp, desc_end)) {
1750             case 0x01:
1751                 st->disposition |= AV_DISPOSITION_CLEAN_EFFECTS;
1752                 break;
1753             case 0x02:
1754                 st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
1755                 break;
1756             case 0x03:
1757                 st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
1758                 break;
1759             }
1760         }
1761         if (i && language[0]) {
1762             language[i - 1] = 0;
1763             av_dict_set(&st->metadata, "language", language, 0);
1764         }
1765         break;
1766     case 0x05: /* registration descriptor */
1767         st->codec->codec_tag = bytestream_get_le32(pp);
1768         av_log(fc, AV_LOG_TRACE, "reg_desc=%.4s\n", (char *)&st->codec->codec_tag);
1769         if (st->codec->codec_id == AV_CODEC_ID_NONE || st->request_probe > 0)
1770             mpegts_find_stream_type(st, st->codec->codec_tag, REGD_types);
1771         break;
1772     case 0x52: /* stream identifier descriptor */
1773         st->stream_identifier = 1 + get8(pp, desc_end);
1774         break;
1775     case 0x26: /* metadata descriptor */
1776         if (get16(pp, desc_end) == 0xFFFF)
1777             *pp += 4;
1778         if (get8(pp, desc_end) == 0xFF) {
1779             st->codec->codec_tag = bytestream_get_le32(pp);
1780             if (st->codec->codec_id == AV_CODEC_ID_NONE)
1781                 mpegts_find_stream_type(st, st->codec->codec_tag, METADATA_types);
1782         }
1783         break;
1784     case 0x7f: /* DVB extension descriptor */
1785         ext_desc_tag = get8(pp, desc_end);
1786         if (ext_desc_tag < 0)
1787             return AVERROR_INVALIDDATA;
1788         if (st->codec->codec_id == AV_CODEC_ID_OPUS &&
1789             ext_desc_tag == 0x80) { /* User defined (provisional Opus) */
1790             if (!st->codec->extradata) {
1791                 st->codec->extradata = av_mallocz(sizeof(opus_default_extradata) +
1792                                                   FF_INPUT_BUFFER_PADDING_SIZE);
1793                 if (!st->codec->extradata)
1794                     return AVERROR(ENOMEM);
1795
1796                 st->codec->extradata_size = sizeof(opus_default_extradata);
1797                 memcpy(st->codec->extradata, opus_default_extradata, sizeof(opus_default_extradata));
1798
1799                 channel_config_code = get8(pp, desc_end);
1800                 if (channel_config_code < 0)
1801                     return AVERROR_INVALIDDATA;
1802                 if (channel_config_code <= 0x8) {
1803                     st->codec->extradata[9]  = channels = channel_config_code ? channel_config_code : 2;
1804                     st->codec->extradata[18] = channel_config_code ? (channels > 2) : /* Dual Mono */ 255;
1805                     st->codec->extradata[19] = opus_stream_cnt[channel_config_code];
1806                     st->codec->extradata[20] = opus_coupled_stream_cnt[channel_config_code];
1807                     memcpy(&st->codec->extradata[21], opus_channel_map[channels - 1], channels);
1808                 } else {
1809                     avpriv_request_sample(fc, "Opus in MPEG-TS - channel_config_code > 0x8");
1810                 }
1811                 st->need_parsing = AVSTREAM_PARSE_FULL;
1812             }
1813         }
1814         break;
1815     default:
1816         break;
1817     }
1818     *pp = desc_end;
1819     return 0;
1820 }
1821
1822 static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1823 {
1824     MpegTSContext *ts = filter->u.section_filter.opaque;
1825     MpegTSSectionFilter *tssf = &filter->u.section_filter;
1826     SectionHeader h1, *h = &h1;
1827     PESContext *pes;
1828     AVStream *st;
1829     const uint8_t *p, *p_end, *desc_list_end;
1830     int program_info_length, pcr_pid, pid, stream_type;
1831     int desc_list_len;
1832     uint32_t prog_reg_desc = 0; /* registration descriptor */
1833
1834     int mp4_descr_count = 0;
1835     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = { { 0 } };
1836     int i;
1837
1838     av_log(ts->stream, AV_LOG_TRACE, "PMT: len %i\n", section_len);
1839     hex_dump_debug(ts->stream, section, section_len);
1840
1841     p_end = section + section_len - 4;
1842     p = section;
1843     if (parse_section_header(h, &p, p_end) < 0)
1844         return;
1845     if (skip_identical(h, tssf))
1846         return;
1847
1848     av_log(ts->stream, AV_LOG_TRACE, "sid=0x%x sec_num=%d/%d version=%d\n",
1849             h->id, h->sec_num, h->last_sec_num, h->version);
1850
1851     if (h->tid != PMT_TID)
1852         return;
1853     if (!ts->scan_all_pmts && ts->skip_changes)
1854         return;
1855
1856     if (!ts->skip_clear)
1857         clear_program(ts, h->id);
1858
1859     pcr_pid = get16(&p, p_end);
1860     if (pcr_pid < 0)
1861         return;
1862     pcr_pid &= 0x1fff;
1863     add_pid_to_pmt(ts, h->id, pcr_pid);
1864     set_pcr_pid(ts->stream, h->id, pcr_pid);
1865
1866     av_log(ts->stream, AV_LOG_TRACE, "pcr_pid=0x%x\n", pcr_pid);
1867
1868     program_info_length = get16(&p, p_end);
1869     if (program_info_length < 0)
1870         return;
1871     program_info_length &= 0xfff;
1872     while (program_info_length >= 2) {
1873         uint8_t tag, len;
1874         tag = get8(&p, p_end);
1875         len = get8(&p, p_end);
1876
1877         av_log(ts->stream, AV_LOG_TRACE, "program tag: 0x%02x len=%d\n", tag, len);
1878
1879         if (len > program_info_length - 2)
1880             // something else is broken, exit the program_descriptors_loop
1881             break;
1882         program_info_length -= len + 2;
1883         if (tag == 0x1d) { // IOD descriptor
1884             get8(&p, p_end); // scope
1885             get8(&p, p_end); // label
1886             len -= 2;
1887             mp4_read_iods(ts->stream, p, len, mp4_descr + mp4_descr_count,
1888                           &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1889         } else if (tag == 0x05 && len >= 4) { // registration descriptor
1890             prog_reg_desc = bytestream_get_le32(&p);
1891             len -= 4;
1892         }
1893         p += len;
1894     }
1895     p += program_info_length;
1896     if (p >= p_end)
1897         goto out;
1898
1899     // stop parsing after pmt, we found header
1900     if (!ts->stream->nb_streams)
1901         ts->stop_parse = 2;
1902
1903     set_pmt_found(ts, h->id);
1904
1905
1906     for (;;) {
1907         st = 0;
1908         pes = NULL;
1909         stream_type = get8(&p, p_end);
1910         if (stream_type < 0)
1911             break;
1912         pid = get16(&p, p_end);
1913         if (pid < 0)
1914             goto out;
1915         pid &= 0x1fff;
1916         if (pid == ts->current_pid)
1917             goto out;
1918
1919         /* now create stream */
1920         if (ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES) {
1921             pes = ts->pids[pid]->u.pes_filter.opaque;
1922             if (!pes->st) {
1923                 pes->st     = avformat_new_stream(pes->stream, NULL);
1924                 if (!pes->st)
1925                     goto out;
1926                 pes->st->id = pes->pid;
1927             }
1928             st = pes->st;
1929         } else if (stream_type != 0x13) {
1930             if (ts->pids[pid])
1931                 mpegts_close_filter(ts, ts->pids[pid]); // wrongly added sdt filter probably
1932             pes = add_pes_stream(ts, pid, pcr_pid);
1933             if (pes) {
1934                 st = avformat_new_stream(pes->stream, NULL);
1935                 if (!st)
1936                     goto out;
1937                 st->id = pes->pid;
1938             }
1939         } else {
1940             int idx = ff_find_stream_index(ts->stream, pid);
1941             if (idx >= 0) {
1942                 st = ts->stream->streams[idx];
1943             } else {
1944                 st = avformat_new_stream(ts->stream, NULL);
1945                 if (!st)
1946                     goto out;
1947                 st->id = pid;
1948                 st->codec->codec_type = AVMEDIA_TYPE_DATA;
1949             }
1950         }
1951
1952         if (!st)
1953             goto out;
1954
1955         if (pes && !pes->stream_type)
1956             mpegts_set_stream_info(st, pes, stream_type, prog_reg_desc);
1957
1958         add_pid_to_pmt(ts, h->id, pid);
1959
1960         ff_program_add_stream_index(ts->stream, h->id, st->index);
1961
1962         desc_list_len = get16(&p, p_end);
1963         if (desc_list_len < 0)
1964             goto out;
1965         desc_list_len &= 0xfff;
1966         desc_list_end  = p + desc_list_len;
1967         if (desc_list_end > p_end)
1968             goto out;
1969         for (;;) {
1970             if (ff_parse_mpeg2_descriptor(ts->stream, st, stream_type, &p,
1971                                           desc_list_end, mp4_descr,
1972                                           mp4_descr_count, pid, ts) < 0)
1973                 break;
1974
1975             if (pes && prog_reg_desc == AV_RL32("HDMV") &&
1976                 stream_type == 0x83 && pes->sub_st) {
1977                 ff_program_add_stream_index(ts->stream, h->id,
1978                                             pes->sub_st->index);
1979                 pes->sub_st->codec->codec_tag = st->codec->codec_tag;
1980             }
1981         }
1982         p = desc_list_end;
1983     }
1984
1985     if (!ts->pids[pcr_pid])
1986         mpegts_open_pcr_filter(ts, pcr_pid);
1987
1988 out:
1989     for (i = 0; i < mp4_descr_count; i++)
1990         av_free(mp4_descr[i].dec_config_descr);
1991 }
1992
1993 static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1994 {
1995     MpegTSContext *ts = filter->u.section_filter.opaque;
1996     MpegTSSectionFilter *tssf = &filter->u.section_filter;
1997     SectionHeader h1, *h = &h1;
1998     const uint8_t *p, *p_end;
1999     int sid, pmt_pid;
2000     AVProgram *program;
2001
2002     av_log(ts->stream, AV_LOG_TRACE, "PAT:\n");
2003     hex_dump_debug(ts->stream, section, section_len);
2004
2005     p_end = section + section_len - 4;
2006     p     = section;
2007     if (parse_section_header(h, &p, p_end) < 0)
2008         return;
2009     if (h->tid != PAT_TID)
2010         return;
2011     if (ts->skip_changes)
2012         return;
2013
2014     if (skip_identical(h, tssf))
2015         return;
2016     ts->stream->ts_id = h->id;
2017
2018     clear_programs(ts);
2019     for (;;) {
2020         sid = get16(&p, p_end);
2021         if (sid < 0)
2022             break;
2023         pmt_pid = get16(&p, p_end);
2024         if (pmt_pid < 0)
2025             break;
2026         pmt_pid &= 0x1fff;
2027
2028         if (pmt_pid == ts->current_pid)
2029             break;
2030
2031         av_log(ts->stream, AV_LOG_TRACE, "sid=0x%x pid=0x%x\n", sid, pmt_pid);
2032
2033         if (sid == 0x0000) {
2034             /* NIT info */
2035         } else {
2036             MpegTSFilter *fil = ts->pids[pmt_pid];
2037             program = av_new_program(ts->stream, sid);
2038             if (program) {
2039                 program->program_num = sid;
2040                 program->pmt_pid = pmt_pid;
2041             }
2042             if (fil)
2043                 if (   fil->type != MPEGTS_SECTION
2044                     || fil->pid != pmt_pid
2045                     || fil->u.section_filter.section_cb != pmt_cb)
2046                     mpegts_close_filter(ts, ts->pids[pmt_pid]);
2047
2048             if (!ts->pids[pmt_pid])
2049                 mpegts_open_section_filter(ts, pmt_pid, pmt_cb, ts, 1);
2050             add_pat_entry(ts, sid);
2051             add_pid_to_pmt(ts, sid, 0); // add pat pid to program
2052             add_pid_to_pmt(ts, sid, pmt_pid);
2053         }
2054     }
2055
2056     if (sid < 0) {
2057         int i,j;
2058         for (j=0; j<ts->stream->nb_programs; j++) {
2059             for (i = 0; i < ts->nb_prg; i++)
2060                 if (ts->prg[i].id == ts->stream->programs[j]->id)
2061                     break;
2062             if (i==ts->nb_prg && !ts->skip_clear)
2063                 clear_avprogram(ts, ts->stream->programs[j]->id);
2064         }
2065     }
2066 }
2067
2068 static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
2069 {
2070     MpegTSContext *ts = filter->u.section_filter.opaque;
2071     MpegTSSectionFilter *tssf = &filter->u.section_filter;
2072     SectionHeader h1, *h = &h1;
2073     const uint8_t *p, *p_end, *desc_list_end, *desc_end;
2074     int onid, val, sid, desc_list_len, desc_tag, desc_len, service_type;
2075     char *name, *provider_name;
2076
2077     av_log(ts->stream, AV_LOG_TRACE, "SDT:\n");
2078     hex_dump_debug(ts->stream, section, section_len);
2079
2080     p_end = section + section_len - 4;
2081     p     = section;
2082     if (parse_section_header(h, &p, p_end) < 0)
2083         return;
2084     if (h->tid != SDT_TID)
2085         return;
2086     if (ts->skip_changes)
2087         return;
2088     if (skip_identical(h, tssf))
2089         return;
2090
2091     onid = get16(&p, p_end);
2092     if (onid < 0)
2093         return;
2094     val = get8(&p, p_end);
2095     if (val < 0)
2096         return;
2097     for (;;) {
2098         sid = get16(&p, p_end);
2099         if (sid < 0)
2100             break;
2101         val = get8(&p, p_end);
2102         if (val < 0)
2103             break;
2104         desc_list_len = get16(&p, p_end);
2105         if (desc_list_len < 0)
2106             break;
2107         desc_list_len &= 0xfff;
2108         desc_list_end  = p + desc_list_len;
2109         if (desc_list_end > p_end)
2110             break;
2111         for (;;) {
2112             desc_tag = get8(&p, desc_list_end);
2113             if (desc_tag < 0)
2114                 break;
2115             desc_len = get8(&p, desc_list_end);
2116             desc_end = p + desc_len;
2117             if (desc_len < 0 || desc_end > desc_list_end)
2118                 break;
2119
2120             av_log(ts->stream, AV_LOG_TRACE, "tag: 0x%02x len=%d\n",
2121                     desc_tag, desc_len);
2122
2123             switch (desc_tag) {
2124             case 0x48:
2125                 service_type = get8(&p, p_end);
2126                 if (service_type < 0)
2127                     break;
2128                 provider_name = getstr8(&p, p_end);
2129                 if (!provider_name)
2130                     break;
2131                 name = getstr8(&p, p_end);
2132                 if (name) {
2133                     AVProgram *program = av_new_program(ts->stream, sid);
2134                     if (program) {
2135                         av_dict_set(&program->metadata, "service_name", name, 0);
2136                         av_dict_set(&program->metadata, "service_provider",
2137                                     provider_name, 0);
2138                     }
2139                 }
2140                 av_free(name);
2141                 av_free(provider_name);
2142                 break;
2143             default:
2144                 break;
2145             }
2146             p = desc_end;
2147         }
2148         p = desc_list_end;
2149     }
2150 }
2151
2152 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
2153                      const uint8_t *packet);
2154
2155 /* handle one TS packet */
2156 static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
2157 {
2158     MpegTSFilter *tss;
2159     int len, pid, cc, expected_cc, cc_ok, afc, is_start, is_discontinuity,
2160         has_adaptation, has_payload;
2161     const uint8_t *p, *p_end;
2162     int64_t pos;
2163
2164     pid = AV_RB16(packet + 1) & 0x1fff;
2165     if (pid && discard_pid(ts, pid))
2166         return 0;
2167     is_start = packet[1] & 0x40;
2168     tss = ts->pids[pid];
2169     if (ts->auto_guess && !tss && is_start) {
2170         add_pes_stream(ts, pid, -1);
2171         tss = ts->pids[pid];
2172     }
2173     if (!tss)
2174         return 0;
2175     ts->current_pid = pid;
2176
2177     afc = (packet[3] >> 4) & 3;
2178     if (afc == 0) /* reserved value */
2179         return 0;
2180     has_adaptation   = afc & 2;
2181     has_payload      = afc & 1;
2182     is_discontinuity = has_adaptation &&
2183                        packet[4] != 0 && /* with length > 0 */
2184                        (packet[5] & 0x80); /* and discontinuity indicated */
2185
2186     /* continuity check (currently not used) */
2187     cc = (packet[3] & 0xf);
2188     expected_cc = has_payload ? (tss->last_cc + 1) & 0x0f : tss->last_cc;
2189     cc_ok = pid == 0x1FFF || // null packet PID
2190             is_discontinuity ||
2191             tss->last_cc < 0 ||
2192             expected_cc == cc;
2193
2194     tss->last_cc = cc;
2195     if (!cc_ok) {
2196         av_log(ts->stream, AV_LOG_DEBUG,
2197                "Continuity check failed for pid %d expected %d got %d\n",
2198                pid, expected_cc, cc);
2199         if (tss->type == MPEGTS_PES) {
2200             PESContext *pc = tss->u.pes_filter.opaque;
2201             pc->flags |= AV_PKT_FLAG_CORRUPT;
2202         }
2203     }
2204
2205     p = packet + 4;
2206     if (has_adaptation) {
2207         int64_t pcr_h;
2208         int pcr_l;
2209         if (parse_pcr(&pcr_h, &pcr_l, packet) == 0)
2210             tss->last_pcr = pcr_h * 300 + pcr_l;
2211         /* skip adaptation field */
2212         p += p[0] + 1;
2213     }
2214     /* if past the end of packet, ignore */
2215     p_end = packet + TS_PACKET_SIZE;
2216     if (p >= p_end || !has_payload)
2217         return 0;
2218
2219     pos = avio_tell(ts->stream->pb);
2220     if (pos >= 0) {
2221         av_assert0(pos >= TS_PACKET_SIZE);
2222         ts->pos47_full = pos - TS_PACKET_SIZE;
2223     }
2224
2225     if (tss->type == MPEGTS_SECTION) {
2226         if (is_start) {
2227             /* pointer field present */
2228             len = *p++;
2229             if (len > p_end - p)
2230                 return 0;
2231             if (len && cc_ok) {
2232                 /* write remaining section bytes */
2233                 write_section_data(ts, tss,
2234                                    p, len, 0);
2235                 /* check whether filter has been closed */
2236                 if (!ts->pids[pid])
2237                     return 0;
2238             }
2239             p += len;
2240             if (p < p_end) {
2241                 write_section_data(ts, tss,
2242                                    p, p_end - p, 1);
2243             }
2244         } else {
2245             if (cc_ok) {
2246                 write_section_data(ts, tss,
2247                                    p, p_end - p, 0);
2248             }
2249         }
2250
2251         // stop find_stream_info from waiting for more streams
2252         // when all programs have received a PMT
2253         if (ts->stream->ctx_flags & AVFMTCTX_NOHEADER && ts->scan_all_pmts <= 0) {
2254             int i;
2255             for (i = 0; i < ts->nb_prg; i++) {
2256                 if (!ts->prg[i].pmt_found)
2257                     break;
2258             }
2259             if (i == ts->nb_prg && ts->nb_prg > 0) {
2260                 int types = 0;
2261                 for (i = 0; i < ts->stream->nb_streams; i++) {
2262                     AVStream *st = ts->stream->streams[i];
2263                     types |= 1<<st->codec->codec_type;
2264                 }
2265                 if ((types & (1<<AVMEDIA_TYPE_AUDIO) && types & (1<<AVMEDIA_TYPE_VIDEO)) || pos > 100000) {
2266                     av_log(ts->stream, AV_LOG_DEBUG, "All programs have pmt, headers found\n");
2267                     ts->stream->ctx_flags &= ~AVFMTCTX_NOHEADER;
2268                 }
2269             }
2270         }
2271
2272     } else {
2273         int ret;
2274         // Note: The position here points actually behind the current packet.
2275         if (tss->type == MPEGTS_PES) {
2276             if ((ret = tss->u.pes_filter.pes_cb(tss, p, p_end - p, is_start,
2277                                                 pos - ts->raw_packet_size)) < 0)
2278                 return ret;
2279         }
2280     }
2281
2282     return 0;
2283 }
2284
2285 static void reanalyze(MpegTSContext *ts) {
2286     AVIOContext *pb = ts->stream->pb;
2287     int64_t pos = avio_tell(pb);
2288     if (pos < 0)
2289         return;
2290     pos -= ts->pos47_full;
2291     if (pos == TS_PACKET_SIZE) {
2292         ts->size_stat[0] ++;
2293     } else if (pos == TS_DVHS_PACKET_SIZE) {
2294         ts->size_stat[1] ++;
2295     } else if (pos == TS_FEC_PACKET_SIZE) {
2296         ts->size_stat[2] ++;
2297     }
2298
2299     ts->size_stat_count ++;
2300     if (ts->size_stat_count > SIZE_STAT_THRESHOLD) {
2301         int newsize = 0;
2302         if (ts->size_stat[0] > SIZE_STAT_THRESHOLD) {
2303             newsize = TS_PACKET_SIZE;
2304         } else if (ts->size_stat[1] > SIZE_STAT_THRESHOLD) {
2305             newsize = TS_DVHS_PACKET_SIZE;
2306         } else if (ts->size_stat[2] > SIZE_STAT_THRESHOLD) {
2307             newsize = TS_FEC_PACKET_SIZE;
2308         }
2309         if (newsize && newsize != ts->raw_packet_size) {
2310             av_log(ts->stream, AV_LOG_WARNING, "changing packet size to %d\n", newsize);
2311             ts->raw_packet_size = newsize;
2312         }
2313         ts->size_stat_count = 0;
2314         memset(ts->size_stat, 0, sizeof(ts->size_stat));
2315     }
2316 }
2317
2318 /* XXX: try to find a better synchro over several packets (use
2319  * get_packet_size() ?) */
2320 static int mpegts_resync(AVFormatContext *s)
2321 {
2322     MpegTSContext *ts = s->priv_data;
2323     AVIOContext *pb = s->pb;
2324     int c, i;
2325
2326     for (i = 0; i < ts->resync_size; i++) {
2327         c = avio_r8(pb);
2328         if (avio_feof(pb))
2329             return AVERROR_EOF;
2330         if (c == 0x47) {
2331             avio_seek(pb, -1, SEEK_CUR);
2332             reanalyze(s->priv_data);
2333             return 0;
2334         }
2335     }
2336     av_log(s, AV_LOG_ERROR,
2337            "max resync size reached, could not find sync byte\n");
2338     /* no sync found */
2339     return AVERROR_INVALIDDATA;
2340 }
2341
2342 /* return AVERROR_something if error or EOF. Return 0 if OK. */
2343 static int read_packet(AVFormatContext *s, uint8_t *buf, int raw_packet_size,
2344                        const uint8_t **data)
2345 {
2346     AVIOContext *pb = s->pb;
2347     int len;
2348
2349     for (;;) {
2350         len = ffio_read_indirect(pb, buf, TS_PACKET_SIZE, data);
2351         if (len != TS_PACKET_SIZE)
2352             return len < 0 ? len : AVERROR_EOF;
2353         /* check packet sync byte */
2354         if ((*data)[0] != 0x47) {
2355             /* find a new packet start */
2356             uint64_t pos = avio_tell(pb);
2357             avio_seek(pb, -FFMIN(raw_packet_size, pos), SEEK_CUR);
2358
2359             if (mpegts_resync(s) < 0)
2360                 return AVERROR(EAGAIN);
2361             else
2362                 continue;
2363         } else {
2364             break;
2365         }
2366     }
2367     return 0;
2368 }
2369
2370 static void finished_reading_packet(AVFormatContext *s, int raw_packet_size)
2371 {
2372     AVIOContext *pb = s->pb;
2373     int skip = raw_packet_size - TS_PACKET_SIZE;
2374     if (skip > 0)
2375         avio_skip(pb, skip);
2376 }
2377
2378 static int handle_packets(MpegTSContext *ts, int64_t nb_packets)
2379 {
2380     AVFormatContext *s = ts->stream;
2381     uint8_t packet[TS_PACKET_SIZE + FF_INPUT_BUFFER_PADDING_SIZE];
2382     const uint8_t *data;
2383     int64_t packet_num;
2384     int ret = 0;
2385
2386     if (avio_tell(s->pb) != ts->last_pos) {
2387         int i;
2388         av_log(ts->stream, AV_LOG_TRACE, "Skipping after seek\n");
2389         /* seek detected, flush pes buffer */
2390         for (i = 0; i < NB_PID_MAX; i++) {
2391             if (ts->pids[i]) {
2392                 if (ts->pids[i]->type == MPEGTS_PES) {
2393                     PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2394                     av_buffer_unref(&pes->buffer);
2395                     pes->data_index = 0;
2396                     pes->state = MPEGTS_SKIP; /* skip until pes header */
2397                 } else if (ts->pids[i]->type == MPEGTS_SECTION) {
2398                     ts->pids[i]->u.section_filter.last_ver = -1;
2399                 }
2400                 ts->pids[i]->last_cc = -1;
2401                 ts->pids[i]->last_pcr = -1;
2402             }
2403         }
2404     }
2405
2406     ts->stop_parse = 0;
2407     packet_num = 0;
2408     memset(packet + TS_PACKET_SIZE, 0, FF_INPUT_BUFFER_PADDING_SIZE);
2409     for (;;) {
2410         packet_num++;
2411         if (nb_packets != 0 && packet_num >= nb_packets ||
2412             ts->stop_parse > 1) {
2413             ret = AVERROR(EAGAIN);
2414             break;
2415         }
2416         if (ts->stop_parse > 0)
2417             break;
2418
2419         ret = read_packet(s, packet, ts->raw_packet_size, &data);
2420         if (ret != 0)
2421             break;
2422         ret = handle_packet(ts, data);
2423         finished_reading_packet(s, ts->raw_packet_size);
2424         if (ret != 0)
2425             break;
2426     }
2427     ts->last_pos = avio_tell(s->pb);
2428     return ret;
2429 }
2430
2431 static int mpegts_probe(AVProbeData *p)
2432 {
2433     const int size = p->buf_size;
2434     int maxscore = 0;
2435     int sumscore = 0;
2436     int i;
2437     int check_count = size / TS_FEC_PACKET_SIZE;
2438 #define CHECK_COUNT 10
2439 #define CHECK_BLOCK 100
2440
2441     if (check_count < CHECK_COUNT)
2442         return AVERROR_INVALIDDATA;
2443
2444     for (i = 0; i<check_count; i+=CHECK_BLOCK) {
2445         int left = FFMIN(check_count - i, CHECK_BLOCK);
2446         int score      = analyze(p->buf + TS_PACKET_SIZE     *i, TS_PACKET_SIZE     *left, TS_PACKET_SIZE     , NULL, 1);
2447         int dvhs_score = analyze(p->buf + TS_DVHS_PACKET_SIZE*i, TS_DVHS_PACKET_SIZE*left, TS_DVHS_PACKET_SIZE, NULL, 1);
2448         int fec_score  = analyze(p->buf + TS_FEC_PACKET_SIZE *i, TS_FEC_PACKET_SIZE *left, TS_FEC_PACKET_SIZE , NULL, 1);
2449         score = FFMAX3(score, dvhs_score, fec_score);
2450         sumscore += score;
2451         maxscore = FFMAX(maxscore, score);
2452     }
2453
2454     sumscore = sumscore * CHECK_COUNT / check_count;
2455     maxscore = maxscore * CHECK_COUNT / CHECK_BLOCK;
2456
2457     av_dlog(0, "TS score: %d %d\n", sumscore, maxscore);
2458
2459     if      (sumscore > 6) return AVPROBE_SCORE_MAX   + sumscore - CHECK_COUNT;
2460     else if (maxscore > 6) return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT;
2461     else
2462         return AVERROR_INVALIDDATA;
2463 }
2464
2465 /* return the 90kHz PCR and the extension for the 27MHz PCR. return
2466  * (-1) if not available */
2467 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low, const uint8_t *packet)
2468 {
2469     int afc, len, flags;
2470     const uint8_t *p;
2471     unsigned int v;
2472
2473     afc = (packet[3] >> 4) & 3;
2474     if (afc <= 1)
2475         return AVERROR_INVALIDDATA;
2476     p   = packet + 4;
2477     len = p[0];
2478     p++;
2479     if (len == 0)
2480         return AVERROR_INVALIDDATA;
2481     flags = *p++;
2482     len--;
2483     if (!(flags & 0x10))
2484         return AVERROR_INVALIDDATA;
2485     if (len < 6)
2486         return AVERROR_INVALIDDATA;
2487     v          = AV_RB32(p);
2488     *ppcr_high = ((int64_t) v << 1) | (p[4] >> 7);
2489     *ppcr_low  = ((p[4] & 1) << 8) | p[5];
2490     return 0;
2491 }
2492
2493 static void seek_back(AVFormatContext *s, AVIOContext *pb, int64_t pos) {
2494
2495     /* NOTE: We attempt to seek on non-seekable files as well, as the
2496      * probe buffer usually is big enough. Only warn if the seek failed
2497      * on files where the seek should work. */
2498     if (avio_seek(pb, pos, SEEK_SET) < 0)
2499         av_log(s, pb->seekable ? AV_LOG_ERROR : AV_LOG_INFO, "Unable to seek back to the start\n");
2500 }
2501
2502 static int mpegts_read_header(AVFormatContext *s)
2503 {
2504     MpegTSContext *ts = s->priv_data;
2505     AVIOContext *pb   = s->pb;
2506     uint8_t buf[8 * 1024] = {0};
2507     int len;
2508     int64_t pos, probesize = s->probesize ? s->probesize : s->probesize2;
2509
2510     if (ffio_ensure_seekback(pb, probesize) < 0)
2511         av_log(s, AV_LOG_WARNING, "Failed to allocate buffers for seekback\n");
2512
2513     /* read the first 8192 bytes to get packet size */
2514     pos = avio_tell(pb);
2515     len = avio_read(pb, buf, sizeof(buf));
2516     ts->raw_packet_size = get_packet_size(buf, len);
2517     if (ts->raw_packet_size <= 0) {
2518         av_log(s, AV_LOG_WARNING, "Could not detect TS packet size, defaulting to non-FEC/DVHS\n");
2519         ts->raw_packet_size = TS_PACKET_SIZE;
2520     }
2521     ts->stream     = s;
2522     ts->auto_guess = 0;
2523
2524     if (s->iformat == &ff_mpegts_demuxer) {
2525         /* normal demux */
2526
2527         /* first do a scan to get all the services */
2528         seek_back(s, pb, pos);
2529
2530         mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
2531
2532         mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
2533
2534         handle_packets(ts, probesize / ts->raw_packet_size);
2535         /* if could not find service, enable auto_guess */
2536
2537         ts->auto_guess = 1;
2538
2539         av_log(ts->stream, AV_LOG_TRACE, "tuning done\n");
2540
2541         s->ctx_flags |= AVFMTCTX_NOHEADER;
2542     } else {
2543         AVStream *st;
2544         int pcr_pid, pid, nb_packets, nb_pcrs, ret, pcr_l;
2545         int64_t pcrs[2], pcr_h;
2546         int packet_count[2];
2547         uint8_t packet[TS_PACKET_SIZE];
2548         const uint8_t *data;
2549
2550         /* only read packets */
2551
2552         st = avformat_new_stream(s, NULL);
2553         if (!st)
2554             return AVERROR(ENOMEM);
2555         avpriv_set_pts_info(st, 60, 1, 27000000);
2556         st->codec->codec_type = AVMEDIA_TYPE_DATA;
2557         st->codec->codec_id   = AV_CODEC_ID_MPEG2TS;
2558
2559         /* we iterate until we find two PCRs to estimate the bitrate */
2560         pcr_pid    = -1;
2561         nb_pcrs    = 0;
2562         nb_packets = 0;
2563         for (;;) {
2564             ret = read_packet(s, packet, ts->raw_packet_size, &data);
2565             if (ret < 0)
2566                 return ret;
2567             pid = AV_RB16(data + 1) & 0x1fff;
2568             if ((pcr_pid == -1 || pcr_pid == pid) &&
2569                 parse_pcr(&pcr_h, &pcr_l, data) == 0) {
2570                 finished_reading_packet(s, ts->raw_packet_size);
2571                 pcr_pid = pid;
2572                 packet_count[nb_pcrs] = nb_packets;
2573                 pcrs[nb_pcrs] = pcr_h * 300 + pcr_l;
2574                 nb_pcrs++;
2575                 if (nb_pcrs >= 2)
2576                     break;
2577             } else {
2578                 finished_reading_packet(s, ts->raw_packet_size);
2579             }
2580             nb_packets++;
2581         }
2582
2583         /* NOTE1: the bitrate is computed without the FEC */
2584         /* NOTE2: it is only the bitrate of the start of the stream */
2585         ts->pcr_incr = (pcrs[1] - pcrs[0]) / (packet_count[1] - packet_count[0]);
2586         ts->cur_pcr  = pcrs[0] - ts->pcr_incr * packet_count[0];
2587         s->bit_rate  = TS_PACKET_SIZE * 8 * 27000000LL / ts->pcr_incr;
2588         st->codec->bit_rate = s->bit_rate;
2589         st->start_time      = ts->cur_pcr;
2590         av_log(ts->stream, AV_LOG_TRACE, "start=%0.3f pcr=%0.3f incr=%d\n",
2591                 st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr);
2592     }
2593
2594     seek_back(s, pb, pos);
2595     return 0;
2596 }
2597
2598 #define MAX_PACKET_READAHEAD ((128 * 1024) / 188)
2599
2600 static int mpegts_raw_read_packet(AVFormatContext *s, AVPacket *pkt)
2601 {
2602     MpegTSContext *ts = s->priv_data;
2603     int ret, i;
2604     int64_t pcr_h, next_pcr_h, pos;
2605     int pcr_l, next_pcr_l;
2606     uint8_t pcr_buf[12];
2607     const uint8_t *data;
2608
2609     if (av_new_packet(pkt, TS_PACKET_SIZE) < 0)
2610         return AVERROR(ENOMEM);
2611     ret = read_packet(s, pkt->data, ts->raw_packet_size, &data);
2612     pkt->pos = avio_tell(s->pb);
2613     if (ret < 0) {
2614         av_free_packet(pkt);
2615         return ret;
2616     }
2617     if (data != pkt->data)
2618         memcpy(pkt->data, data, ts->raw_packet_size);
2619     finished_reading_packet(s, ts->raw_packet_size);
2620     if (ts->mpeg2ts_compute_pcr) {
2621         /* compute exact PCR for each packet */
2622         if (parse_pcr(&pcr_h, &pcr_l, pkt->data) == 0) {
2623             /* we read the next PCR (XXX: optimize it by using a bigger buffer */
2624             pos = avio_tell(s->pb);
2625             for (i = 0; i < MAX_PACKET_READAHEAD; i++) {
2626                 avio_seek(s->pb, pos + i * ts->raw_packet_size, SEEK_SET);
2627                 avio_read(s->pb, pcr_buf, 12);
2628                 if (parse_pcr(&next_pcr_h, &next_pcr_l, pcr_buf) == 0) {
2629                     /* XXX: not precise enough */
2630                     ts->pcr_incr =
2631                         ((next_pcr_h - pcr_h) * 300 + (next_pcr_l - pcr_l)) /
2632                         (i + 1);
2633                     break;
2634                 }
2635             }
2636             avio_seek(s->pb, pos, SEEK_SET);
2637             /* no next PCR found: we use previous increment */
2638             ts->cur_pcr = pcr_h * 300 + pcr_l;
2639         }
2640         pkt->pts      = ts->cur_pcr;
2641         pkt->duration = ts->pcr_incr;
2642         ts->cur_pcr  += ts->pcr_incr;
2643     }
2644     pkt->stream_index = 0;
2645     return 0;
2646 }
2647
2648 static int mpegts_read_packet(AVFormatContext *s, AVPacket *pkt)
2649 {
2650     MpegTSContext *ts = s->priv_data;
2651     int ret, i;
2652
2653     pkt->size = -1;
2654     ts->pkt = pkt;
2655     ret = handle_packets(ts, 0);
2656     if (ret < 0) {
2657         av_free_packet(ts->pkt);
2658         /* flush pes data left */
2659         for (i = 0; i < NB_PID_MAX; i++)
2660             if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
2661                 PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2662                 if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
2663                     new_pes_packet(pes, pkt);
2664                     pes->state = MPEGTS_SKIP;
2665                     ret = 0;
2666                     break;
2667                 }
2668             }
2669     }
2670
2671     if (!ret && pkt->size < 0)
2672         ret = AVERROR(EINTR);
2673     return ret;
2674 }
2675
2676 static void mpegts_free(MpegTSContext *ts)
2677 {
2678     int i;
2679
2680     clear_programs(ts);
2681
2682     for (i = 0; i < NB_PID_MAX; i++)
2683         if (ts->pids[i])
2684             mpegts_close_filter(ts, ts->pids[i]);
2685 }
2686
2687 static int mpegts_read_close(AVFormatContext *s)
2688 {
2689     MpegTSContext *ts = s->priv_data;
2690     mpegts_free(ts);
2691     return 0;
2692 }
2693
2694 static av_unused int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
2695                               int64_t *ppos, int64_t pos_limit)
2696 {
2697     MpegTSContext *ts = s->priv_data;
2698     int64_t pos, timestamp;
2699     uint8_t buf[TS_PACKET_SIZE];
2700     int pcr_l, pcr_pid =
2701         ((PESContext *)s->streams[stream_index]->priv_data)->pcr_pid;
2702     int pos47 = ts->pos47_full % ts->raw_packet_size;
2703     pos =
2704         ((*ppos + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) *
2705         ts->raw_packet_size + pos47;
2706     while(pos < pos_limit) {
2707         if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2708             return AV_NOPTS_VALUE;
2709         if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
2710             return AV_NOPTS_VALUE;
2711         if (buf[0] != 0x47) {
2712             avio_seek(s->pb, -TS_PACKET_SIZE, SEEK_CUR);
2713             if (mpegts_resync(s) < 0)
2714                 return AV_NOPTS_VALUE;
2715             pos = avio_tell(s->pb);
2716             continue;
2717         }
2718         if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
2719             parse_pcr(&timestamp, &pcr_l, buf) == 0) {
2720             *ppos = pos;
2721             return timestamp;
2722         }
2723         pos += ts->raw_packet_size;
2724     }
2725
2726     return AV_NOPTS_VALUE;
2727 }
2728
2729 static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index,
2730                               int64_t *ppos, int64_t pos_limit)
2731 {
2732     MpegTSContext *ts = s->priv_data;
2733     int64_t pos;
2734     int pos47 = ts->pos47_full % ts->raw_packet_size;
2735     pos = ((*ppos  + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) * ts->raw_packet_size + pos47;
2736     ff_read_frame_flush(s);
2737     if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2738         return AV_NOPTS_VALUE;
2739     while(pos < pos_limit) {
2740         int ret;
2741         AVPacket pkt;
2742         av_init_packet(&pkt);
2743         ret = av_read_frame(s, &pkt);
2744         if (ret < 0)
2745             return AV_NOPTS_VALUE;
2746         av_free_packet(&pkt);
2747         if (pkt.dts != AV_NOPTS_VALUE && pkt.pos >= 0) {
2748             ff_reduce_index(s, pkt.stream_index);
2749             av_add_index_entry(s->streams[pkt.stream_index], pkt.pos, pkt.dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
2750             if (pkt.stream_index == stream_index && pkt.pos >= *ppos) {
2751                 *ppos = pkt.pos;
2752                 return pkt.dts;
2753             }
2754         }
2755         pos = pkt.pos;
2756     }
2757
2758     return AV_NOPTS_VALUE;
2759 }
2760
2761 /**************************************************************/
2762 /* parsing functions - called from other demuxers such as RTP */
2763
2764 MpegTSContext *avpriv_mpegts_parse_open(AVFormatContext *s)
2765 {
2766     MpegTSContext *ts;
2767
2768     ts = av_mallocz(sizeof(MpegTSContext));
2769     if (!ts)
2770         return NULL;
2771     /* no stream case, currently used by RTP */
2772     ts->raw_packet_size = TS_PACKET_SIZE;
2773     ts->stream = s;
2774     ts->auto_guess = 1;
2775     mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
2776     mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
2777
2778     return ts;
2779 }
2780
2781 /* return the consumed length if a packet was output, or -1 if no
2782  * packet is output */
2783 int avpriv_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
2784                                const uint8_t *buf, int len)
2785 {
2786     int len1;
2787
2788     len1 = len;
2789     ts->pkt = pkt;
2790     for (;;) {
2791         ts->stop_parse = 0;
2792         if (len < TS_PACKET_SIZE)
2793             return AVERROR_INVALIDDATA;
2794         if (buf[0] != 0x47) {
2795             buf++;
2796             len--;
2797         } else {
2798             handle_packet(ts, buf);
2799             buf += TS_PACKET_SIZE;
2800             len -= TS_PACKET_SIZE;
2801             if (ts->stop_parse == 1)
2802                 break;
2803         }
2804     }
2805     return len1 - len;
2806 }
2807
2808 void avpriv_mpegts_parse_close(MpegTSContext *ts)
2809 {
2810     mpegts_free(ts);
2811     av_free(ts);
2812 }
2813
2814 AVInputFormat ff_mpegts_demuxer = {
2815     .name           = "mpegts",
2816     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-TS (MPEG-2 Transport Stream)"),
2817     .priv_data_size = sizeof(MpegTSContext),
2818     .read_probe     = mpegts_probe,
2819     .read_header    = mpegts_read_header,
2820     .read_packet    = mpegts_read_packet,
2821     .read_close     = mpegts_read_close,
2822     .read_timestamp = mpegts_get_dts,
2823     .flags          = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT,
2824     .priv_class     = &mpegts_class,
2825 };
2826
2827 AVInputFormat ff_mpegtsraw_demuxer = {
2828     .name           = "mpegtsraw",
2829     .long_name      = NULL_IF_CONFIG_SMALL("raw MPEG-TS (MPEG-2 Transport Stream)"),
2830     .priv_data_size = sizeof(MpegTSContext),
2831     .read_header    = mpegts_read_header,
2832     .read_packet    = mpegts_raw_read_packet,
2833     .read_close     = mpegts_read_close,
2834     .read_timestamp = mpegts_get_dts,
2835     .flags          = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT,
2836     .priv_class     = &mpegtsraw_class,
2837 };