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