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