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