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