]> git.sesse.net Git - ffmpeg/blob - libavformat/mpegts.c
Some minor spelling fixes.
[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          * av_close_input_stream */
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] & 0x30)){
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     av_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         st->codec->codec_id == CODEC_ID_NONE) {
622         mpegts_find_stream_type(st, pes->stream_type, HDMV_types);
623         if (pes->stream_type == 0x83) {
624             // HDMV TrueHD streams also contain an AC3 coded version of the
625             // audio track - add a second stream for this
626             AVStream *sub_st;
627             // priv_data cannot be shared between streams
628             PESContext *sub_pes = av_malloc(sizeof(*sub_pes));
629             if (!sub_pes)
630                 return AVERROR(ENOMEM);
631             memcpy(sub_pes, pes, sizeof(*sub_pes));
632
633             sub_st = avformat_new_stream(pes->stream, NULL);
634             if (!sub_st) {
635                 av_free(sub_pes);
636                 return AVERROR(ENOMEM);
637             }
638
639             sub_st->id = pes->pid;
640             av_set_pts_info(sub_st, 33, 1, 90000);
641             sub_st->priv_data = sub_pes;
642             sub_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
643             sub_st->codec->codec_id   = CODEC_ID_AC3;
644             sub_st->need_parsing = AVSTREAM_PARSE_FULL;
645             sub_pes->sub_st = pes->sub_st = sub_st;
646         }
647     }
648     if (st->codec->codec_id == CODEC_ID_NONE)
649         mpegts_find_stream_type(st, pes->stream_type, MISC_types);
650     if (st->codec->codec_id == CODEC_ID_NONE){
651         st->codec->codec_id  = old_codec_id;
652         st->codec->codec_type= old_codec_type;
653     }
654
655     return 0;
656 }
657
658 static void new_pes_packet(PESContext *pes, AVPacket *pkt)
659 {
660     av_init_packet(pkt);
661
662     pkt->destruct = av_destruct_packet;
663     pkt->data = pes->buffer;
664     pkt->size = pes->data_index;
665
666     if(pes->total_size != MAX_PES_PAYLOAD &&
667        pes->pes_header_size + pes->data_index != pes->total_size + 6) {
668         av_log(pes->stream, AV_LOG_WARNING, "PES packet size mismatch\n");
669         pes->flags |= AV_PKT_FLAG_CORRUPT;
670     }
671     memset(pkt->data+pkt->size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
672
673     // Separate out the AC3 substream from an HDMV combined TrueHD/AC3 PID
674     if (pes->sub_st && pes->stream_type == 0x83 && pes->extended_stream_id == 0x76)
675         pkt->stream_index = pes->sub_st->index;
676     else
677         pkt->stream_index = pes->st->index;
678     pkt->pts = pes->pts;
679     pkt->dts = pes->dts;
680     /* store position of first TS packet of this PES packet */
681     pkt->pos = pes->ts_packet_pos;
682     pkt->flags = pes->flags;
683
684     /* reset pts values */
685     pes->pts = AV_NOPTS_VALUE;
686     pes->dts = AV_NOPTS_VALUE;
687     pes->buffer = NULL;
688     pes->data_index = 0;
689     pes->flags = 0;
690 }
691
692 static uint64_t get_bits64(GetBitContext *gb, int bits)
693 {
694     uint64_t ret = 0;
695     while (bits > 17) {
696         ret <<= 17;
697         ret |= get_bits(gb, 17);
698         bits -= 17;
699     }
700     ret <<= bits;
701     ret |= get_bits(gb, bits);
702     return ret;
703 }
704
705 static int read_sl_header(PESContext *pes, SLConfigDescr *sl, const uint8_t *buf, int buf_size)
706 {
707     GetBitContext gb;
708     int au_start_flag = 0, au_end_flag = 0, ocr_flag = 0, idle_flag = 0;
709     int padding_flag = 0, padding_bits = 0, inst_bitrate_flag = 0;
710     int dts_flag = -1, cts_flag = -1;
711     int64_t dts = AV_NOPTS_VALUE, cts = AV_NOPTS_VALUE;
712     init_get_bits(&gb, buf, buf_size*8);
713
714     if (sl->use_au_start)
715         au_start_flag = get_bits1(&gb);
716     if (sl->use_au_end)
717         au_end_flag = get_bits1(&gb);
718     if (!sl->use_au_start && !sl->use_au_end)
719         au_start_flag = au_end_flag = 1;
720     if (sl->ocr_len > 0)
721         ocr_flag = get_bits1(&gb);
722     if (sl->use_idle)
723         idle_flag = get_bits1(&gb);
724     if (sl->use_padding)
725         padding_flag = get_bits1(&gb);
726     if (padding_flag)
727         padding_bits = get_bits(&gb, 3);
728
729     if (!idle_flag && (!padding_flag || padding_bits != 0)) {
730         if (sl->packet_seq_num_len)
731             skip_bits_long(&gb, sl->packet_seq_num_len);
732         if (sl->degr_prior_len)
733             if (get_bits1(&gb))
734                 skip_bits(&gb, sl->degr_prior_len);
735         if (ocr_flag)
736             skip_bits_long(&gb, sl->ocr_len);
737         if (au_start_flag) {
738             if (sl->use_rand_acc_pt)
739                 get_bits1(&gb);
740             if (sl->au_seq_num_len > 0)
741                 skip_bits_long(&gb, sl->au_seq_num_len);
742             if (sl->use_timestamps) {
743                 dts_flag = get_bits1(&gb);
744                 cts_flag = get_bits1(&gb);
745             }
746         }
747         if (sl->inst_bitrate_len)
748             inst_bitrate_flag = get_bits1(&gb);
749         if (dts_flag == 1)
750             dts = get_bits64(&gb, sl->timestamp_len);
751         if (cts_flag == 1)
752             cts = get_bits64(&gb, sl->timestamp_len);
753         if (sl->au_len > 0)
754             skip_bits_long(&gb, sl->au_len);
755         if (inst_bitrate_flag)
756             skip_bits_long(&gb, sl->inst_bitrate_len);
757     }
758
759     if (dts != AV_NOPTS_VALUE)
760         pes->dts = dts;
761     if (cts != AV_NOPTS_VALUE)
762         pes->pts = cts;
763
764     av_set_pts_info(pes->st, sl->timestamp_len, 1, sl->timestamp_res);
765
766     return (get_bits_count(&gb) + 7) >> 3;
767 }
768
769 /* return non zero if a packet could be constructed */
770 static int mpegts_push_data(MpegTSFilter *filter,
771                             const uint8_t *buf, int buf_size, int is_start,
772                             int64_t pos)
773 {
774     PESContext *pes = filter->u.pes_filter.opaque;
775     MpegTSContext *ts = pes->ts;
776     const uint8_t *p;
777     int len, code;
778
779     if(!ts->pkt)
780         return 0;
781
782     if (is_start) {
783         if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
784             new_pes_packet(pes, ts->pkt);
785             ts->stop_parse = 1;
786         }
787         pes->state = MPEGTS_HEADER;
788         pes->data_index = 0;
789         pes->ts_packet_pos = pos;
790     }
791     p = buf;
792     while (buf_size > 0) {
793         switch(pes->state) {
794         case MPEGTS_HEADER:
795             len = PES_START_SIZE - pes->data_index;
796             if (len > buf_size)
797                 len = buf_size;
798             memcpy(pes->header + pes->data_index, p, len);
799             pes->data_index += len;
800             p += len;
801             buf_size -= len;
802             if (pes->data_index == PES_START_SIZE) {
803                 /* we got all the PES or section header. We can now
804                    decide */
805                 if (pes->header[0] == 0x00 && pes->header[1] == 0x00 &&
806                     pes->header[2] == 0x01) {
807                     /* it must be an mpeg2 PES stream */
808                     code = pes->header[3] | 0x100;
809                     av_dlog(pes->stream, "pid=%x pes_code=%#x\n", pes->pid, code);
810
811                     if ((pes->st && pes->st->discard == AVDISCARD_ALL) ||
812                         code == 0x1be) /* padding_stream */
813                         goto skip;
814
815                     /* stream not present in PMT */
816                     if (!pes->st) {
817                         pes->st = avformat_new_stream(ts->stream, NULL);
818                         if (!pes->st)
819                             return AVERROR(ENOMEM);
820                         pes->st->id = pes->pid;
821                         mpegts_set_stream_info(pes->st, pes, 0, 0);
822                     }
823
824                     pes->total_size = AV_RB16(pes->header + 4);
825                     /* NOTE: a zero total size means the PES size is
826                        unbounded */
827                     if (!pes->total_size)
828                         pes->total_size = MAX_PES_PAYLOAD;
829
830                     /* allocate pes buffer */
831                     pes->buffer = av_malloc(pes->total_size+FF_INPUT_BUFFER_PADDING_SIZE);
832                     if (!pes->buffer)
833                         return AVERROR(ENOMEM);
834
835                     if (code != 0x1bc && code != 0x1bf && /* program_stream_map, private_stream_2 */
836                         code != 0x1f0 && code != 0x1f1 && /* ECM, EMM */
837                         code != 0x1ff && code != 0x1f2 && /* program_stream_directory, DSMCC_stream */
838                         code != 0x1f8) {                  /* ITU-T Rec. H.222.1 type E stream */
839                         pes->state = MPEGTS_PESHEADER;
840                         if (pes->st->codec->codec_id == CODEC_ID_NONE && !pes->st->request_probe) {
841                             av_dlog(pes->stream, "pid=%x stream_type=%x probing\n",
842                                     pes->pid, pes->stream_type);
843                             pes->st->request_probe= 1;
844                         }
845                     } else {
846                         pes->state = MPEGTS_PAYLOAD;
847                         pes->data_index = 0;
848                     }
849                 } else {
850                     /* otherwise, it should be a table */
851                     /* skip packet */
852                 skip:
853                     pes->state = MPEGTS_SKIP;
854                     continue;
855                 }
856             }
857             break;
858             /**********************************************/
859             /* PES packing parsing */
860         case MPEGTS_PESHEADER:
861             len = PES_HEADER_SIZE - pes->data_index;
862             if (len < 0)
863                 return -1;
864             if (len > buf_size)
865                 len = buf_size;
866             memcpy(pes->header + pes->data_index, p, len);
867             pes->data_index += len;
868             p += len;
869             buf_size -= len;
870             if (pes->data_index == PES_HEADER_SIZE) {
871                 pes->pes_header_size = pes->header[8] + 9;
872                 pes->state = MPEGTS_PESHEADER_FILL;
873             }
874             break;
875         case MPEGTS_PESHEADER_FILL:
876             len = pes->pes_header_size - pes->data_index;
877             if (len < 0)
878                 return -1;
879             if (len > buf_size)
880                 len = buf_size;
881             memcpy(pes->header + pes->data_index, p, len);
882             pes->data_index += len;
883             p += len;
884             buf_size -= len;
885             if (pes->data_index == pes->pes_header_size) {
886                 const uint8_t *r;
887                 unsigned int flags, pes_ext, skip;
888
889                 flags = pes->header[7];
890                 r = pes->header + 9;
891                 pes->pts = AV_NOPTS_VALUE;
892                 pes->dts = AV_NOPTS_VALUE;
893                 if ((flags & 0xc0) == 0x80) {
894                     pes->dts = pes->pts = ff_parse_pes_pts(r);
895                     r += 5;
896                 } else if ((flags & 0xc0) == 0xc0) {
897                     pes->pts = ff_parse_pes_pts(r);
898                     r += 5;
899                     pes->dts = ff_parse_pes_pts(r);
900                     r += 5;
901                 }
902                 pes->extended_stream_id = -1;
903                 if (flags & 0x01) { /* PES extension */
904                     pes_ext = *r++;
905                     /* Skip PES private data, program packet sequence counter and P-STD buffer */
906                     skip = (pes_ext >> 4) & 0xb;
907                     skip += skip & 0x9;
908                     r += skip;
909                     if ((pes_ext & 0x41) == 0x01 &&
910                         (r + 2) <= (pes->header + pes->pes_header_size)) {
911                         /* PES extension 2 */
912                         if ((r[0] & 0x7f) > 0 && (r[1] & 0x80) == 0)
913                             pes->extended_stream_id = r[1];
914                     }
915                 }
916
917                 /* we got the full header. We parse it and get the payload */
918                 pes->state = MPEGTS_PAYLOAD;
919                 pes->data_index = 0;
920                 if (pes->stream_type == 0x12) {
921                     int sl_header_bytes = read_sl_header(pes, &pes->sl, p, buf_size);
922                     pes->pes_header_size += sl_header_bytes;
923                     p += sl_header_bytes;
924                     buf_size -= sl_header_bytes;
925                 }
926             }
927             break;
928         case MPEGTS_PAYLOAD:
929             if (buf_size > 0 && pes->buffer) {
930                 if (pes->data_index > 0 && pes->data_index+buf_size > pes->total_size) {
931                     new_pes_packet(pes, ts->pkt);
932                     pes->total_size = MAX_PES_PAYLOAD;
933                     pes->buffer = av_malloc(pes->total_size+FF_INPUT_BUFFER_PADDING_SIZE);
934                     if (!pes->buffer)
935                         return AVERROR(ENOMEM);
936                     ts->stop_parse = 1;
937                 } else if (pes->data_index == 0 && buf_size > pes->total_size) {
938                     // pes packet size is < ts size packet and pes data is padded with 0xff
939                     // not sure if this is legal in ts but see issue #2392
940                     buf_size = pes->total_size;
941                 }
942                 memcpy(pes->buffer+pes->data_index, p, buf_size);
943                 pes->data_index += buf_size;
944             }
945             buf_size = 0;
946             /* emit complete packets with known packet size
947              * decreases demuxer delay for infrequent packets like subtitles from
948              * a couple of seconds to milliseconds for properly muxed files.
949              * total_size is the number of bytes following pes_packet_length
950              * in the pes header, i.e. not counting the first 6 bytes */
951             if (!ts->stop_parse && pes->total_size < MAX_PES_PAYLOAD &&
952                 pes->pes_header_size + pes->data_index == pes->total_size + 6) {
953                 ts->stop_parse = 1;
954                 new_pes_packet(pes, ts->pkt);
955             }
956             break;
957         case MPEGTS_SKIP:
958             buf_size = 0;
959             break;
960         }
961     }
962
963     return 0;
964 }
965
966 static PESContext *add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid)
967 {
968     MpegTSFilter *tss;
969     PESContext *pes;
970
971     /* if no pid found, then add a pid context */
972     pes = av_mallocz(sizeof(PESContext));
973     if (!pes)
974         return 0;
975     pes->ts = ts;
976     pes->stream = ts->stream;
977     pes->pid = pid;
978     pes->pcr_pid = pcr_pid;
979     pes->state = MPEGTS_SKIP;
980     pes->pts = AV_NOPTS_VALUE;
981     pes->dts = AV_NOPTS_VALUE;
982     tss = mpegts_open_pes_filter(ts, pid, mpegts_push_data, pes);
983     if (!tss) {
984         av_free(pes);
985         return 0;
986     }
987     return pes;
988 }
989
990 #define MAX_LEVEL 4
991 typedef struct {
992     AVFormatContext *s;
993     AVIOContext pb;
994     Mp4Descr *descr;
995     Mp4Descr *active_descr;
996     int descr_count;
997     int max_descr_count;
998     int level;
999 } MP4DescrParseContext;
1000
1001 static int init_MP4DescrParseContext(
1002     MP4DescrParseContext *d, AVFormatContext *s, const uint8_t *buf,
1003     unsigned size, Mp4Descr *descr, int max_descr_count)
1004 {
1005     int ret;
1006     if (size > (1<<30))
1007         return AVERROR_INVALIDDATA;
1008
1009     if ((ret = ffio_init_context(&d->pb, (unsigned char*)buf, size, 0,
1010                           NULL, NULL, NULL, NULL)) < 0)
1011         return ret;
1012
1013     d->s = s;
1014     d->level = 0;
1015     d->descr_count = 0;
1016     d->descr = descr;
1017     d->active_descr = NULL;
1018     d->max_descr_count = max_descr_count;
1019
1020     return 0;
1021 }
1022
1023 static void update_offsets(AVIOContext *pb, int64_t *off, int *len) {
1024     int64_t new_off = avio_tell(pb);
1025     (*len) -= new_off - *off;
1026     *off = new_off;
1027 }
1028
1029 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1030                            int target_tag);
1031
1032 static int parse_mp4_descr_arr(MP4DescrParseContext *d, int64_t off, int len)
1033 {
1034     while (len > 0) {
1035         if (parse_mp4_descr(d, off, len, 0) < 0)
1036             return -1;
1037         update_offsets(&d->pb, &off, &len);
1038     }
1039     return 0;
1040 }
1041
1042 static int parse_MP4IODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1043 {
1044     avio_rb16(&d->pb); // ID
1045     avio_r8(&d->pb);
1046     avio_r8(&d->pb);
1047     avio_r8(&d->pb);
1048     avio_r8(&d->pb);
1049     avio_r8(&d->pb);
1050     update_offsets(&d->pb, &off, &len);
1051     return parse_mp4_descr_arr(d, off, len);
1052 }
1053
1054 static int parse_MP4ODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1055 {
1056     int id_flags;
1057     if (len < 2)
1058         return 0;
1059     id_flags = avio_rb16(&d->pb);
1060     if (!(id_flags & 0x0020)) { //URL_Flag
1061         update_offsets(&d->pb, &off, &len);
1062         return parse_mp4_descr_arr(d, off, len); //ES_Descriptor[]
1063     } else {
1064         return 0;
1065     }
1066 }
1067
1068 static int parse_MP4ESDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1069 {
1070     int es_id = 0;
1071     if (d->descr_count >= d->max_descr_count)
1072         return -1;
1073     ff_mp4_parse_es_descr(&d->pb, &es_id);
1074     d->active_descr = d->descr + (d->descr_count++);
1075
1076     d->active_descr->es_id = es_id;
1077     update_offsets(&d->pb, &off, &len);
1078     parse_mp4_descr(d, off, len, MP4DecConfigDescrTag);
1079     update_offsets(&d->pb, &off, &len);
1080     if (len > 0)
1081         parse_mp4_descr(d, off, len, MP4SLDescrTag);
1082     d->active_descr = NULL;
1083     return 0;
1084 }
1085
1086 static int parse_MP4DecConfigDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1087 {
1088     Mp4Descr *descr = d->active_descr;
1089     if (!descr)
1090         return -1;
1091     d->active_descr->dec_config_descr = av_malloc(len);
1092     if (!descr->dec_config_descr)
1093         return AVERROR(ENOMEM);
1094     descr->dec_config_descr_len = len;
1095     avio_read(&d->pb, descr->dec_config_descr, len);
1096     return 0;
1097 }
1098
1099 static int parse_MP4SLDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1100 {
1101     Mp4Descr *descr = d->active_descr;
1102     int predefined;
1103     if (!descr)
1104         return -1;
1105
1106     predefined = avio_r8(&d->pb);
1107     if (!predefined) {
1108         int lengths;
1109         int flags = avio_r8(&d->pb);
1110         descr->sl.use_au_start       = !!(flags & 0x80);
1111         descr->sl.use_au_end         = !!(flags & 0x40);
1112         descr->sl.use_rand_acc_pt    = !!(flags & 0x20);
1113         descr->sl.use_padding        = !!(flags & 0x08);
1114         descr->sl.use_timestamps     = !!(flags & 0x04);
1115         descr->sl.use_idle           = !!(flags & 0x02);
1116         descr->sl.timestamp_res      = avio_rb32(&d->pb);
1117                                        avio_rb32(&d->pb);
1118         descr->sl.timestamp_len      = avio_r8(&d->pb);
1119         descr->sl.ocr_len            = avio_r8(&d->pb);
1120         descr->sl.au_len             = avio_r8(&d->pb);
1121         descr->sl.inst_bitrate_len   = avio_r8(&d->pb);
1122         lengths                      = avio_rb16(&d->pb);
1123         descr->sl.degr_prior_len     = lengths >> 12;
1124         descr->sl.au_seq_num_len     = (lengths >> 7) & 0x1f;
1125         descr->sl.packet_seq_num_len = (lengths >> 2) & 0x1f;
1126     } else {
1127         av_log_missing_feature(d->s, "Predefined SLConfigDescriptor\n", 0);
1128     }
1129     return 0;
1130 }
1131
1132 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1133                            int target_tag) {
1134     int tag;
1135     int len1 = ff_mp4_read_descr(d->s, &d->pb, &tag);
1136     update_offsets(&d->pb, &off, &len);
1137     if (len < 0 || len1 > len || len1 <= 0) {
1138         av_log(d->s, AV_LOG_ERROR, "Tag %x length violation new length %d bytes remaining %d\n", tag, len1, len);
1139         return -1;
1140     }
1141
1142     if (d->level++ >= MAX_LEVEL) {
1143         av_log(d->s, AV_LOG_ERROR, "Maximum MP4 descriptor level exceeded\n");
1144         goto done;
1145     }
1146
1147     if (target_tag && tag != target_tag) {
1148         av_log(d->s, AV_LOG_ERROR, "Found tag %x expected %x\n", tag, target_tag);
1149         goto done;
1150     }
1151
1152     switch (tag) {
1153     case MP4IODescrTag:
1154         parse_MP4IODescrTag(d, off, len1);
1155         break;
1156     case MP4ODescrTag:
1157         parse_MP4ODescrTag(d, off, len1);
1158         break;
1159     case MP4ESDescrTag:
1160         parse_MP4ESDescrTag(d, off, len1);
1161         break;
1162     case MP4DecConfigDescrTag:
1163         parse_MP4DecConfigDescrTag(d, off, len1);
1164         break;
1165     case MP4SLDescrTag:
1166         parse_MP4SLDescrTag(d, off, len1);
1167         break;
1168     }
1169
1170 done:
1171     d->level--;
1172     avio_seek(&d->pb, off + len1, SEEK_SET);
1173     return 0;
1174 }
1175
1176 static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size,
1177                          Mp4Descr *descr, int *descr_count, int max_descr_count)
1178 {
1179     MP4DescrParseContext d;
1180     if (init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count) < 0)
1181         return -1;
1182
1183     parse_mp4_descr(&d, avio_tell(&d.pb), size, MP4IODescrTag);
1184
1185     *descr_count = d.descr_count;
1186     return 0;
1187 }
1188
1189 static int mp4_read_od(AVFormatContext *s, const uint8_t *buf, unsigned size,
1190                        Mp4Descr *descr, int *descr_count, int max_descr_count)
1191 {
1192     MP4DescrParseContext d;
1193     if (init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count) < 0)
1194         return -1;
1195
1196     parse_mp4_descr_arr(&d, avio_tell(&d.pb), size);
1197
1198     *descr_count = d.descr_count;
1199     return 0;
1200 }
1201
1202 static void m4sl_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1203 {
1204     MpegTSContext *ts = filter->u.section_filter.opaque;
1205     SectionHeader h;
1206     const uint8_t *p, *p_end;
1207     AVIOContext pb;
1208     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = {{ 0 }};
1209     int mp4_descr_count = 0;
1210     int i, pid;
1211     AVFormatContext *s = ts->stream;
1212
1213     p_end = section + section_len - 4;
1214     p = section;
1215     if (parse_section_header(&h, &p, p_end) < 0)
1216         return;
1217     if (h.tid != M4OD_TID)
1218         return;
1219
1220     mp4_read_od(s, p, (unsigned)(p_end - p), mp4_descr, &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1221
1222     for (pid = 0; pid < NB_PID_MAX; pid++) {
1223         if (!ts->pids[pid])
1224              continue;
1225         for (i = 0; i < mp4_descr_count; i++) {
1226             PESContext *pes;
1227             AVStream *st;
1228             if (ts->pids[pid]->es_id != mp4_descr[i].es_id)
1229                 continue;
1230             if (!(ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES)) {
1231                 av_log(s, AV_LOG_ERROR, "pid %x is not PES\n", pid);
1232                 continue;
1233             }
1234             pes = ts->pids[pid]->u.pes_filter.opaque;
1235             st = pes->st;
1236             if (!st) {
1237                 continue;
1238             }
1239
1240             pes->sl = mp4_descr[i].sl;
1241
1242             ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1243                               mp4_descr[i].dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1244             ff_mp4_read_dec_config_descr(s, st, &pb);
1245             if (st->codec->codec_id == CODEC_ID_AAC &&
1246                 st->codec->extradata_size > 0)
1247                 st->need_parsing = 0;
1248             if (st->codec->codec_id == CODEC_ID_H264 &&
1249                 st->codec->extradata_size > 0)
1250                 st->need_parsing = 0;
1251
1252             if (st->codec->codec_id <= CODEC_ID_NONE) {
1253             } else if (st->codec->codec_id < CODEC_ID_FIRST_AUDIO) {
1254                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1255             } else if (st->codec->codec_id < CODEC_ID_FIRST_SUBTITLE) {
1256                 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1257             } else if (st->codec->codec_id < CODEC_ID_FIRST_UNKNOWN) {
1258                 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1259             }
1260         }
1261     }
1262     for (i = 0; i < mp4_descr_count; i++)
1263         av_free(mp4_descr[i].dec_config_descr);
1264 }
1265
1266 int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type,
1267                               const uint8_t **pp, const uint8_t *desc_list_end,
1268                               Mp4Descr *mp4_descr, int mp4_descr_count, int pid,
1269                               MpegTSContext *ts)
1270 {
1271     const uint8_t *desc_end;
1272     int desc_len, desc_tag, desc_es_id;
1273     char language[252];
1274     int i;
1275
1276     desc_tag = get8(pp, desc_list_end);
1277     if (desc_tag < 0)
1278         return -1;
1279     desc_len = get8(pp, desc_list_end);
1280     if (desc_len < 0)
1281         return -1;
1282     desc_end = *pp + desc_len;
1283     if (desc_end > desc_list_end)
1284         return -1;
1285
1286     av_dlog(fc, "tag: 0x%02x len=%d\n", desc_tag, desc_len);
1287
1288     if (st->codec->codec_id == CODEC_ID_NONE &&
1289         stream_type == STREAM_TYPE_PRIVATE_DATA)
1290         mpegts_find_stream_type(st, desc_tag, DESC_types);
1291
1292     switch(desc_tag) {
1293     case 0x1E: /* SL descriptor */
1294         desc_es_id = get16(pp, desc_end);
1295         if (ts && ts->pids[pid])
1296             ts->pids[pid]->es_id = desc_es_id;
1297         for (i = 0; i < mp4_descr_count; i++)
1298         if (mp4_descr[i].dec_config_descr_len &&
1299             mp4_descr[i].es_id == desc_es_id) {
1300             AVIOContext pb;
1301             ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1302                           mp4_descr[i].dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1303             ff_mp4_read_dec_config_descr(fc, st, &pb);
1304             if (st->codec->codec_id == CODEC_ID_AAC &&
1305                 st->codec->extradata_size > 0)
1306                 st->need_parsing = 0;
1307             if (st->codec->codec_id == CODEC_ID_MPEG4SYSTEMS)
1308                 mpegts_open_section_filter(ts, pid, m4sl_cb, ts, 1);
1309         }
1310         break;
1311     case 0x1F: /* FMC descriptor */
1312         get16(pp, desc_end);
1313         if (mp4_descr_count > 0 && (st->codec->codec_id == CODEC_ID_AAC_LATM || st->request_probe>0) &&
1314             mp4_descr->dec_config_descr_len && mp4_descr->es_id == pid) {
1315             AVIOContext pb;
1316             ffio_init_context(&pb, mp4_descr->dec_config_descr,
1317                           mp4_descr->dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
1318             ff_mp4_read_dec_config_descr(fc, st, &pb);
1319             if (st->codec->codec_id == CODEC_ID_AAC &&
1320                 st->codec->extradata_size > 0){
1321                 st->request_probe= st->need_parsing = 0;
1322                 st->codec->codec_type= AVMEDIA_TYPE_AUDIO;
1323             }
1324         }
1325         break;
1326     case 0x56: /* DVB teletext descriptor */
1327         language[0] = get8(pp, desc_end);
1328         language[1] = get8(pp, desc_end);
1329         language[2] = get8(pp, desc_end);
1330         language[3] = 0;
1331         av_dict_set(&st->metadata, "language", language, 0);
1332         break;
1333     case 0x59: /* subtitling descriptor */
1334         language[0] = get8(pp, desc_end);
1335         language[1] = get8(pp, desc_end);
1336         language[2] = get8(pp, desc_end);
1337         language[3] = 0;
1338         /* hearing impaired subtitles detection */
1339         switch(get8(pp, desc_end)) {
1340         case 0x20: /* DVB subtitles (for the hard of hearing) with no monitor aspect ratio criticality */
1341         case 0x21: /* DVB subtitles (for the hard of hearing) for display on 4:3 aspect ratio monitor */
1342         case 0x22: /* DVB subtitles (for the hard of hearing) for display on 16:9 aspect ratio monitor */
1343         case 0x23: /* DVB subtitles (for the hard of hearing) for display on 2.21:1 aspect ratio monitor */
1344         case 0x24: /* DVB subtitles (for the hard of hearing) for display on a high definition monitor */
1345         case 0x25: /* DVB subtitles (for the hard of hearing) with plano-stereoscopic disparity for display on a high definition monitor */
1346             st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
1347             break;
1348         }
1349         if (st->codec->extradata) {
1350             if (st->codec->extradata_size == 4 && memcmp(st->codec->extradata, *pp, 4))
1351                 av_log_ask_for_sample(fc, "DVB sub with multiple IDs\n");
1352         } else {
1353             st->codec->extradata = av_malloc(4 + FF_INPUT_BUFFER_PADDING_SIZE);
1354             if (st->codec->extradata) {
1355                 st->codec->extradata_size = 4;
1356                 memcpy(st->codec->extradata, *pp, 4);
1357             }
1358         }
1359         *pp += 4;
1360         av_dict_set(&st->metadata, "language", language, 0);
1361         break;
1362     case 0x0a: /* ISO 639 language descriptor */
1363         for (i = 0; i + 4 <= desc_len; i += 4) {
1364             language[i + 0] = get8(pp, desc_end);
1365             language[i + 1] = get8(pp, desc_end);
1366             language[i + 2] = get8(pp, desc_end);
1367             language[i + 3] = ',';
1368         switch (get8(pp, desc_end)) {
1369             case 0x01: st->disposition |= AV_DISPOSITION_CLEAN_EFFECTS; break;
1370             case 0x02: st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED; break;
1371             case 0x03: st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED; break;
1372         }
1373         }
1374         if (i) {
1375             language[i - 1] = 0;
1376             av_dict_set(&st->metadata, "language", language, 0);
1377         }
1378         break;
1379     case 0x05: /* registration descriptor */
1380         st->codec->codec_tag = bytestream_get_le32(pp);
1381         av_dlog(fc, "reg_desc=%.4s\n", (char*)&st->codec->codec_tag);
1382         if (st->codec->codec_id == CODEC_ID_NONE &&
1383             stream_type == STREAM_TYPE_PRIVATE_DATA)
1384             mpegts_find_stream_type(st, st->codec->codec_tag, REGD_types);
1385         break;
1386     case 0x52: /* stream identifier descriptor */
1387         st->stream_identifier = 1 + get8(pp, desc_end);
1388         break;
1389     default:
1390         break;
1391     }
1392     *pp = desc_end;
1393     return 0;
1394 }
1395
1396 static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1397 {
1398     MpegTSContext *ts = filter->u.section_filter.opaque;
1399     SectionHeader h1, *h = &h1;
1400     PESContext *pes;
1401     AVStream *st;
1402     const uint8_t *p, *p_end, *desc_list_end;
1403     int program_info_length, pcr_pid, pid, stream_type;
1404     int desc_list_len;
1405     uint32_t prog_reg_desc = 0; /* registration descriptor */
1406
1407     Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = {{ 0 }};
1408     int mp4_descr_count = 0;
1409     int i;
1410
1411     av_dlog(ts->stream, "PMT: len %i\n", section_len);
1412     hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
1413
1414     p_end = section + section_len - 4;
1415     p = section;
1416     if (parse_section_header(h, &p, p_end) < 0)
1417         return;
1418
1419     av_dlog(ts->stream, "sid=0x%x sec_num=%d/%d\n",
1420            h->id, h->sec_num, h->last_sec_num);
1421
1422     if (h->tid != PMT_TID)
1423         return;
1424
1425     clear_program(ts, h->id);
1426     pcr_pid = get16(&p, p_end) & 0x1fff;
1427     if (pcr_pid < 0)
1428         return;
1429     add_pid_to_pmt(ts, h->id, pcr_pid);
1430     set_pcr_pid(ts->stream, h->id, pcr_pid);
1431
1432     av_dlog(ts->stream, "pcr_pid=0x%x\n", pcr_pid);
1433
1434     program_info_length = get16(&p, p_end) & 0xfff;
1435     if (program_info_length < 0)
1436         return;
1437     while(program_info_length >= 2) {
1438         uint8_t tag, len;
1439         tag = get8(&p, p_end);
1440         len = get8(&p, p_end);
1441
1442         av_dlog(ts->stream, "program tag: 0x%02x len=%d\n", tag, len);
1443
1444         if(len > program_info_length - 2)
1445             //something else is broken, exit the program_descriptors_loop
1446             break;
1447         program_info_length -= len + 2;
1448         if (tag == 0x1d) { // IOD descriptor
1449             get8(&p, p_end); // scope
1450             get8(&p, p_end); // label
1451             len -= 2;
1452             mp4_read_iods(ts->stream, p, len, mp4_descr + mp4_descr_count,
1453                           &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1454         } else if (tag == 0x05 && len >= 4) { // registration descriptor
1455             prog_reg_desc = bytestream_get_le32(&p);
1456             len -= 4;
1457         }
1458         p += len;
1459     }
1460     p += program_info_length;
1461     if (p >= p_end)
1462         goto out;
1463
1464     // stop parsing after pmt, we found header
1465     if (!ts->stream->nb_streams)
1466         ts->stop_parse = 2;
1467
1468     for(;;) {
1469         st = 0;
1470         pes = NULL;
1471         stream_type = get8(&p, p_end);
1472         if (stream_type < 0)
1473             break;
1474         pid = get16(&p, p_end) & 0x1fff;
1475         if (pid < 0)
1476             break;
1477
1478         /* now create ffmpeg stream */
1479         if (ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES) {
1480             pes = ts->pids[pid]->u.pes_filter.opaque;
1481             if (!pes->st) {
1482                 pes->st = avformat_new_stream(pes->stream, NULL);
1483                 pes->st->id = pes->pid;
1484             }
1485             st = pes->st;
1486         } else if (stream_type != 0x13) {
1487             if (ts->pids[pid]) mpegts_close_filter(ts, ts->pids[pid]); //wrongly added sdt filter probably
1488             pes = add_pes_stream(ts, pid, pcr_pid);
1489             if (pes) {
1490                 st = avformat_new_stream(pes->stream, NULL);
1491                 st->id = pes->pid;
1492             }
1493         } else {
1494             int idx = ff_find_stream_index(ts->stream, pid);
1495             if (idx >= 0) {
1496                 st = ts->stream->streams[idx];
1497             } else {
1498                 st = avformat_new_stream(pes->stream, NULL);
1499                 st->id = pid;
1500                 st->codec->codec_type = AVMEDIA_TYPE_DATA;
1501             }
1502         }
1503
1504         if (!st)
1505             goto out;
1506
1507         if (pes && !pes->stream_type)
1508             mpegts_set_stream_info(st, pes, stream_type, prog_reg_desc);
1509
1510         add_pid_to_pmt(ts, h->id, pid);
1511
1512         ff_program_add_stream_index(ts->stream, h->id, st->index);
1513
1514         desc_list_len = get16(&p, p_end) & 0xfff;
1515         if (desc_list_len < 0)
1516             break;
1517         desc_list_end = p + desc_list_len;
1518         if (desc_list_end > p_end)
1519             break;
1520         for(;;) {
1521             if (ff_parse_mpeg2_descriptor(ts->stream, st, stream_type, &p, desc_list_end,
1522                 mp4_descr, mp4_descr_count, pid, ts) < 0)
1523                 break;
1524
1525             if (pes && prog_reg_desc == AV_RL32("HDMV") && stream_type == 0x83 && pes->sub_st) {
1526                 ff_program_add_stream_index(ts->stream, h->id, pes->sub_st->index);
1527                 pes->sub_st->codec->codec_tag = st->codec->codec_tag;
1528             }
1529         }
1530         p = desc_list_end;
1531     }
1532
1533  out:
1534     for (i = 0; i < mp4_descr_count; i++)
1535         av_free(mp4_descr[i].dec_config_descr);
1536 }
1537
1538 static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1539 {
1540     MpegTSContext *ts = filter->u.section_filter.opaque;
1541     SectionHeader h1, *h = &h1;
1542     const uint8_t *p, *p_end;
1543     int sid, pmt_pid;
1544     AVProgram *program;
1545
1546     av_dlog(ts->stream, "PAT:\n");
1547     hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
1548
1549     p_end = section + section_len - 4;
1550     p = section;
1551     if (parse_section_header(h, &p, p_end) < 0)
1552         return;
1553     if (h->tid != PAT_TID)
1554         return;
1555
1556     ts->stream->ts_id = h->id;
1557
1558     clear_programs(ts);
1559     for(;;) {
1560         sid = get16(&p, p_end);
1561         if (sid < 0)
1562             break;
1563         pmt_pid = get16(&p, p_end) & 0x1fff;
1564         if (pmt_pid < 0)
1565             break;
1566
1567         av_dlog(ts->stream, "sid=0x%x pid=0x%x\n", sid, pmt_pid);
1568
1569         if (sid == 0x0000) {
1570             /* NIT info */
1571         } else {
1572             program = av_new_program(ts->stream, sid);
1573             program->program_num = sid;
1574             program->pmt_pid = pmt_pid;
1575             if (ts->pids[pmt_pid])
1576                 mpegts_close_filter(ts, ts->pids[pmt_pid]);
1577             mpegts_open_section_filter(ts, pmt_pid, pmt_cb, ts, 1);
1578             add_pat_entry(ts, sid);
1579             add_pid_to_pmt(ts, sid, 0); //add pat pid to program
1580             add_pid_to_pmt(ts, sid, pmt_pid);
1581         }
1582     }
1583 }
1584
1585 static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1586 {
1587     MpegTSContext *ts = filter->u.section_filter.opaque;
1588     SectionHeader h1, *h = &h1;
1589     const uint8_t *p, *p_end, *desc_list_end, *desc_end;
1590     int onid, val, sid, desc_list_len, desc_tag, desc_len, service_type;
1591     char *name, *provider_name;
1592
1593     av_dlog(ts->stream, "SDT:\n");
1594     hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
1595
1596     p_end = section + section_len - 4;
1597     p = section;
1598     if (parse_section_header(h, &p, p_end) < 0)
1599         return;
1600     if (h->tid != SDT_TID)
1601         return;
1602     onid = get16(&p, p_end);
1603     if (onid < 0)
1604         return;
1605     val = get8(&p, p_end);
1606     if (val < 0)
1607         return;
1608     for(;;) {
1609         sid = get16(&p, p_end);
1610         if (sid < 0)
1611             break;
1612         val = get8(&p, p_end);
1613         if (val < 0)
1614             break;
1615         desc_list_len = get16(&p, p_end) & 0xfff;
1616         if (desc_list_len < 0)
1617             break;
1618         desc_list_end = p + desc_list_len;
1619         if (desc_list_end > p_end)
1620             break;
1621         for(;;) {
1622             desc_tag = get8(&p, desc_list_end);
1623             if (desc_tag < 0)
1624                 break;
1625             desc_len = get8(&p, desc_list_end);
1626             desc_end = p + desc_len;
1627             if (desc_end > desc_list_end)
1628                 break;
1629
1630             av_dlog(ts->stream, "tag: 0x%02x len=%d\n",
1631                    desc_tag, desc_len);
1632
1633             switch(desc_tag) {
1634             case 0x48:
1635                 service_type = get8(&p, p_end);
1636                 if (service_type < 0)
1637                     break;
1638                 provider_name = getstr8(&p, p_end);
1639                 if (!provider_name)
1640                     break;
1641                 name = getstr8(&p, p_end);
1642                 if (name) {
1643                     AVProgram *program = av_new_program(ts->stream, sid);
1644                     if(program) {
1645                         av_dict_set(&program->metadata, "service_name", name, 0);
1646                         av_dict_set(&program->metadata, "service_provider", provider_name, 0);
1647                     }
1648                 }
1649                 av_free(name);
1650                 av_free(provider_name);
1651                 break;
1652             default:
1653                 break;
1654             }
1655             p = desc_end;
1656         }
1657         p = desc_list_end;
1658     }
1659 }
1660
1661 /* handle one TS packet */
1662 static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
1663 {
1664     AVFormatContext *s = ts->stream;
1665     MpegTSFilter *tss;
1666     int len, pid, cc, expected_cc, cc_ok, afc, is_start, is_discontinuity,
1667         has_adaptation, has_payload;
1668     const uint8_t *p, *p_end;
1669     int64_t pos;
1670
1671     pid = AV_RB16(packet + 1) & 0x1fff;
1672     if(pid && discard_pid(ts, pid))
1673         return 0;
1674     is_start = packet[1] & 0x40;
1675     tss = ts->pids[pid];
1676     if (ts->auto_guess && tss == NULL && is_start) {
1677         add_pes_stream(ts, pid, -1);
1678         tss = ts->pids[pid];
1679     }
1680     if (!tss)
1681         return 0;
1682
1683     afc = (packet[3] >> 4) & 3;
1684     if (afc == 0) /* reserved value */
1685         return 0;
1686     has_adaptation = afc & 2;
1687     has_payload = afc & 1;
1688     is_discontinuity = has_adaptation
1689                 && packet[4] != 0 /* with length > 0 */
1690                 && (packet[5] & 0x80); /* and discontinuity indicated */
1691
1692     /* continuity check (currently not used) */
1693     cc = (packet[3] & 0xf);
1694     expected_cc = has_payload ? (tss->last_cc + 1) & 0x0f : tss->last_cc;
1695     cc_ok = pid == 0x1FFF // null packet PID
1696             || is_discontinuity
1697             || tss->last_cc < 0
1698             || expected_cc == cc;
1699
1700     tss->last_cc = cc;
1701     if (!cc_ok) {
1702         av_log(ts->stream, AV_LOG_DEBUG,
1703                "Continuity check failed for pid %d expected %d got %d\n",
1704                pid, expected_cc, cc);
1705         if(tss->type == MPEGTS_PES) {
1706             PESContext *pc = tss->u.pes_filter.opaque;
1707             pc->flags |= AV_PKT_FLAG_CORRUPT;
1708         }
1709     }
1710
1711     if (!has_payload)
1712         return 0;
1713     p = packet + 4;
1714     if (has_adaptation) {
1715         /* skip adaptation field */
1716         p += p[0] + 1;
1717     }
1718     /* if past the end of packet, ignore */
1719     p_end = packet + TS_PACKET_SIZE;
1720     if (p >= p_end)
1721         return 0;
1722
1723     pos = avio_tell(ts->stream->pb);
1724     ts->pos47= pos % ts->raw_packet_size;
1725
1726     if (tss->type == MPEGTS_SECTION) {
1727         if (is_start) {
1728             /* pointer field present */
1729             len = *p++;
1730             if (p + len > p_end)
1731                 return 0;
1732             if (len && cc_ok) {
1733                 /* write remaining section bytes */
1734                 write_section_data(s, tss,
1735                                    p, len, 0);
1736                 /* check whether filter has been closed */
1737                 if (!ts->pids[pid])
1738                     return 0;
1739             }
1740             p += len;
1741             if (p < p_end) {
1742                 write_section_data(s, tss,
1743                                    p, p_end - p, 1);
1744             }
1745         } else {
1746             if (cc_ok) {
1747                 write_section_data(s, tss,
1748                                    p, p_end - p, 0);
1749             }
1750         }
1751     } else {
1752         int ret;
1753         // Note: The position here points actually behind the current packet.
1754         if ((ret = tss->u.pes_filter.pes_cb(tss, p, p_end - p, is_start,
1755                                             pos - ts->raw_packet_size)) < 0)
1756             return ret;
1757     }
1758
1759     return 0;
1760 }
1761
1762 /* XXX: try to find a better synchro over several packets (use
1763    get_packet_size() ?) */
1764 static int mpegts_resync(AVFormatContext *s)
1765 {
1766     AVIOContext *pb = s->pb;
1767     int c, i;
1768
1769     for(i = 0;i < MAX_RESYNC_SIZE; i++) {
1770         c = avio_r8(pb);
1771         if (url_feof(pb))
1772             return -1;
1773         if (c == 0x47) {
1774             avio_seek(pb, -1, SEEK_CUR);
1775             return 0;
1776         }
1777     }
1778     av_log(s, AV_LOG_ERROR, "max resync size reached, could not find sync byte\n");
1779     /* no sync found */
1780     return -1;
1781 }
1782
1783 /* return -1 if error or EOF. Return 0 if OK. */
1784 static int read_packet(AVFormatContext *s, uint8_t *buf, int raw_packet_size)
1785 {
1786     AVIOContext *pb = s->pb;
1787     int skip, len;
1788
1789     for(;;) {
1790         len = avio_read(pb, buf, TS_PACKET_SIZE);
1791         if (len != TS_PACKET_SIZE)
1792             return len < 0 ? len : AVERROR_EOF;
1793         /* check packet sync byte */
1794         if (buf[0] != 0x47) {
1795             /* find a new packet start */
1796             avio_seek(pb, -TS_PACKET_SIZE, SEEK_CUR);
1797             if (mpegts_resync(s) < 0)
1798                 return AVERROR(EAGAIN);
1799             else
1800                 continue;
1801         } else {
1802             skip = raw_packet_size - TS_PACKET_SIZE;
1803             if (skip > 0)
1804                 avio_skip(pb, skip);
1805             break;
1806         }
1807     }
1808     return 0;
1809 }
1810
1811 static int handle_packets(MpegTSContext *ts, int nb_packets)
1812 {
1813     AVFormatContext *s = ts->stream;
1814     uint8_t packet[TS_PACKET_SIZE];
1815     int packet_num, ret = 0;
1816
1817     if (avio_tell(s->pb) != ts->last_pos) {
1818         int i;
1819         av_dlog(ts->stream, "Skipping after seek\n");
1820         /* seek detected, flush pes buffer */
1821         for (i = 0; i < NB_PID_MAX; i++) {
1822             if (ts->pids[i]) {
1823                 if (ts->pids[i]->type == MPEGTS_PES) {
1824                    PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
1825                    av_freep(&pes->buffer);
1826                    pes->data_index = 0;
1827                    pes->state = MPEGTS_SKIP; /* skip until pes header */
1828                 }
1829                 ts->pids[i]->last_cc = -1;
1830             }
1831         }
1832     }
1833
1834     ts->stop_parse = 0;
1835     packet_num = 0;
1836     for(;;) {
1837         packet_num++;
1838         if (nb_packets != 0 && packet_num >= nb_packets ||
1839             ts->stop_parse > 1) {
1840             ret = AVERROR(EAGAIN);
1841             break;
1842         }
1843         if (ts->stop_parse > 0)
1844             break;
1845
1846         ret = read_packet(s, packet, ts->raw_packet_size);
1847         if (ret != 0)
1848             break;
1849         ret = handle_packet(ts, packet);
1850         if (ret != 0)
1851             break;
1852     }
1853     ts->last_pos = avio_tell(s->pb);
1854     return ret;
1855 }
1856
1857 static int mpegts_probe(AVProbeData *p)
1858 {
1859 #if 1
1860     const int size= p->buf_size;
1861     int score, fec_score, dvhs_score;
1862     int check_count= size / TS_FEC_PACKET_SIZE;
1863 #define CHECK_COUNT 10
1864
1865     if (check_count < CHECK_COUNT)
1866         return -1;
1867
1868     score     = analyze(p->buf, TS_PACKET_SIZE     *check_count, TS_PACKET_SIZE     , NULL)*CHECK_COUNT/check_count;
1869     dvhs_score= analyze(p->buf, TS_DVHS_PACKET_SIZE*check_count, TS_DVHS_PACKET_SIZE, NULL)*CHECK_COUNT/check_count;
1870     fec_score = analyze(p->buf, TS_FEC_PACKET_SIZE *check_count, TS_FEC_PACKET_SIZE , NULL)*CHECK_COUNT/check_count;
1871 //    av_log(NULL, AV_LOG_DEBUG, "score: %d, dvhs_score: %d, fec_score: %d \n", score, dvhs_score, fec_score);
1872
1873 // we need a clear definition for the returned score otherwise things will become messy sooner or later
1874     if     (score > fec_score && score > dvhs_score && score > 6) return AVPROBE_SCORE_MAX + score     - CHECK_COUNT;
1875     else if(dvhs_score > score && dvhs_score > fec_score && dvhs_score > 6) return AVPROBE_SCORE_MAX + dvhs_score  - CHECK_COUNT;
1876     else if(                 fec_score > 6) return AVPROBE_SCORE_MAX + fec_score - CHECK_COUNT;
1877     else                                    return -1;
1878 #else
1879     /* only use the extension for safer guess */
1880     if (av_match_ext(p->filename, "ts"))
1881         return AVPROBE_SCORE_MAX;
1882     else
1883         return 0;
1884 #endif
1885 }
1886
1887 /* return the 90kHz PCR and the extension for the 27MHz PCR. return
1888    (-1) if not available */
1889 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
1890                      const uint8_t *packet)
1891 {
1892     int afc, len, flags;
1893     const uint8_t *p;
1894     unsigned int v;
1895
1896     afc = (packet[3] >> 4) & 3;
1897     if (afc <= 1)
1898         return -1;
1899     p = packet + 4;
1900     len = p[0];
1901     p++;
1902     if (len == 0)
1903         return -1;
1904     flags = *p++;
1905     len--;
1906     if (!(flags & 0x10))
1907         return -1;
1908     if (len < 6)
1909         return -1;
1910     v = AV_RB32(p);
1911     *ppcr_high = ((int64_t)v << 1) | (p[4] >> 7);
1912     *ppcr_low = ((p[4] & 1) << 8) | p[5];
1913     return 0;
1914 }
1915
1916 static int mpegts_read_header(AVFormatContext *s,
1917                               AVFormatParameters *ap)
1918 {
1919     MpegTSContext *ts = s->priv_data;
1920     AVIOContext *pb = s->pb;
1921     uint8_t buf[8*1024];
1922     int len;
1923     int64_t pos;
1924
1925     /* read the first 8192 bytes to get packet size */
1926     pos = avio_tell(pb);
1927     len = avio_read(pb, buf, sizeof(buf));
1928     if (len != sizeof(buf))
1929         goto fail;
1930     ts->raw_packet_size = get_packet_size(buf, sizeof(buf));
1931     if (ts->raw_packet_size <= 0) {
1932         av_log(s, AV_LOG_WARNING, "Could not detect TS packet size, defaulting to non-FEC/DVHS\n");
1933         ts->raw_packet_size = TS_PACKET_SIZE;
1934     }
1935     ts->stream = s;
1936     ts->auto_guess = 0;
1937
1938     if (s->iformat == &ff_mpegts_demuxer) {
1939         /* normal demux */
1940
1941         /* first do a scanning to get all the services */
1942         /* NOTE: We attempt to seek on non-seekable files as well, as the
1943          * probe buffer usually is big enough. Only warn if the seek failed
1944          * on files where the seek should work. */
1945         if (avio_seek(pb, pos, SEEK_SET) < 0)
1946             av_log(s, pb->seekable ? AV_LOG_ERROR : AV_LOG_INFO, "Unable to seek back to the start\n");
1947
1948         mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
1949
1950         mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
1951
1952         handle_packets(ts, s->probesize / ts->raw_packet_size);
1953         /* if could not find service, enable auto_guess */
1954
1955         ts->auto_guess = 1;
1956
1957         av_dlog(ts->stream, "tuning done\n");
1958
1959         s->ctx_flags |= AVFMTCTX_NOHEADER;
1960     } else {
1961         AVStream *st;
1962         int pcr_pid, pid, nb_packets, nb_pcrs, ret, pcr_l;
1963         int64_t pcrs[2], pcr_h;
1964         int packet_count[2];
1965         uint8_t packet[TS_PACKET_SIZE];
1966
1967         /* only read packets */
1968
1969         st = avformat_new_stream(s, NULL);
1970         if (!st)
1971             goto fail;
1972         av_set_pts_info(st, 60, 1, 27000000);
1973         st->codec->codec_type = AVMEDIA_TYPE_DATA;
1974         st->codec->codec_id = CODEC_ID_MPEG2TS;
1975
1976         /* we iterate until we find two PCRs to estimate the bitrate */
1977         pcr_pid = -1;
1978         nb_pcrs = 0;
1979         nb_packets = 0;
1980         for(;;) {
1981             ret = read_packet(s, packet, ts->raw_packet_size);
1982             if (ret < 0)
1983                 return -1;
1984             pid = AV_RB16(packet + 1) & 0x1fff;
1985             if ((pcr_pid == -1 || pcr_pid == pid) &&
1986                 parse_pcr(&pcr_h, &pcr_l, packet) == 0) {
1987                 pcr_pid = pid;
1988                 packet_count[nb_pcrs] = nb_packets;
1989                 pcrs[nb_pcrs] = pcr_h * 300 + pcr_l;
1990                 nb_pcrs++;
1991                 if (nb_pcrs >= 2)
1992                     break;
1993             }
1994             nb_packets++;
1995         }
1996
1997         /* NOTE1: the bitrate is computed without the FEC */
1998         /* NOTE2: it is only the bitrate of the start of the stream */
1999         ts->pcr_incr = (pcrs[1] - pcrs[0]) / (packet_count[1] - packet_count[0]);
2000         ts->cur_pcr = pcrs[0] - ts->pcr_incr * packet_count[0];
2001         s->bit_rate = (TS_PACKET_SIZE * 8) * 27e6 / ts->pcr_incr;
2002         st->codec->bit_rate = s->bit_rate;
2003         st->start_time = ts->cur_pcr;
2004         av_dlog(ts->stream, "start=%0.3f pcr=%0.3f incr=%d\n",
2005                 st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr);
2006     }
2007
2008     avio_seek(pb, pos, SEEK_SET);
2009     return 0;
2010  fail:
2011     return -1;
2012 }
2013
2014 #define MAX_PACKET_READAHEAD ((128 * 1024) / 188)
2015
2016 static int mpegts_raw_read_packet(AVFormatContext *s,
2017                                   AVPacket *pkt)
2018 {
2019     MpegTSContext *ts = s->priv_data;
2020     int ret, i;
2021     int64_t pcr_h, next_pcr_h, pos;
2022     int pcr_l, next_pcr_l;
2023     uint8_t pcr_buf[12];
2024
2025     if (av_new_packet(pkt, TS_PACKET_SIZE) < 0)
2026         return AVERROR(ENOMEM);
2027     pkt->pos= avio_tell(s->pb);
2028     ret = read_packet(s, pkt->data, ts->raw_packet_size);
2029     if (ret < 0) {
2030         av_free_packet(pkt);
2031         return ret;
2032     }
2033     if (ts->mpeg2ts_compute_pcr) {
2034         /* compute exact PCR for each packet */
2035         if (parse_pcr(&pcr_h, &pcr_l, pkt->data) == 0) {
2036             /* we read the next PCR (XXX: optimize it by using a bigger buffer */
2037             pos = avio_tell(s->pb);
2038             for(i = 0; i < MAX_PACKET_READAHEAD; i++) {
2039                 avio_seek(s->pb, pos + i * ts->raw_packet_size, SEEK_SET);
2040                 avio_read(s->pb, pcr_buf, 12);
2041                 if (parse_pcr(&next_pcr_h, &next_pcr_l, pcr_buf) == 0) {
2042                     /* XXX: not precise enough */
2043                     ts->pcr_incr = ((next_pcr_h - pcr_h) * 300 + (next_pcr_l - pcr_l)) /
2044                         (i + 1);
2045                     break;
2046                 }
2047             }
2048             avio_seek(s->pb, pos, SEEK_SET);
2049             /* no next PCR found: we use previous increment */
2050             ts->cur_pcr = pcr_h * 300 + pcr_l;
2051         }
2052         pkt->pts = ts->cur_pcr;
2053         pkt->duration = ts->pcr_incr;
2054         ts->cur_pcr += ts->pcr_incr;
2055     }
2056     pkt->stream_index = 0;
2057     return 0;
2058 }
2059
2060 static int mpegts_read_packet(AVFormatContext *s,
2061                               AVPacket *pkt)
2062 {
2063     MpegTSContext *ts = s->priv_data;
2064     int ret, i;
2065
2066     ts->pkt = pkt;
2067     ret = handle_packets(ts, 0);
2068     if (ret < 0) {
2069         /* flush pes data left */
2070         for (i = 0; i < NB_PID_MAX; i++) {
2071             if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
2072                 PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2073                 if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
2074                     new_pes_packet(pes, pkt);
2075                     pes->state = MPEGTS_SKIP;
2076                     ret = 0;
2077                     break;
2078                 }
2079             }
2080         }
2081     }
2082
2083     return ret;
2084 }
2085
2086 static int mpegts_read_close(AVFormatContext *s)
2087 {
2088     MpegTSContext *ts = s->priv_data;
2089     int i;
2090
2091     clear_programs(ts);
2092
2093     for(i=0;i<NB_PID_MAX;i++)
2094         if (ts->pids[i]) mpegts_close_filter(ts, ts->pids[i]);
2095
2096     return 0;
2097 }
2098
2099 static int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
2100                               int64_t *ppos, int64_t pos_limit)
2101 {
2102     MpegTSContext *ts = s->priv_data;
2103     int64_t pos, timestamp;
2104     uint8_t buf[TS_PACKET_SIZE];
2105     int pcr_l, pcr_pid = ((PESContext*)s->streams[stream_index]->priv_data)->pcr_pid;
2106     pos = ((*ppos  + ts->raw_packet_size - 1 - ts->pos47) / ts->raw_packet_size) * ts->raw_packet_size + ts->pos47;
2107     while(pos < pos_limit) {
2108         if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2109             return AV_NOPTS_VALUE;
2110         if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
2111             return AV_NOPTS_VALUE;
2112         if (buf[0] != 0x47) {
2113             if (mpegts_resync(s) < 0)
2114                 return AV_NOPTS_VALUE;
2115             pos = url_ftell(s->pb);
2116             continue;
2117         }
2118         if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
2119             parse_pcr(&timestamp, &pcr_l, buf) == 0) {
2120             *ppos = pos;
2121             return timestamp;
2122         }
2123         pos += ts->raw_packet_size;
2124     }
2125
2126     return AV_NOPTS_VALUE;
2127 }
2128
2129 static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index,
2130                               int64_t *ppos, int64_t pos_limit)
2131 {
2132     MpegTSContext *ts = s->priv_data;
2133     int64_t pos, timestamp;
2134     pos = ((*ppos  + ts->raw_packet_size - 1 - ts->pos47) / ts->raw_packet_size) * ts->raw_packet_size + ts->pos47;
2135     ff_read_frame_flush(s);
2136     if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2137         return AV_NOPTS_VALUE;
2138     while(pos < pos_limit) {
2139         int ret;
2140         AVPacket pkt;
2141         av_init_packet(&pkt);
2142         ret= av_read_frame(s, &pkt);
2143         if(ret < 0)
2144             return AV_NOPTS_VALUE;
2145         av_free_packet(&pkt);
2146         if(pkt.dts != AV_NOPTS_VALUE && pkt.pos >= 0){
2147             ff_reduce_index(s, pkt.stream_index);
2148             av_add_index_entry(s->streams[pkt.stream_index], pkt.pos, pkt.dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
2149             if(pkt.stream_index == stream_index){
2150                 *ppos= pkt.pos;
2151                 return pkt.dts;
2152             }
2153         }
2154         pos = pkt.pos;
2155     }
2156
2157     return AV_NOPTS_VALUE;
2158 }
2159
2160 #ifdef USE_SYNCPOINT_SEARCH
2161
2162 static int read_seek2(AVFormatContext *s,
2163                       int stream_index,
2164                       int64_t min_ts,
2165                       int64_t target_ts,
2166                       int64_t max_ts,
2167                       int flags)
2168 {
2169     int64_t pos;
2170
2171     int64_t ts_ret, ts_adj;
2172     int stream_index_gen_search;
2173     AVStream *st;
2174     AVParserState *backup;
2175
2176     backup = ff_store_parser_state(s);
2177
2178     // detect direction of seeking for search purposes
2179     flags |= (target_ts - min_ts > (uint64_t)(max_ts - target_ts)) ?
2180              AVSEEK_FLAG_BACKWARD : 0;
2181
2182     if (flags & AVSEEK_FLAG_BYTE) {
2183         // use position directly, we will search starting from it
2184         pos = target_ts;
2185     } else {
2186         // search for some position with good timestamp match
2187         if (stream_index < 0) {
2188             stream_index_gen_search = av_find_default_stream_index(s);
2189             if (stream_index_gen_search < 0) {
2190                 ff_restore_parser_state(s, backup);
2191                 return -1;
2192             }
2193
2194             st = s->streams[stream_index_gen_search];
2195             // timestamp for default must be expressed in AV_TIME_BASE units
2196             ts_adj = av_rescale(target_ts,
2197                                 st->time_base.den,
2198                                 AV_TIME_BASE * (int64_t)st->time_base.num);
2199         } else {
2200             ts_adj = target_ts;
2201             stream_index_gen_search = stream_index;
2202         }
2203         pos = ff_gen_search(s, stream_index_gen_search, ts_adj,
2204                             0, INT64_MAX, -1,
2205                             AV_NOPTS_VALUE,
2206                             AV_NOPTS_VALUE,
2207                             flags, &ts_ret, mpegts_get_pcr);
2208         if (pos < 0) {
2209             ff_restore_parser_state(s, backup);
2210             return -1;
2211         }
2212     }
2213
2214     // search for actual matching keyframe/starting position for all streams
2215     if (ff_gen_syncpoint_search(s, stream_index, pos,
2216                                 min_ts, target_ts, max_ts,
2217                                 flags) < 0) {
2218         ff_restore_parser_state(s, backup);
2219         return -1;
2220     }
2221
2222     ff_free_parser_state(s, backup);
2223     return 0;
2224 }
2225
2226 static int read_seek(AVFormatContext *s, int stream_index, int64_t target_ts, int flags)
2227 {
2228     int ret;
2229     if (flags & AVSEEK_FLAG_BACKWARD) {
2230         flags &= ~AVSEEK_FLAG_BACKWARD;
2231         ret = read_seek2(s, stream_index, INT64_MIN, target_ts, target_ts, flags);
2232         if (ret < 0)
2233             // for compatibility reasons, seek to the best-fitting timestamp
2234             ret = read_seek2(s, stream_index, INT64_MIN, target_ts, INT64_MAX, flags);
2235     } else {
2236         ret = read_seek2(s, stream_index, target_ts, target_ts, INT64_MAX, flags);
2237         if (ret < 0)
2238             // for compatibility reasons, seek to the best-fitting timestamp
2239             ret = read_seek2(s, stream_index, INT64_MIN, target_ts, INT64_MAX, flags);
2240     }
2241     return ret;
2242 }
2243
2244 #endif
2245
2246 /**************************************************************/
2247 /* parsing functions - called from other demuxers such as RTP */
2248
2249 MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s)
2250 {
2251     MpegTSContext *ts;
2252
2253     ts = av_mallocz(sizeof(MpegTSContext));
2254     if (!ts)
2255         return NULL;
2256     /* no stream case, currently used by RTP */
2257     ts->raw_packet_size = TS_PACKET_SIZE;
2258     ts->stream = s;
2259     ts->auto_guess = 1;
2260     mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
2261     mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
2262
2263     return ts;
2264 }
2265
2266 /* return the consumed length if a packet was output, or -1 if no
2267    packet is output */
2268 int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
2269                         const uint8_t *buf, int len)
2270 {
2271     int len1;
2272
2273     len1 = len;
2274     ts->pkt = pkt;
2275     for(;;) {
2276         ts->stop_parse = 0;
2277         if (len < TS_PACKET_SIZE)
2278             return -1;
2279         if (buf[0] != 0x47) {
2280             buf++;
2281             len--;
2282         } else {
2283             handle_packet(ts, buf);
2284             buf += TS_PACKET_SIZE;
2285             len -= TS_PACKET_SIZE;
2286             if (ts->stop_parse == 1)
2287                 break;
2288         }
2289     }
2290     return len1 - len;
2291 }
2292
2293 void ff_mpegts_parse_close(MpegTSContext *ts)
2294 {
2295     int i;
2296
2297     for(i=0;i<NB_PID_MAX;i++)
2298         av_free(ts->pids[i]);
2299     av_free(ts);
2300 }
2301
2302 AVInputFormat ff_mpegts_demuxer = {
2303     .name           = "mpegts",
2304     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 transport stream format"),
2305     .priv_data_size = sizeof(MpegTSContext),
2306     .read_probe     = mpegts_probe,
2307     .read_header    = mpegts_read_header,
2308     .read_packet    = mpegts_read_packet,
2309     .read_close     = mpegts_read_close,
2310     .read_timestamp = mpegts_get_dts,
2311     .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
2312 #ifdef USE_SYNCPOINT_SEARCH
2313     .read_seek2 = read_seek2,
2314 #endif
2315 };
2316
2317 AVInputFormat ff_mpegtsraw_demuxer = {
2318     .name           = "mpegtsraw",
2319     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 raw transport stream format"),
2320     .priv_data_size = sizeof(MpegTSContext),
2321     .read_header    = mpegts_read_header,
2322     .read_packet    = mpegts_raw_read_packet,
2323     .read_close     = mpegts_read_close,
2324     .read_timestamp = mpegts_get_dts,
2325     .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
2326 #ifdef USE_SYNCPOINT_SEARCH
2327     .read_seek2 = read_seek2,
2328 #endif
2329     .priv_class = &mpegtsraw_class,
2330 };