]> git.sesse.net Git - ffmpeg/blob - libavformat/mpegts.c
Merge commit '78d0b7f36e39bb4745613e312024ddd508e2f0fb'
[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         descr->sl.ocr_len            = avio_r8(&d->pb);
1260         descr->sl.au_len             = avio_r8(&d->pb);
1261         descr->sl.inst_bitrate_len   = avio_r8(&d->pb);
1262         lengths                      = avio_rb16(&d->pb);
1263         descr->sl.degr_prior_len     = lengths >> 12;
1264         descr->sl.au_seq_num_len     = (lengths >> 7) & 0x1f;
1265         descr->sl.packet_seq_num_len = (lengths >> 2) & 0x1f;
1266     } else {
1267         avpriv_report_missing_feature(d->s, "Predefined SLConfigDescriptor");
1268     }
1269     return 0;
1270 }
1271
1272 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1273                            int target_tag) {
1274     int tag;
1275     int len1 = ff_mp4_read_descr(d->s, &d->pb, &tag);
1276     update_offsets(&d->pb, &off, &len);
1277     if (len < 0 || len1 > len || len1 <= 0) {
1278         av_log(d->s, AV_LOG_ERROR, "Tag %x length violation new length %d bytes remaining %d\n", tag, len1, len);
1279         return -1;
1280     }
1281
1282     if (d->level++ >= MAX_LEVEL) {
1283         av_log(d->s, AV_LOG_ERROR, "Maximum MP4 descriptor level exceeded\n");
1284         goto done;
1285     }
1286
1287     if (target_tag && tag != target_tag) {
1288         av_log(d->s, AV_LOG_ERROR, "Found tag %x expected %x\n", tag, target_tag);
1289         goto done;
1290     }
1291
1292     switch (tag) {
1293     case MP4IODescrTag:
1294         parse_MP4IODescrTag(d, off, len1);
1295         break;
1296     case MP4ODescrTag:
1297         parse_MP4ODescrTag(d, off, len1);
1298         break;
1299     case MP4ESDescrTag:
1300         parse_MP4ESDescrTag(d, off, len1);
1301         break;
1302     case MP4DecConfigDescrTag:
1303         parse_MP4DecConfigDescrTag(d, off, len1);
1304         break;
1305     case MP4SLDescrTag:
1306         parse_MP4SLDescrTag(d, off, len1);
1307         break;
1308     }
1309
1310 done:
1311     d->level--;
1312     avio_seek(&d->pb, off + len1, SEEK_SET);
1313     return 0;
1314 }
1315
1316 static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size,
1317                          Mp4Descr *descr, int *descr_count, int max_descr_count)
1318 {
1319     MP4DescrParseContext d;
1320     if (init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count) < 0)
1321         return -1;
1322
1323     parse_mp4_descr(&d, avio_tell(&d.pb), size, MP4IODescrTag);
1324
1325     *descr_count = d.descr_count;
1326     return 0;
1327 }
1328
1329 static int mp4_read_od(AVFormatContext *s, const uint8_t *buf, unsigned size,
1330                        Mp4Descr *descr, int *descr_count, int max_descr_count)
1331 {
1332     MP4DescrParseContext d;
1333     if (init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count) < 0)
1334         return -1;
1335
1336     parse_mp4_descr_arr(&d, avio_tell(&d.pb), size);
1337
1338     *descr_count = d.descr_count;
1339     return 0;
1340 }
1341
1342 static void m4sl_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1343 {
1344     MpegTSContext *ts = filter->u.section_filter.opaque;
1345     SectionHeader h;
1346     const uint8_t *p, *p_end;
1347     AVIOContext pb;
1348     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = {{ 0 }};
1349     int mp4_descr_count = 0;
1350     int i, pid;
1351     AVFormatContext *s = ts->stream;
1352
1353     p_end = section + section_len - 4;
1354     p = section;
1355     if (parse_section_header(&h, &p, p_end) < 0)
1356         return;
1357     if (h.tid != M4OD_TID)
1358         return;
1359
1360     mp4_read_od(s, p, (unsigned)(p_end - p), mp4_descr, &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1361
1362     for (pid = 0; pid < NB_PID_MAX; pid++) {
1363         if (!ts->pids[pid])
1364              continue;
1365         for (i = 0; i < mp4_descr_count; i++) {
1366             PESContext *pes;
1367             AVStream *st;
1368             if (ts->pids[pid]->es_id != mp4_descr[i].es_id)
1369                 continue;
1370             if (!(ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES)) {
1371                 av_log(s, AV_LOG_ERROR, "pid %x is not PES\n", pid);
1372                 continue;
1373             }
1374             pes = ts->pids[pid]->u.pes_filter.opaque;
1375             st = pes->st;
1376             if (!st) {
1377                 continue;
1378             }
1379
1380             pes->sl = mp4_descr[i].sl;
1381
1382             ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1383                               mp4_descr[i].dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1384             ff_mp4_read_dec_config_descr(s, st, &pb);
1385             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1386                 st->codec->extradata_size > 0)
1387                 st->need_parsing = 0;
1388             if (st->codec->codec_id == AV_CODEC_ID_H264 &&
1389                 st->codec->extradata_size > 0)
1390                 st->need_parsing = 0;
1391
1392             if (st->codec->codec_id <= AV_CODEC_ID_NONE) {
1393             } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_AUDIO) {
1394                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1395             } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_SUBTITLE) {
1396                 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1397             } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_UNKNOWN) {
1398                 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1399             }
1400         }
1401     }
1402     for (i = 0; i < mp4_descr_count; i++)
1403         av_free(mp4_descr[i].dec_config_descr);
1404 }
1405
1406 int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type,
1407                               const uint8_t **pp, const uint8_t *desc_list_end,
1408                               Mp4Descr *mp4_descr, int mp4_descr_count, int pid,
1409                               MpegTSContext *ts)
1410 {
1411     const uint8_t *desc_end;
1412     int desc_len, desc_tag, desc_es_id;
1413     char language[252];
1414     int i;
1415
1416     desc_tag = get8(pp, desc_list_end);
1417     if (desc_tag < 0)
1418         return -1;
1419     desc_len = get8(pp, desc_list_end);
1420     if (desc_len < 0)
1421         return -1;
1422     desc_end = *pp + desc_len;
1423     if (desc_end > desc_list_end)
1424         return -1;
1425
1426     av_dlog(fc, "tag: 0x%02x len=%d\n", desc_tag, desc_len);
1427
1428     if (st->codec->codec_id == AV_CODEC_ID_NONE &&
1429         stream_type == STREAM_TYPE_PRIVATE_DATA)
1430         mpegts_find_stream_type(st, desc_tag, DESC_types);
1431
1432     switch(desc_tag) {
1433     case 0x1E: /* SL descriptor */
1434         desc_es_id = get16(pp, desc_end);
1435         if (ts && ts->pids[pid])
1436             ts->pids[pid]->es_id = desc_es_id;
1437         for (i = 0; i < mp4_descr_count; i++)
1438         if (mp4_descr[i].dec_config_descr_len &&
1439             mp4_descr[i].es_id == desc_es_id) {
1440             AVIOContext pb;
1441             ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1442                           mp4_descr[i].dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1443             ff_mp4_read_dec_config_descr(fc, st, &pb);
1444             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1445                 st->codec->extradata_size > 0)
1446                 st->need_parsing = 0;
1447             if (st->codec->codec_id == AV_CODEC_ID_MPEG4SYSTEMS)
1448                 mpegts_open_section_filter(ts, pid, m4sl_cb, ts, 1);
1449         }
1450         break;
1451     case 0x1F: /* FMC descriptor */
1452         get16(pp, desc_end);
1453         if (mp4_descr_count > 0 && (st->codec->codec_id == AV_CODEC_ID_AAC_LATM || st->request_probe>0) &&
1454             mp4_descr->dec_config_descr_len && mp4_descr->es_id == pid) {
1455             AVIOContext pb;
1456             ffio_init_context(&pb, mp4_descr->dec_config_descr,
1457                           mp4_descr->dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1458             ff_mp4_read_dec_config_descr(fc, st, &pb);
1459             if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1460                 st->codec->extradata_size > 0){
1461                 st->request_probe= st->need_parsing = 0;
1462                 st->codec->codec_type= AVMEDIA_TYPE_AUDIO;
1463             }
1464         }
1465         break;
1466     case 0x56: /* DVB teletext descriptor */
1467         language[0] = get8(pp, desc_end);
1468         language[1] = get8(pp, desc_end);
1469         language[2] = get8(pp, desc_end);
1470         language[3] = 0;
1471         av_dict_set(&st->metadata, "language", language, 0);
1472         break;
1473     case 0x59: /* subtitling descriptor */
1474         language[0] = get8(pp, desc_end);
1475         language[1] = get8(pp, desc_end);
1476         language[2] = get8(pp, desc_end);
1477         language[3] = 0;
1478         /* hearing impaired subtitles detection */
1479         switch(get8(pp, desc_end)) {
1480         case 0x20: /* DVB subtitles (for the hard of hearing) with no monitor aspect ratio criticality */
1481         case 0x21: /* DVB subtitles (for the hard of hearing) for display on 4:3 aspect ratio monitor */
1482         case 0x22: /* DVB subtitles (for the hard of hearing) for display on 16:9 aspect ratio monitor */
1483         case 0x23: /* DVB subtitles (for the hard of hearing) for display on 2.21:1 aspect ratio monitor */
1484         case 0x24: /* DVB subtitles (for the hard of hearing) for display on a high definition monitor */
1485         case 0x25: /* DVB subtitles (for the hard of hearing) with plano-stereoscopic disparity for display on a high definition monitor */
1486             st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
1487             break;
1488         }
1489         if (st->codec->extradata) {
1490             if (st->codec->extradata_size == 4 && memcmp(st->codec->extradata, *pp, 4))
1491                 avpriv_request_sample(fc, "DVB sub with multiple IDs");
1492         } else {
1493             if (!ff_alloc_extradata(st->codec, 4)) {
1494                 memcpy(st->codec->extradata, *pp, 4);
1495             }
1496         }
1497         *pp += 4;
1498         av_dict_set(&st->metadata, "language", language, 0);
1499         break;
1500     case 0x0a: /* ISO 639 language descriptor */
1501         for (i = 0; i + 4 <= desc_len; i += 4) {
1502             language[i + 0] = get8(pp, desc_end);
1503             language[i + 1] = get8(pp, desc_end);
1504             language[i + 2] = get8(pp, desc_end);
1505             language[i + 3] = ',';
1506         switch (get8(pp, desc_end)) {
1507             case 0x01: st->disposition |= AV_DISPOSITION_CLEAN_EFFECTS; break;
1508             case 0x02: st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED; break;
1509             case 0x03: st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED; break;
1510         }
1511         }
1512         if (i) {
1513             language[i - 1] = 0;
1514             av_dict_set(&st->metadata, "language", language, 0);
1515         }
1516         break;
1517     case 0x05: /* registration descriptor */
1518         st->codec->codec_tag = bytestream_get_le32(pp);
1519         av_dlog(fc, "reg_desc=%.4s\n", (char*)&st->codec->codec_tag);
1520         if (st->codec->codec_id == AV_CODEC_ID_NONE)
1521             mpegts_find_stream_type(st, st->codec->codec_tag, REGD_types);
1522         break;
1523     case 0x52: /* stream identifier descriptor */
1524         st->stream_identifier = 1 + get8(pp, desc_end);
1525         break;
1526     case 0x26: /* metadata descriptor */
1527         if (get16(pp, desc_end) == 0xFFFF)
1528             *pp += 4;
1529         if (get8(pp, desc_end) == 0xFF) {
1530             st->codec->codec_tag = bytestream_get_le32(pp);
1531             if (st->codec->codec_id == AV_CODEC_ID_NONE)
1532                 mpegts_find_stream_type(st, st->codec->codec_tag, METADATA_types);
1533         }
1534         break;
1535     default:
1536         break;
1537     }
1538     *pp = desc_end;
1539     return 0;
1540 }
1541
1542 static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1543 {
1544     MpegTSContext *ts = filter->u.section_filter.opaque;
1545     SectionHeader h1, *h = &h1;
1546     PESContext *pes;
1547     AVStream *st;
1548     const uint8_t *p, *p_end, *desc_list_end;
1549     int program_info_length, pcr_pid, pid, stream_type;
1550     int desc_list_len;
1551     uint32_t prog_reg_desc = 0; /* registration descriptor */
1552
1553     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = {{ 0 }};
1554     int mp4_descr_count = 0;
1555     int i;
1556
1557     av_dlog(ts->stream, "PMT: len %i\n", section_len);
1558     hex_dump_debug(ts->stream, section, section_len);
1559
1560     p_end = section + section_len - 4;
1561     p = section;
1562     if (parse_section_header(h, &p, p_end) < 0)
1563         return;
1564
1565     av_dlog(ts->stream, "sid=0x%x sec_num=%d/%d\n",
1566            h->id, h->sec_num, h->last_sec_num);
1567
1568     if (h->tid != PMT_TID)
1569         return;
1570
1571     clear_program(ts, h->id);
1572     pcr_pid = get16(&p, p_end);
1573     if (pcr_pid < 0)
1574         return;
1575     pcr_pid &= 0x1fff;
1576     add_pid_to_pmt(ts, h->id, pcr_pid);
1577     set_pcr_pid(ts->stream, h->id, pcr_pid);
1578
1579     av_dlog(ts->stream, "pcr_pid=0x%x\n", pcr_pid);
1580
1581     program_info_length = get16(&p, p_end);
1582     if (program_info_length < 0)
1583         return;
1584     program_info_length &= 0xfff;
1585     while(program_info_length >= 2) {
1586         uint8_t tag, len;
1587         tag = get8(&p, p_end);
1588         len = get8(&p, p_end);
1589
1590         av_dlog(ts->stream, "program tag: 0x%02x len=%d\n", tag, len);
1591
1592         if(len > program_info_length - 2)
1593             //something else is broken, exit the program_descriptors_loop
1594             break;
1595         program_info_length -= len + 2;
1596         if (tag == 0x1d) { // IOD descriptor
1597             get8(&p, p_end); // scope
1598             get8(&p, p_end); // label
1599             len -= 2;
1600             mp4_read_iods(ts->stream, p, len, mp4_descr + mp4_descr_count,
1601                           &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1602         } else if (tag == 0x05 && len >= 4) { // registration descriptor
1603             prog_reg_desc = bytestream_get_le32(&p);
1604             len -= 4;
1605         }
1606         p += len;
1607     }
1608     p += program_info_length;
1609     if (p >= p_end)
1610         goto out;
1611
1612     // stop parsing after pmt, we found header
1613     if (!ts->stream->nb_streams)
1614         ts->stop_parse = 2;
1615
1616     set_pmt_found(ts, h->id);
1617
1618     for(;;) {
1619         st = 0;
1620         pes = NULL;
1621         stream_type = get8(&p, p_end);
1622         if (stream_type < 0)
1623             break;
1624         pid = get16(&p, p_end);
1625         if (pid < 0)
1626             break;
1627         pid &= 0x1fff;
1628         if (pid == ts->current_pid)
1629             break;
1630
1631         /* now create stream */
1632         if (ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES) {
1633             pes = ts->pids[pid]->u.pes_filter.opaque;
1634             if (!pes->st) {
1635                 pes->st = avformat_new_stream(pes->stream, NULL);
1636                 if (!pes->st)
1637                     goto out;
1638                 pes->st->id = pes->pid;
1639             }
1640             st = pes->st;
1641         } else if (stream_type != 0x13) {
1642             if (ts->pids[pid]) mpegts_close_filter(ts, ts->pids[pid]); //wrongly added sdt filter probably
1643             pes = add_pes_stream(ts, pid, pcr_pid);
1644             if (pes) {
1645                 st = avformat_new_stream(pes->stream, NULL);
1646                 if (!st)
1647                     goto out;
1648                 st->id = pes->pid;
1649             }
1650         } else {
1651             int idx = ff_find_stream_index(ts->stream, pid);
1652             if (idx >= 0) {
1653                 st = ts->stream->streams[idx];
1654             } else {
1655                 st = avformat_new_stream(ts->stream, NULL);
1656                 if (!st)
1657                     goto out;
1658                 st->id = pid;
1659                 st->codec->codec_type = AVMEDIA_TYPE_DATA;
1660             }
1661         }
1662
1663         if (!st)
1664             goto out;
1665
1666         if (pes && !pes->stream_type)
1667             mpegts_set_stream_info(st, pes, stream_type, prog_reg_desc);
1668
1669         add_pid_to_pmt(ts, h->id, pid);
1670
1671         ff_program_add_stream_index(ts->stream, h->id, st->index);
1672
1673         desc_list_len = get16(&p, p_end);
1674         if (desc_list_len < 0)
1675             break;
1676         desc_list_len &= 0xfff;
1677         desc_list_end = p + desc_list_len;
1678         if (desc_list_end > p_end)
1679             break;
1680         for(;;) {
1681             if (ff_parse_mpeg2_descriptor(ts->stream, st, stream_type, &p, desc_list_end,
1682                 mp4_descr, mp4_descr_count, pid, ts) < 0)
1683                 break;
1684
1685             if (pes && prog_reg_desc == AV_RL32("HDMV") && stream_type == 0x83 && pes->sub_st) {
1686                 ff_program_add_stream_index(ts->stream, h->id, pes->sub_st->index);
1687                 pes->sub_st->codec->codec_tag = st->codec->codec_tag;
1688             }
1689         }
1690         p = desc_list_end;
1691     }
1692
1693  out:
1694     for (i = 0; i < mp4_descr_count; i++)
1695         av_free(mp4_descr[i].dec_config_descr);
1696 }
1697
1698 static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1699 {
1700     MpegTSContext *ts = filter->u.section_filter.opaque;
1701     SectionHeader h1, *h = &h1;
1702     const uint8_t *p, *p_end;
1703     int sid, pmt_pid;
1704     AVProgram *program;
1705
1706     av_dlog(ts->stream, "PAT:\n");
1707     hex_dump_debug(ts->stream, section, section_len);
1708
1709     p_end = section + section_len - 4;
1710     p = section;
1711     if (parse_section_header(h, &p, p_end) < 0)
1712         return;
1713     if (h->tid != PAT_TID)
1714         return;
1715
1716     ts->stream->ts_id = h->id;
1717
1718     clear_programs(ts);
1719     for(;;) {
1720         sid = get16(&p, p_end);
1721         if (sid < 0)
1722             break;
1723         pmt_pid = get16(&p, p_end);
1724         if (pmt_pid < 0)
1725             break;
1726         pmt_pid &= 0x1fff;
1727
1728         if (pmt_pid == ts->current_pid)
1729             break;
1730
1731         av_dlog(ts->stream, "sid=0x%x pid=0x%x\n", sid, pmt_pid);
1732
1733         if (sid == 0x0000) {
1734             /* NIT info */
1735         } else {
1736             MpegTSFilter *fil = ts->pids[pmt_pid];
1737             program = av_new_program(ts->stream, sid);
1738             program->program_num = sid;
1739             program->pmt_pid = pmt_pid;
1740             if (fil)
1741                 if (   fil->type != MPEGTS_SECTION
1742                     || fil->pid != pmt_pid
1743                     || fil->u.section_filter.section_cb != pmt_cb)
1744                     mpegts_close_filter(ts, ts->pids[pmt_pid]);
1745
1746             if (!ts->pids[pmt_pid])
1747                 mpegts_open_section_filter(ts, pmt_pid, pmt_cb, ts, 1);
1748             add_pat_entry(ts, sid);
1749             add_pid_to_pmt(ts, sid, 0); //add pat pid to program
1750             add_pid_to_pmt(ts, sid, pmt_pid);
1751         }
1752     }
1753
1754     if (sid < 0) {
1755         int i,j;
1756         for (j=0; j<ts->stream->nb_programs; j++) {
1757             for (i=0; i<ts->nb_prg; i++)
1758                 if (ts->prg[i].id == ts->stream->programs[j]->id)
1759                     break;
1760             if (i==ts->nb_prg)
1761                 clear_avprogram(ts, ts->stream->programs[j]->id);
1762         }
1763     }
1764 }
1765
1766 static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1767 {
1768     MpegTSContext *ts = filter->u.section_filter.opaque;
1769     SectionHeader h1, *h = &h1;
1770     const uint8_t *p, *p_end, *desc_list_end, *desc_end;
1771     int onid, val, sid, desc_list_len, desc_tag, desc_len, service_type;
1772     char *name, *provider_name;
1773
1774     av_dlog(ts->stream, "SDT:\n");
1775     hex_dump_debug(ts->stream, section, section_len);
1776
1777     p_end = section + section_len - 4;
1778     p = section;
1779     if (parse_section_header(h, &p, p_end) < 0)
1780         return;
1781     if (h->tid != SDT_TID)
1782         return;
1783     onid = get16(&p, p_end);
1784     if (onid < 0)
1785         return;
1786     val = get8(&p, p_end);
1787     if (val < 0)
1788         return;
1789     for(;;) {
1790         sid = get16(&p, p_end);
1791         if (sid < 0)
1792             break;
1793         val = get8(&p, p_end);
1794         if (val < 0)
1795             break;
1796         desc_list_len = get16(&p, p_end);
1797         if (desc_list_len < 0)
1798             break;
1799         desc_list_len &= 0xfff;
1800         desc_list_end = p + desc_list_len;
1801         if (desc_list_end > p_end)
1802             break;
1803         for(;;) {
1804             desc_tag = get8(&p, desc_list_end);
1805             if (desc_tag < 0)
1806                 break;
1807             desc_len = get8(&p, desc_list_end);
1808             desc_end = p + desc_len;
1809             if (desc_end > desc_list_end)
1810                 break;
1811
1812             av_dlog(ts->stream, "tag: 0x%02x len=%d\n",
1813                    desc_tag, desc_len);
1814
1815             switch(desc_tag) {
1816             case 0x48:
1817                 service_type = get8(&p, p_end);
1818                 if (service_type < 0)
1819                     break;
1820                 provider_name = getstr8(&p, p_end);
1821                 if (!provider_name)
1822                     break;
1823                 name = getstr8(&p, p_end);
1824                 if (name) {
1825                     AVProgram *program = av_new_program(ts->stream, sid);
1826                     if(program) {
1827                         av_dict_set(&program->metadata, "service_name", name, 0);
1828                         av_dict_set(&program->metadata, "service_provider", provider_name, 0);
1829                     }
1830                 }
1831                 av_free(name);
1832                 av_free(provider_name);
1833                 break;
1834             default:
1835                 break;
1836             }
1837             p = desc_end;
1838         }
1839         p = desc_list_end;
1840     }
1841 }
1842
1843 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
1844                      const uint8_t *packet);
1845
1846 /* handle one TS packet */
1847 static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
1848 {
1849     AVFormatContext *s = ts->stream;
1850     MpegTSFilter *tss;
1851     int len, pid, cc, expected_cc, cc_ok, afc, is_start, is_discontinuity,
1852         has_adaptation, has_payload;
1853     const uint8_t *p, *p_end;
1854     int64_t pos;
1855
1856     pid = AV_RB16(packet + 1) & 0x1fff;
1857     if(pid && discard_pid(ts, pid))
1858         return 0;
1859     is_start = packet[1] & 0x40;
1860     tss = ts->pids[pid];
1861     if (ts->auto_guess && tss == NULL && is_start) {
1862         add_pes_stream(ts, pid, -1);
1863         tss = ts->pids[pid];
1864     }
1865     if (!tss)
1866         return 0;
1867     ts->current_pid = pid;
1868
1869     afc = (packet[3] >> 4) & 3;
1870     if (afc == 0) /* reserved value */
1871         return 0;
1872     has_adaptation = afc & 2;
1873     has_payload = afc & 1;
1874     is_discontinuity = has_adaptation
1875                 && packet[4] != 0 /* with length > 0 */
1876                 && (packet[5] & 0x80); /* and discontinuity indicated */
1877
1878     /* continuity check (currently not used) */
1879     cc = (packet[3] & 0xf);
1880     expected_cc = has_payload ? (tss->last_cc + 1) & 0x0f : tss->last_cc;
1881     cc_ok = pid == 0x1FFF // null packet PID
1882             || is_discontinuity
1883             || tss->last_cc < 0
1884             || expected_cc == cc;
1885
1886     tss->last_cc = cc;
1887     if (!cc_ok) {
1888         av_log(ts->stream, AV_LOG_DEBUG,
1889                "Continuity check failed for pid %d expected %d got %d\n",
1890                pid, expected_cc, cc);
1891         if(tss->type == MPEGTS_PES) {
1892             PESContext *pc = tss->u.pes_filter.opaque;
1893             pc->flags |= AV_PKT_FLAG_CORRUPT;
1894         }
1895     }
1896
1897     if (!has_payload)
1898         return 0;
1899     p = packet + 4;
1900     if (has_adaptation) {
1901         /* skip adaptation field */
1902         p += p[0] + 1;
1903     }
1904     /* if past the end of packet, ignore */
1905     p_end = packet + TS_PACKET_SIZE;
1906     if (p >= p_end)
1907         return 0;
1908
1909     pos = avio_tell(ts->stream->pb);
1910     if (pos >= 0) {
1911         av_assert0(pos >= TS_PACKET_SIZE);
1912         ts->pos47_full = pos - TS_PACKET_SIZE;
1913     }
1914
1915     if (tss->type == MPEGTS_SECTION) {
1916         if (is_start) {
1917             /* pointer field present */
1918             len = *p++;
1919             if (p + len > p_end)
1920                 return 0;
1921             if (len && cc_ok) {
1922                 /* write remaining section bytes */
1923                 write_section_data(s, tss,
1924                                    p, len, 0);
1925                 /* check whether filter has been closed */
1926                 if (!ts->pids[pid])
1927                     return 0;
1928             }
1929             p += len;
1930             if (p < p_end) {
1931                 write_section_data(s, tss,
1932                                    p, p_end - p, 1);
1933             }
1934         } else {
1935             if (cc_ok) {
1936                 write_section_data(s, tss,
1937                                    p, p_end - p, 0);
1938             }
1939         }
1940
1941         // stop find_stream_info from waiting for more streams
1942         // when all programs have received a PMT
1943         if( ts->stream->ctx_flags & AVFMTCTX_NOHEADER) {
1944             int i;
1945             for(i=0; i<ts->nb_prg; i++) {
1946                 if (!ts->prg[i].pmt_found)
1947                     break;
1948             }
1949             if (i == ts->nb_prg && ts->nb_prg > 0) {
1950                 av_log(ts->stream, AV_LOG_DEBUG, "All programs have pmt, headers found\n");
1951                 ts->stream->ctx_flags &= ~AVFMTCTX_NOHEADER;
1952             }
1953         }
1954
1955     } else {
1956         int ret;
1957         int64_t pcr = -1;
1958         int64_t pcr_h;
1959         int pcr_l;
1960         if (parse_pcr(&pcr_h, &pcr_l, packet) == 0)
1961             pcr = pcr_h * 300 + pcr_l;
1962         // Note: The position here points actually behind the current packet.
1963         if ((ret = tss->u.pes_filter.pes_cb(tss, p, p_end - p, is_start,
1964                                             pos - ts->raw_packet_size, pcr)) < 0)
1965             return ret;
1966     }
1967
1968     return 0;
1969 }
1970
1971 static void reanalyze(MpegTSContext *ts) {
1972     AVIOContext *pb = ts->stream->pb;
1973     int64_t pos = avio_tell(pb);
1974     if(pos < 0)
1975         return;
1976     pos -= ts->pos47_full;
1977     if (pos == TS_PACKET_SIZE) {
1978         ts->size_stat[0] ++;
1979     } else if (pos == TS_DVHS_PACKET_SIZE) {
1980         ts->size_stat[1] ++;
1981     } else if (pos == TS_FEC_PACKET_SIZE) {
1982         ts->size_stat[2] ++;
1983     }
1984
1985     ts->size_stat_count ++;
1986     if(ts->size_stat_count > SIZE_STAT_THRESHOLD) {
1987         int newsize = 0;
1988         if (ts->size_stat[0] > SIZE_STAT_THRESHOLD) {
1989             newsize = TS_PACKET_SIZE;
1990         } else if (ts->size_stat[1] > SIZE_STAT_THRESHOLD) {
1991             newsize = TS_DVHS_PACKET_SIZE;
1992         } else if (ts->size_stat[2] > SIZE_STAT_THRESHOLD) {
1993             newsize = TS_FEC_PACKET_SIZE;
1994         }
1995         if (newsize && newsize != ts->raw_packet_size) {
1996             av_log(ts->stream, AV_LOG_WARNING, "changing packet size to %d\n", newsize);
1997             ts->raw_packet_size = newsize;
1998         }
1999         ts->size_stat_count = 0;
2000         memset(ts->size_stat, 0, sizeof(ts->size_stat));
2001     }
2002 }
2003
2004 /* XXX: try to find a better synchro over several packets (use
2005    get_packet_size() ?) */
2006 static int mpegts_resync(AVFormatContext *s)
2007 {
2008     AVIOContext *pb = s->pb;
2009     int c, i;
2010
2011     for(i = 0;i < MAX_RESYNC_SIZE; i++) {
2012         c = avio_r8(pb);
2013         if (url_feof(pb))
2014             return -1;
2015         if (c == 0x47) {
2016             avio_seek(pb, -1, SEEK_CUR);
2017             reanalyze(s->priv_data);
2018             return 0;
2019         }
2020     }
2021     av_log(s, AV_LOG_ERROR, "max resync size reached, could not find sync byte\n");
2022     /* no sync found */
2023     return -1;
2024 }
2025
2026 /* return -1 if error or EOF. Return 0 if OK. */
2027 static int read_packet(AVFormatContext *s, uint8_t *buf, int raw_packet_size, const uint8_t **data)
2028 {
2029     AVIOContext *pb = s->pb;
2030     int len;
2031
2032     for(;;) {
2033         len = ffio_read_indirect(pb, buf, TS_PACKET_SIZE, data);
2034         if (len != TS_PACKET_SIZE)
2035             return len < 0 ? len : AVERROR_EOF;
2036         /* check packet sync byte */
2037         if ((*data)[0] != 0x47) {
2038             /* find a new packet start */
2039             uint64_t pos = avio_tell(pb);
2040             avio_seek(pb, -FFMIN(raw_packet_size, pos), SEEK_CUR);
2041
2042             if (mpegts_resync(s) < 0)
2043                 return AVERROR(EAGAIN);
2044             else
2045                 continue;
2046         } else {
2047             break;
2048         }
2049     }
2050     return 0;
2051 }
2052
2053 static void finished_reading_packet(AVFormatContext *s, int raw_packet_size)
2054 {
2055     AVIOContext *pb = s->pb;
2056     int skip = raw_packet_size - TS_PACKET_SIZE;
2057     if (skip > 0)
2058         avio_skip(pb, skip);
2059 }
2060
2061 static int handle_packets(MpegTSContext *ts, int nb_packets)
2062 {
2063     AVFormatContext *s = ts->stream;
2064     uint8_t packet[TS_PACKET_SIZE + FF_INPUT_BUFFER_PADDING_SIZE];
2065     const uint8_t *data;
2066     int packet_num, ret = 0;
2067
2068     if (avio_tell(s->pb) != ts->last_pos) {
2069         int i;
2070         av_dlog(ts->stream, "Skipping after seek\n");
2071         /* seek detected, flush pes buffer */
2072         for (i = 0; i < NB_PID_MAX; i++) {
2073             if (ts->pids[i]) {
2074                 if (ts->pids[i]->type == MPEGTS_PES) {
2075                    PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2076                    av_buffer_unref(&pes->buffer);
2077                    pes->data_index = 0;
2078                    pes->state = MPEGTS_SKIP; /* skip until pes header */
2079                    pes->last_pcr = -1;
2080                 }
2081                 ts->pids[i]->last_cc = -1;
2082             }
2083         }
2084     }
2085
2086     ts->stop_parse = 0;
2087     packet_num = 0;
2088     memset(packet + TS_PACKET_SIZE, 0, FF_INPUT_BUFFER_PADDING_SIZE);
2089     for(;;) {
2090         packet_num++;
2091         if (nb_packets != 0 && packet_num >= nb_packets ||
2092             ts->stop_parse > 1) {
2093             ret = AVERROR(EAGAIN);
2094             break;
2095         }
2096         if (ts->stop_parse > 0)
2097             break;
2098
2099         ret = read_packet(s, packet, ts->raw_packet_size, &data);
2100         if (ret != 0)
2101             break;
2102         ret = handle_packet(ts, data);
2103         finished_reading_packet(s, ts->raw_packet_size);
2104         if (ret != 0)
2105             break;
2106     }
2107     ts->last_pos = avio_tell(s->pb);
2108     return ret;
2109 }
2110
2111 static int mpegts_probe(AVProbeData *p)
2112 {
2113     const int size= p->buf_size;
2114     int maxscore=0;
2115     int sumscore=0;
2116     int i;
2117     int check_count= size / TS_FEC_PACKET_SIZE;
2118 #define CHECK_COUNT 10
2119 #define CHECK_BLOCK 100
2120
2121     if (check_count < CHECK_COUNT)
2122         return -1;
2123
2124     for (i=0; i<check_count; i+=CHECK_BLOCK){
2125         int left = FFMIN(check_count - i, CHECK_BLOCK);
2126         int score     = analyze(p->buf + TS_PACKET_SIZE     *i, TS_PACKET_SIZE     *left, TS_PACKET_SIZE     , NULL);
2127         int dvhs_score= analyze(p->buf + TS_DVHS_PACKET_SIZE*i, TS_DVHS_PACKET_SIZE*left, TS_DVHS_PACKET_SIZE, NULL);
2128         int fec_score = analyze(p->buf + TS_FEC_PACKET_SIZE *i, TS_FEC_PACKET_SIZE *left, TS_FEC_PACKET_SIZE , NULL);
2129         score = FFMAX3(score, dvhs_score, fec_score);
2130         sumscore += score;
2131         maxscore = FFMAX(maxscore, score);
2132     }
2133
2134     sumscore = sumscore*CHECK_COUNT/check_count;
2135     maxscore = maxscore*CHECK_COUNT/CHECK_BLOCK;
2136
2137     av_dlog(0, "TS score: %d %d\n", sumscore, maxscore);
2138
2139     if (sumscore > 6)           return AVPROBE_SCORE_MAX + sumscore - CHECK_COUNT;
2140     else if (maxscore > 6)      return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT;
2141     else                        return -1;
2142 }
2143
2144 /* return the 90kHz PCR and the extension for the 27MHz PCR. return
2145    (-1) if not available */
2146 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
2147                      const uint8_t *packet)
2148 {
2149     int afc, len, flags;
2150     const uint8_t *p;
2151     unsigned int v;
2152
2153     afc = (packet[3] >> 4) & 3;
2154     if (afc <= 1)
2155         return -1;
2156     p = packet + 4;
2157     len = p[0];
2158     p++;
2159     if (len == 0)
2160         return -1;
2161     flags = *p++;
2162     len--;
2163     if (!(flags & 0x10))
2164         return -1;
2165     if (len < 6)
2166         return -1;
2167     v = AV_RB32(p);
2168     *ppcr_high = ((int64_t)v << 1) | (p[4] >> 7);
2169     *ppcr_low = ((p[4] & 1) << 8) | p[5];
2170     return 0;
2171 }
2172
2173 static void seek_back(AVFormatContext *s, AVIOContext *pb, int64_t pos) {
2174
2175     /* NOTE: We attempt to seek on non-seekable files as well, as the
2176      * probe buffer usually is big enough. Only warn if the seek failed
2177      * on files where the seek should work. */
2178     if (avio_seek(pb, pos, SEEK_SET) < 0)
2179         av_log(s, pb->seekable ? AV_LOG_ERROR : AV_LOG_INFO, "Unable to seek back to the start\n");
2180 }
2181
2182 static int mpegts_read_header(AVFormatContext *s)
2183 {
2184     MpegTSContext *ts = s->priv_data;
2185     AVIOContext *pb = s->pb;
2186     uint8_t buf[8*1024]={0};
2187     int len;
2188     int64_t pos;
2189
2190     ffio_ensure_seekback(pb, s->probesize);
2191
2192     /* read the first 8192 bytes to get packet size */
2193     pos = avio_tell(pb);
2194     len = avio_read(pb, buf, sizeof(buf));
2195     ts->raw_packet_size = get_packet_size(buf, len);
2196     if (ts->raw_packet_size <= 0) {
2197         av_log(s, AV_LOG_WARNING, "Could not detect TS packet size, defaulting to non-FEC/DVHS\n");
2198         ts->raw_packet_size = TS_PACKET_SIZE;
2199     }
2200     ts->stream = s;
2201     ts->auto_guess = 0;
2202
2203     if (s->iformat == &ff_mpegts_demuxer) {
2204         /* normal demux */
2205
2206         /* first do a scan to get all the services */
2207         seek_back(s, pb, pos);
2208
2209         mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
2210
2211         mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
2212
2213         handle_packets(ts, s->probesize / ts->raw_packet_size);
2214         /* if could not find service, enable auto_guess */
2215
2216         ts->auto_guess = 1;
2217
2218         av_dlog(ts->stream, "tuning done\n");
2219
2220         s->ctx_flags |= AVFMTCTX_NOHEADER;
2221     } else {
2222         AVStream *st;
2223         int pcr_pid, pid, nb_packets, nb_pcrs, ret, pcr_l;
2224         int64_t pcrs[2], pcr_h;
2225         int packet_count[2];
2226         uint8_t packet[TS_PACKET_SIZE];
2227         const uint8_t *data;
2228
2229         /* only read packets */
2230
2231         st = avformat_new_stream(s, NULL);
2232         if (!st)
2233             goto fail;
2234         avpriv_set_pts_info(st, 60, 1, 27000000);
2235         st->codec->codec_type = AVMEDIA_TYPE_DATA;
2236         st->codec->codec_id = AV_CODEC_ID_MPEG2TS;
2237
2238         /* we iterate until we find two PCRs to estimate the bitrate */
2239         pcr_pid = -1;
2240         nb_pcrs = 0;
2241         nb_packets = 0;
2242         for(;;) {
2243             ret = read_packet(s, packet, ts->raw_packet_size, &data);
2244             if (ret < 0)
2245                 goto fail;
2246             pid = AV_RB16(data + 1) & 0x1fff;
2247             if ((pcr_pid == -1 || pcr_pid == pid) &&
2248                 parse_pcr(&pcr_h, &pcr_l, data) == 0) {
2249                 finished_reading_packet(s, ts->raw_packet_size);
2250                 pcr_pid = pid;
2251                 packet_count[nb_pcrs] = nb_packets;
2252                 pcrs[nb_pcrs] = pcr_h * 300 + pcr_l;
2253                 nb_pcrs++;
2254                 if (nb_pcrs >= 2)
2255                     break;
2256             } else {
2257                 finished_reading_packet(s, ts->raw_packet_size);
2258             }
2259             nb_packets++;
2260         }
2261
2262         /* NOTE1: the bitrate is computed without the FEC */
2263         /* NOTE2: it is only the bitrate of the start of the stream */
2264         ts->pcr_incr = (pcrs[1] - pcrs[0]) / (packet_count[1] - packet_count[0]);
2265         ts->cur_pcr = pcrs[0] - ts->pcr_incr * packet_count[0];
2266         s->bit_rate = (TS_PACKET_SIZE * 8) * 27e6 / ts->pcr_incr;
2267         st->codec->bit_rate = s->bit_rate;
2268         st->start_time = ts->cur_pcr;
2269         av_dlog(ts->stream, "start=%0.3f pcr=%0.3f incr=%d\n",
2270                 st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr);
2271     }
2272
2273     seek_back(s, pb, pos);
2274     return 0;
2275  fail:
2276     return -1;
2277 }
2278
2279 #define MAX_PACKET_READAHEAD ((128 * 1024) / 188)
2280
2281 static int mpegts_raw_read_packet(AVFormatContext *s,
2282                                   AVPacket *pkt)
2283 {
2284     MpegTSContext *ts = s->priv_data;
2285     int ret, i;
2286     int64_t pcr_h, next_pcr_h, pos;
2287     int pcr_l, next_pcr_l;
2288     uint8_t pcr_buf[12];
2289     const uint8_t *data;
2290
2291     if (av_new_packet(pkt, TS_PACKET_SIZE) < 0)
2292         return AVERROR(ENOMEM);
2293     pkt->pos= avio_tell(s->pb);
2294     ret = read_packet(s, pkt->data, ts->raw_packet_size, &data);
2295     if (ret < 0) {
2296         av_free_packet(pkt);
2297         return ret;
2298     }
2299     if (data != pkt->data)
2300         memcpy(pkt->data, data, ts->raw_packet_size);
2301     finished_reading_packet(s, ts->raw_packet_size);
2302     if (ts->mpeg2ts_compute_pcr) {
2303         /* compute exact PCR for each packet */
2304         if (parse_pcr(&pcr_h, &pcr_l, pkt->data) == 0) {
2305             /* we read the next PCR (XXX: optimize it by using a bigger buffer */
2306             pos = avio_tell(s->pb);
2307             for(i = 0; i < MAX_PACKET_READAHEAD; i++) {
2308                 avio_seek(s->pb, pos + i * ts->raw_packet_size, SEEK_SET);
2309                 avio_read(s->pb, pcr_buf, 12);
2310                 if (parse_pcr(&next_pcr_h, &next_pcr_l, pcr_buf) == 0) {
2311                     /* XXX: not precise enough */
2312                     ts->pcr_incr = ((next_pcr_h - pcr_h) * 300 + (next_pcr_l - pcr_l)) /
2313                         (i + 1);
2314                     break;
2315                 }
2316             }
2317             avio_seek(s->pb, pos, SEEK_SET);
2318             /* no next PCR found: we use previous increment */
2319             ts->cur_pcr = pcr_h * 300 + pcr_l;
2320         }
2321         pkt->pts = ts->cur_pcr;
2322         pkt->duration = ts->pcr_incr;
2323         ts->cur_pcr += ts->pcr_incr;
2324     }
2325     pkt->stream_index = 0;
2326     return 0;
2327 }
2328
2329 static int mpegts_read_packet(AVFormatContext *s,
2330                               AVPacket *pkt)
2331 {
2332     MpegTSContext *ts = s->priv_data;
2333     int ret, i;
2334
2335     pkt->size = -1;
2336     ts->pkt = pkt;
2337     ret = handle_packets(ts, 0);
2338     if (ret < 0) {
2339         av_free_packet(ts->pkt);
2340         /* flush pes data left */
2341         for (i = 0; i < NB_PID_MAX; i++) {
2342             if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
2343                 PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2344                 if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
2345                     new_pes_packet(pes, pkt);
2346                     pes->state = MPEGTS_SKIP;
2347                     ret = 0;
2348                     break;
2349                 }
2350             }
2351         }
2352     }
2353
2354     if (!ret && pkt->size < 0)
2355         ret = AVERROR(EINTR);
2356     return ret;
2357 }
2358
2359 static void mpegts_free(MpegTSContext *ts)
2360 {
2361     int i;
2362
2363     clear_programs(ts);
2364
2365     for(i=0;i<NB_PID_MAX;i++)
2366         if (ts->pids[i]) mpegts_close_filter(ts, ts->pids[i]);
2367 }
2368
2369 static int mpegts_read_close(AVFormatContext *s)
2370 {
2371     MpegTSContext *ts = s->priv_data;
2372     mpegts_free(ts);
2373     return 0;
2374 }
2375
2376 static av_unused int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
2377                               int64_t *ppos, int64_t pos_limit)
2378 {
2379     MpegTSContext *ts = s->priv_data;
2380     int64_t pos, timestamp;
2381     uint8_t buf[TS_PACKET_SIZE];
2382     int pcr_l, pcr_pid = ((PESContext*)s->streams[stream_index]->priv_data)->pcr_pid;
2383     int pos47 = ts->pos47_full % ts->raw_packet_size;
2384     pos = ((*ppos  + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) * ts->raw_packet_size + pos47;
2385     while(pos < pos_limit) {
2386         if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2387             return AV_NOPTS_VALUE;
2388         if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
2389             return AV_NOPTS_VALUE;
2390         if (buf[0] != 0x47) {
2391             avio_seek(s->pb, -TS_PACKET_SIZE, SEEK_CUR);
2392             if (mpegts_resync(s) < 0)
2393                 return AV_NOPTS_VALUE;
2394             pos = avio_tell(s->pb);
2395             continue;
2396         }
2397         if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
2398             parse_pcr(&timestamp, &pcr_l, buf) == 0) {
2399             *ppos = pos;
2400             return timestamp;
2401         }
2402         pos += ts->raw_packet_size;
2403     }
2404
2405     return AV_NOPTS_VALUE;
2406 }
2407
2408 static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index,
2409                               int64_t *ppos, int64_t pos_limit)
2410 {
2411     MpegTSContext *ts = s->priv_data;
2412     int64_t pos;
2413     int pos47 = ts->pos47_full % ts->raw_packet_size;
2414     pos = ((*ppos  + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) * ts->raw_packet_size + pos47;
2415     ff_read_frame_flush(s);
2416     if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2417         return AV_NOPTS_VALUE;
2418     while(pos < pos_limit) {
2419         int ret;
2420         AVPacket pkt;
2421         av_init_packet(&pkt);
2422         ret= av_read_frame(s, &pkt);
2423         if(ret < 0)
2424             return AV_NOPTS_VALUE;
2425         av_free_packet(&pkt);
2426         if(pkt.dts != AV_NOPTS_VALUE && pkt.pos >= 0){
2427             ff_reduce_index(s, pkt.stream_index);
2428             av_add_index_entry(s->streams[pkt.stream_index], pkt.pos, pkt.dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
2429             if(pkt.stream_index == stream_index && pkt.pos >= *ppos){
2430                 *ppos= pkt.pos;
2431                 return pkt.dts;
2432             }
2433         }
2434         pos = pkt.pos;
2435     }
2436
2437     return AV_NOPTS_VALUE;
2438 }
2439
2440 /**************************************************************/
2441 /* parsing functions - called from other demuxers such as RTP */
2442
2443 MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s)
2444 {
2445     MpegTSContext *ts;
2446
2447     ts = av_mallocz(sizeof(MpegTSContext));
2448     if (!ts)
2449         return NULL;
2450     /* no stream case, currently used by RTP */
2451     ts->raw_packet_size = TS_PACKET_SIZE;
2452     ts->stream = s;
2453     ts->auto_guess = 1;
2454     mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
2455     mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
2456
2457     return ts;
2458 }
2459
2460 /* return the consumed length if a packet was output, or -1 if no
2461    packet is output */
2462 int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
2463                         const uint8_t *buf, int len)
2464 {
2465     int len1;
2466
2467     len1 = len;
2468     ts->pkt = pkt;
2469     for(;;) {
2470         ts->stop_parse = 0;
2471         if (len < TS_PACKET_SIZE)
2472             return -1;
2473         if (buf[0] != 0x47) {
2474             buf++;
2475             len--;
2476         } else {
2477             handle_packet(ts, buf);
2478             buf += TS_PACKET_SIZE;
2479             len -= TS_PACKET_SIZE;
2480             if (ts->stop_parse == 1)
2481                 break;
2482         }
2483     }
2484     return len1 - len;
2485 }
2486
2487 void ff_mpegts_parse_close(MpegTSContext *ts)
2488 {
2489     mpegts_free(ts);
2490     av_free(ts);
2491 }
2492
2493 AVInputFormat ff_mpegts_demuxer = {
2494     .name           = "mpegts",
2495     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-TS (MPEG-2 Transport Stream)"),
2496     .priv_data_size = sizeof(MpegTSContext),
2497     .read_probe     = mpegts_probe,
2498     .read_header    = mpegts_read_header,
2499     .read_packet    = mpegts_read_packet,
2500     .read_close     = mpegts_read_close,
2501     .read_timestamp = mpegts_get_dts,
2502     .flags          = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT,
2503     .priv_class     = &mpegts_class,
2504 };
2505
2506 AVInputFormat ff_mpegtsraw_demuxer = {
2507     .name           = "mpegtsraw",
2508     .long_name      = NULL_IF_CONFIG_SMALL("raw MPEG-TS (MPEG-2 Transport Stream)"),
2509     .priv_data_size = sizeof(MpegTSContext),
2510     .read_header    = mpegts_read_header,
2511     .read_packet    = mpegts_raw_read_packet,
2512     .read_close     = mpegts_read_close,
2513     .read_timestamp = mpegts_get_dts,
2514     .flags          = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT,
2515     .priv_class     = &mpegtsraw_class,
2516 };