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