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