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