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