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