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