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