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