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