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