]> git.sesse.net Git - ffmpeg/blob - libavformat/mpegts.c
Only autodetect loas in transport streams.
[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     { 0x90, AVMEDIA_TYPE_SUBTITLE, CODEC_ID_HDMV_PGS_SUBTITLE },
544     { 0 },
545 };
546
547 /* ATSC ? */
548 static const StreamType MISC_types[] = {
549     { 0x81, AVMEDIA_TYPE_AUDIO,   CODEC_ID_AC3 },
550     { 0x8a, AVMEDIA_TYPE_AUDIO,   CODEC_ID_DTS },
551     { 0 },
552 };
553
554 static const StreamType REGD_types[] = {
555     { MKTAG('d','r','a','c'), AVMEDIA_TYPE_VIDEO, CODEC_ID_DIRAC },
556     { MKTAG('A','C','-','3'), AVMEDIA_TYPE_AUDIO,   CODEC_ID_AC3 },
557     { MKTAG('B','S','S','D'), AVMEDIA_TYPE_AUDIO, CODEC_ID_S302M },
558     { 0 },
559 };
560
561 /* descriptor present */
562 static const StreamType DESC_types[] = {
563     { 0x6a, AVMEDIA_TYPE_AUDIO,             CODEC_ID_AC3 }, /* AC-3 descriptor */
564     { 0x7a, AVMEDIA_TYPE_AUDIO,            CODEC_ID_EAC3 }, /* E-AC-3 descriptor */
565     { 0x7b, AVMEDIA_TYPE_AUDIO,             CODEC_ID_DTS },
566     { 0x56, AVMEDIA_TYPE_SUBTITLE, CODEC_ID_DVB_TELETEXT },
567     { 0x59, AVMEDIA_TYPE_SUBTITLE, CODEC_ID_DVB_SUBTITLE }, /* subtitling descriptor */
568     { 0 },
569 };
570
571 static void mpegts_find_stream_type(AVStream *st,
572                                     uint32_t stream_type, const StreamType *types)
573 {
574     for (; types->stream_type; types++) {
575         if (stream_type == types->stream_type) {
576             st->codec->codec_type = types->codec_type;
577             st->codec->codec_id   = types->codec_id;
578             st->request_probe     = 0;
579             return;
580         }
581     }
582 }
583
584 static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
585                                   uint32_t stream_type, uint32_t prog_reg_desc)
586 {
587     av_set_pts_info(st, 33, 1, 90000);
588     st->priv_data = pes;
589     st->codec->codec_type = AVMEDIA_TYPE_DATA;
590     st->codec->codec_id   = CODEC_ID_NONE;
591     st->need_parsing = AVSTREAM_PARSE_FULL;
592     pes->st = st;
593     pes->stream_type = stream_type;
594
595     av_log(pes->stream, AV_LOG_DEBUG,
596            "stream=%d stream_type=%x pid=%x prog_reg_desc=%.4s\n",
597            st->index, pes->stream_type, pes->pid, (char*)&prog_reg_desc);
598
599     st->codec->codec_tag = pes->stream_type;
600
601     mpegts_find_stream_type(st, pes->stream_type, ISO_types);
602     if (prog_reg_desc == AV_RL32("HDMV") &&
603         st->codec->codec_id == CODEC_ID_NONE) {
604         mpegts_find_stream_type(st, pes->stream_type, HDMV_types);
605         if (pes->stream_type == 0x83) {
606             // HDMV TrueHD streams also contain an AC3 coded version of the
607             // audio track - add a second stream for this
608             AVStream *sub_st;
609             // priv_data cannot be shared between streams
610             PESContext *sub_pes = av_malloc(sizeof(*sub_pes));
611             if (!sub_pes)
612                 return AVERROR(ENOMEM);
613             memcpy(sub_pes, pes, sizeof(*sub_pes));
614
615             sub_st = av_new_stream(pes->stream, pes->pid);
616             if (!sub_st) {
617                 av_free(sub_pes);
618                 return AVERROR(ENOMEM);
619             }
620
621             av_set_pts_info(sub_st, 33, 1, 90000);
622             sub_st->priv_data = sub_pes;
623             sub_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
624             sub_st->codec->codec_id   = CODEC_ID_AC3;
625             sub_st->need_parsing = AVSTREAM_PARSE_FULL;
626             sub_pes->sub_st = pes->sub_st = sub_st;
627         }
628     }
629     if (st->codec->codec_id == CODEC_ID_NONE)
630         mpegts_find_stream_type(st, pes->stream_type, MISC_types);
631
632     return 0;
633 }
634
635 static void new_pes_packet(PESContext *pes, AVPacket *pkt)
636 {
637     av_init_packet(pkt);
638
639     pkt->destruct = av_destruct_packet;
640     pkt->data = pes->buffer;
641     pkt->size = pes->data_index;
642
643     if(pes->total_size != MAX_PES_PAYLOAD &&
644        pes->pes_header_size + pes->data_index != pes->total_size + 6) {
645         av_log(pes->stream, AV_LOG_WARNING, "PES packet size mismatch\n");
646         pes->flags |= AV_PKT_FLAG_CORRUPT;
647     }
648     memset(pkt->data+pkt->size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
649
650     // Separate out the AC3 substream from an HDMV combined TrueHD/AC3 PID
651     if (pes->sub_st && pes->stream_type == 0x83 && pes->extended_stream_id == 0x76)
652         pkt->stream_index = pes->sub_st->index;
653     else
654         pkt->stream_index = pes->st->index;
655     pkt->pts = pes->pts;
656     pkt->dts = pes->dts;
657     /* store position of first TS packet of this PES packet */
658     pkt->pos = pes->ts_packet_pos;
659     pkt->flags = pes->flags;
660
661     /* reset pts values */
662     pes->pts = AV_NOPTS_VALUE;
663     pes->dts = AV_NOPTS_VALUE;
664     pes->buffer = NULL;
665     pes->data_index = 0;
666     pes->flags = 0;
667 }
668
669 /* return non zero if a packet could be constructed */
670 static int mpegts_push_data(MpegTSFilter *filter,
671                             const uint8_t *buf, int buf_size, int is_start,
672                             int64_t pos)
673 {
674     PESContext *pes = filter->u.pes_filter.opaque;
675     MpegTSContext *ts = pes->ts;
676     const uint8_t *p;
677     int len, code;
678
679     if(!ts->pkt)
680         return 0;
681
682     if (is_start) {
683         if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
684             new_pes_packet(pes, ts->pkt);
685             ts->stop_parse = 1;
686         }
687         pes->state = MPEGTS_HEADER;
688         pes->data_index = 0;
689         pes->ts_packet_pos = pos;
690     }
691     p = buf;
692     while (buf_size > 0) {
693         switch(pes->state) {
694         case MPEGTS_HEADER:
695             len = PES_START_SIZE - pes->data_index;
696             if (len > buf_size)
697                 len = buf_size;
698             memcpy(pes->header + pes->data_index, p, len);
699             pes->data_index += len;
700             p += len;
701             buf_size -= len;
702             if (pes->data_index == PES_START_SIZE) {
703                 /* we got all the PES or section header. We can now
704                    decide */
705                 if (pes->header[0] == 0x00 && pes->header[1] == 0x00 &&
706                     pes->header[2] == 0x01) {
707                     /* it must be an mpeg2 PES stream */
708                     code = pes->header[3] | 0x100;
709                     av_dlog(pes->stream, "pid=%x pes_code=%#x\n", pes->pid, code);
710
711                     if ((pes->st && pes->st->discard == AVDISCARD_ALL) ||
712                         code == 0x1be) /* padding_stream */
713                         goto skip;
714
715                     /* stream not present in PMT */
716                     if (!pes->st) {
717                         pes->st = av_new_stream(ts->stream, pes->pid);
718                         if (!pes->st)
719                             return AVERROR(ENOMEM);
720                         mpegts_set_stream_info(pes->st, pes, 0, 0);
721                     }
722
723                     pes->total_size = AV_RB16(pes->header + 4);
724                     /* NOTE: a zero total size means the PES size is
725                        unbounded */
726                     if (!pes->total_size)
727                         pes->total_size = MAX_PES_PAYLOAD;
728
729                     /* allocate pes buffer */
730                     pes->buffer = av_malloc(pes->total_size+FF_INPUT_BUFFER_PADDING_SIZE);
731                     if (!pes->buffer)
732                         return AVERROR(ENOMEM);
733
734                     if (code != 0x1bc && code != 0x1bf && /* program_stream_map, private_stream_2 */
735                         code != 0x1f0 && code != 0x1f1 && /* ECM, EMM */
736                         code != 0x1ff && code != 0x1f2 && /* program_stream_directory, DSMCC_stream */
737                         code != 0x1f8) {                  /* ITU-T Rec. H.222.1 type E stream */
738                         pes->state = MPEGTS_PESHEADER;
739                         if (pes->st->codec->codec_id == CODEC_ID_NONE && !pes->st->request_probe) {
740                             av_dlog(pes->stream, "pid=%x stream_type=%x probing\n",
741                                     pes->pid, pes->stream_type);
742                             pes->st->request_probe= 1;
743                         }
744                     } else {
745                         pes->state = MPEGTS_PAYLOAD;
746                         pes->data_index = 0;
747                     }
748                 } else {
749                     /* otherwise, it should be a table */
750                     /* skip packet */
751                 skip:
752                     pes->state = MPEGTS_SKIP;
753                     continue;
754                 }
755             }
756             break;
757             /**********************************************/
758             /* PES packing parsing */
759         case MPEGTS_PESHEADER:
760             len = PES_HEADER_SIZE - pes->data_index;
761             if (len < 0)
762                 return -1;
763             if (len > buf_size)
764                 len = buf_size;
765             memcpy(pes->header + pes->data_index, p, len);
766             pes->data_index += len;
767             p += len;
768             buf_size -= len;
769             if (pes->data_index == PES_HEADER_SIZE) {
770                 pes->pes_header_size = pes->header[8] + 9;
771                 pes->state = MPEGTS_PESHEADER_FILL;
772             }
773             break;
774         case MPEGTS_PESHEADER_FILL:
775             len = pes->pes_header_size - pes->data_index;
776             if (len < 0)
777                 return -1;
778             if (len > buf_size)
779                 len = buf_size;
780             memcpy(pes->header + pes->data_index, p, len);
781             pes->data_index += len;
782             p += len;
783             buf_size -= len;
784             if (pes->data_index == pes->pes_header_size) {
785                 const uint8_t *r;
786                 unsigned int flags, pes_ext, skip;
787
788                 flags = pes->header[7];
789                 r = pes->header + 9;
790                 pes->pts = AV_NOPTS_VALUE;
791                 pes->dts = AV_NOPTS_VALUE;
792                 if ((flags & 0xc0) == 0x80) {
793                     pes->dts = pes->pts = ff_parse_pes_pts(r);
794                     r += 5;
795                 } else if ((flags & 0xc0) == 0xc0) {
796                     pes->pts = ff_parse_pes_pts(r);
797                     r += 5;
798                     pes->dts = ff_parse_pes_pts(r);
799                     r += 5;
800                 }
801                 pes->extended_stream_id = -1;
802                 if (flags & 0x01) { /* PES extension */
803                     pes_ext = *r++;
804                     /* Skip PES private data, program packet sequence counter and P-STD buffer */
805                     skip = (pes_ext >> 4) & 0xb;
806                     skip += skip & 0x9;
807                     r += skip;
808                     if ((pes_ext & 0x41) == 0x01 &&
809                         (r + 2) <= (pes->header + pes->pes_header_size)) {
810                         /* PES extension 2 */
811                         if ((r[0] & 0x7f) > 0 && (r[1] & 0x80) == 0)
812                             pes->extended_stream_id = r[1];
813                     }
814                 }
815
816                 /* we got the full header. We parse it and get the payload */
817                 pes->state = MPEGTS_PAYLOAD;
818                 pes->data_index = 0;
819             }
820             break;
821         case MPEGTS_PAYLOAD:
822             if (buf_size > 0 && pes->buffer) {
823                 if (pes->data_index > 0 && pes->data_index+buf_size > pes->total_size) {
824                     new_pes_packet(pes, ts->pkt);
825                     pes->total_size = MAX_PES_PAYLOAD;
826                     pes->buffer = av_malloc(pes->total_size+FF_INPUT_BUFFER_PADDING_SIZE);
827                     if (!pes->buffer)
828                         return AVERROR(ENOMEM);
829                     ts->stop_parse = 1;
830                 } else if (pes->data_index == 0 && buf_size > pes->total_size) {
831                     // pes packet size is < ts size packet and pes data is padded with 0xff
832                     // not sure if this is legal in ts but see issue #2392
833                     buf_size = pes->total_size;
834                 }
835                 memcpy(pes->buffer+pes->data_index, p, buf_size);
836                 pes->data_index += buf_size;
837             }
838             buf_size = 0;
839             /* emit complete packets with known packet size
840              * decreases demuxer delay for infrequent packets like subtitles from
841              * a couple of seconds to milliseconds for properly muxed files.
842              * total_size is the number of bytes following pes_packet_length
843              * in the pes header, i.e. not counting the first 6 bytes */
844             if (!ts->stop_parse && pes->total_size < MAX_PES_PAYLOAD &&
845                 pes->pes_header_size + pes->data_index == pes->total_size + 6) {
846                 ts->stop_parse = 1;
847                 new_pes_packet(pes, ts->pkt);
848             }
849             break;
850         case MPEGTS_SKIP:
851             buf_size = 0;
852             break;
853         }
854     }
855
856     return 0;
857 }
858
859 static PESContext *add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid)
860 {
861     MpegTSFilter *tss;
862     PESContext *pes;
863
864     /* if no pid found, then add a pid context */
865     pes = av_mallocz(sizeof(PESContext));
866     if (!pes)
867         return 0;
868     pes->ts = ts;
869     pes->stream = ts->stream;
870     pes->pid = pid;
871     pes->pcr_pid = pcr_pid;
872     pes->state = MPEGTS_SKIP;
873     pes->pts = AV_NOPTS_VALUE;
874     pes->dts = AV_NOPTS_VALUE;
875     tss = mpegts_open_pes_filter(ts, pid, mpegts_push_data, pes);
876     if (!tss) {
877         av_free(pes);
878         return 0;
879     }
880     return pes;
881 }
882
883 static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size,
884                          int *es_id, uint8_t **dec_config_descr,
885                          int *dec_config_descr_size)
886 {
887     AVIOContext pb;
888     int tag;
889     unsigned len;
890
891     ffio_init_context(&pb, buf, size, 0, NULL, NULL, NULL, NULL);
892
893     len = ff_mp4_read_descr(s, &pb, &tag);
894     if (tag == MP4IODescrTag) {
895         avio_rb16(&pb); // ID
896         avio_r8(&pb);
897         avio_r8(&pb);
898         avio_r8(&pb);
899         avio_r8(&pb);
900         avio_r8(&pb);
901         len = ff_mp4_read_descr(s, &pb, &tag);
902         if (tag == MP4ESDescrTag) {
903             ff_mp4_parse_es_descr(&pb, es_id);
904             av_dlog(s, "ES_ID %#x\n", *es_id);
905             len = ff_mp4_read_descr(s, &pb, &tag);
906             if (tag == MP4DecConfigDescrTag) {
907                 *dec_config_descr = av_malloc(len);
908                 if (!*dec_config_descr)
909                     return AVERROR(ENOMEM);
910                 *dec_config_descr_size = len;
911                 avio_read(&pb, *dec_config_descr, len);
912             }
913         }
914     }
915     return 0;
916 }
917
918 int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type,
919                               const uint8_t **pp, const uint8_t *desc_list_end,
920                               int mp4_dec_config_descr_len, int mp4_es_id, int pid,
921                               uint8_t *mp4_dec_config_descr)
922 {
923     const uint8_t *desc_end;
924     int desc_len, desc_tag;
925     char language[252];
926     int i;
927
928     desc_tag = get8(pp, desc_list_end);
929     if (desc_tag < 0)
930         return -1;
931     desc_len = get8(pp, desc_list_end);
932     if (desc_len < 0)
933         return -1;
934     desc_end = *pp + desc_len;
935     if (desc_end > desc_list_end)
936         return -1;
937
938     av_dlog(fc, "tag: 0x%02x len=%d\n", desc_tag, desc_len);
939
940     if (st->codec->codec_id == CODEC_ID_NONE &&
941         stream_type == STREAM_TYPE_PRIVATE_DATA)
942         mpegts_find_stream_type(st, desc_tag, DESC_types);
943
944     switch(desc_tag) {
945     case 0x1F: /* FMC descriptor */
946         get16(pp, desc_end);
947         if (st->codec->codec_id == CODEC_ID_AAC_LATM &&
948             mp4_dec_config_descr_len && mp4_es_id == pid) {
949             AVIOContext pb;
950             ffio_init_context(&pb, mp4_dec_config_descr,
951                           mp4_dec_config_descr_len, 0, NULL, NULL, NULL, NULL);
952             ff_mp4_read_dec_config_descr(fc, st, &pb);
953             if (st->codec->codec_id == CODEC_ID_AAC &&
954                 st->codec->extradata_size > 0)
955                 st->need_parsing = 0;
956         }
957         break;
958     case 0x56: /* DVB teletext descriptor */
959         language[0] = get8(pp, desc_end);
960         language[1] = get8(pp, desc_end);
961         language[2] = get8(pp, desc_end);
962         language[3] = 0;
963         av_dict_set(&st->metadata, "language", language, 0);
964         break;
965     case 0x59: /* subtitling descriptor */
966         language[0] = get8(pp, desc_end);
967         language[1] = get8(pp, desc_end);
968         language[2] = get8(pp, desc_end);
969         language[3] = 0;
970         /* hearing impaired subtitles detection */
971         switch(get8(pp, desc_end)) {
972         case 0x20: /* DVB subtitles (for the hard of hearing) with no monitor aspect ratio criticality */
973         case 0x21: /* DVB subtitles (for the hard of hearing) for display on 4:3 aspect ratio monitor */
974         case 0x22: /* DVB subtitles (for the hard of hearing) for display on 16:9 aspect ratio monitor */
975         case 0x23: /* DVB subtitles (for the hard of hearing) for display on 2.21:1 aspect ratio monitor */
976         case 0x24: /* DVB subtitles (for the hard of hearing) for display on a high definition monitor */
977         case 0x25: /* DVB subtitles (for the hard of hearing) with plano-stereoscopic disparity for display on a high definition monitor */
978             st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
979             break;
980         }
981         if (st->codec->extradata) {
982             if (st->codec->extradata_size == 4 && memcmp(st->codec->extradata, *pp, 4))
983                 av_log_ask_for_sample(fc, "DVB sub with multiple IDs\n");
984         } else {
985             st->codec->extradata = av_malloc(4 + FF_INPUT_BUFFER_PADDING_SIZE);
986             if (st->codec->extradata) {
987                 st->codec->extradata_size = 4;
988                 memcpy(st->codec->extradata, *pp, 4);
989             }
990         }
991         *pp += 4;
992         av_dict_set(&st->metadata, "language", language, 0);
993         break;
994     case 0x0a: /* ISO 639 language descriptor */
995         for (i = 0; i + 4 <= desc_len; i += 4) {
996             language[i + 0] = get8(pp, desc_end);
997             language[i + 1] = get8(pp, desc_end);
998             language[i + 2] = get8(pp, desc_end);
999             language[i + 3] = ',';
1000         switch (get8(pp, desc_end)) {
1001             case 0x01: st->disposition |= AV_DISPOSITION_CLEAN_EFFECTS; break;
1002             case 0x02: st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED; break;
1003             case 0x03: st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED; break;
1004         }
1005         }
1006         if (i) {
1007             language[i - 1] = 0;
1008             av_dict_set(&st->metadata, "language", language, 0);
1009         }
1010         break;
1011     case 0x05: /* registration descriptor */
1012         st->codec->codec_tag = bytestream_get_le32(pp);
1013         av_dlog(fc, "reg_desc=%.4s\n", (char*)&st->codec->codec_tag);
1014         if (st->codec->codec_id == CODEC_ID_NONE &&
1015             stream_type == STREAM_TYPE_PRIVATE_DATA)
1016             mpegts_find_stream_type(st, st->codec->codec_tag, REGD_types);
1017         break;
1018     case 0x52: /* stream identifier descriptor */
1019         st->stream_identifier = 1 + get8(pp, desc_end);
1020         break;
1021     default:
1022         break;
1023     }
1024     *pp = desc_end;
1025     return 0;
1026 }
1027
1028 static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1029 {
1030     MpegTSContext *ts = filter->u.section_filter.opaque;
1031     SectionHeader h1, *h = &h1;
1032     PESContext *pes;
1033     AVStream *st;
1034     const uint8_t *p, *p_end, *desc_list_end;
1035     int program_info_length, pcr_pid, pid, stream_type;
1036     int desc_list_len;
1037     uint32_t prog_reg_desc = 0; /* registration descriptor */
1038     uint8_t *mp4_dec_config_descr = NULL;
1039     int mp4_dec_config_descr_len = 0;
1040     int mp4_es_id = 0;
1041
1042     av_dlog(ts->stream, "PMT: len %i\n", section_len);
1043     hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
1044
1045     p_end = section + section_len - 4;
1046     p = section;
1047     if (parse_section_header(h, &p, p_end) < 0)
1048         return;
1049
1050     av_dlog(ts->stream, "sid=0x%x sec_num=%d/%d\n",
1051            h->id, h->sec_num, h->last_sec_num);
1052
1053     if (h->tid != PMT_TID)
1054         return;
1055
1056     clear_program(ts, h->id);
1057     pcr_pid = get16(&p, p_end) & 0x1fff;
1058     if (pcr_pid < 0)
1059         return;
1060     add_pid_to_pmt(ts, h->id, pcr_pid);
1061     set_pcr_pid(ts->stream, h->id, pcr_pid);
1062
1063     av_dlog(ts->stream, "pcr_pid=0x%x\n", pcr_pid);
1064
1065     program_info_length = get16(&p, p_end) & 0xfff;
1066     if (program_info_length < 0)
1067         return;
1068     while(program_info_length >= 2) {
1069         uint8_t tag, len;
1070         tag = get8(&p, p_end);
1071         len = get8(&p, p_end);
1072
1073         av_dlog(ts->stream, "program tag: 0x%02x len=%d\n", tag, len);
1074
1075         if(len > program_info_length - 2)
1076             //something else is broken, exit the program_descriptors_loop
1077             break;
1078         program_info_length -= len + 2;
1079         if (tag == 0x1d) { // IOD descriptor
1080             get8(&p, p_end); // scope
1081             get8(&p, p_end); // label
1082             len -= 2;
1083             mp4_read_iods(ts->stream, p, len, &mp4_es_id,
1084                           &mp4_dec_config_descr, &mp4_dec_config_descr_len);
1085         } else if (tag == 0x05 && len >= 4) { // registration descriptor
1086             prog_reg_desc = bytestream_get_le32(&p);
1087             len -= 4;
1088         }
1089         p += len;
1090     }
1091     p += program_info_length;
1092     if (p >= p_end)
1093         goto out;
1094
1095     // stop parsing after pmt, we found header
1096     if (!ts->stream->nb_streams)
1097         ts->stop_parse = 1;
1098
1099     for(;;) {
1100         st = 0;
1101         stream_type = get8(&p, p_end);
1102         if (stream_type < 0)
1103             break;
1104         pid = get16(&p, p_end) & 0x1fff;
1105         if (pid < 0)
1106             break;
1107
1108         /* now create ffmpeg stream */
1109         if (ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES) {
1110             pes = ts->pids[pid]->u.pes_filter.opaque;
1111             if (!pes->st)
1112                 pes->st = av_new_stream(pes->stream, pes->pid);
1113             st = pes->st;
1114         } else {
1115             if (ts->pids[pid]) mpegts_close_filter(ts, ts->pids[pid]); //wrongly added sdt filter probably
1116             pes = add_pes_stream(ts, pid, pcr_pid);
1117             if (pes)
1118                 st = av_new_stream(pes->stream, pes->pid);
1119         }
1120
1121         if (!st)
1122             goto out;
1123
1124         if (!pes->stream_type)
1125             mpegts_set_stream_info(st, pes, stream_type, prog_reg_desc);
1126
1127         add_pid_to_pmt(ts, h->id, pid);
1128
1129         ff_program_add_stream_index(ts->stream, h->id, st->index);
1130
1131         desc_list_len = get16(&p, p_end) & 0xfff;
1132         if (desc_list_len < 0)
1133             break;
1134         desc_list_end = p + desc_list_len;
1135         if (desc_list_end > p_end)
1136             break;
1137         for(;;) {
1138             if (ff_parse_mpeg2_descriptor(ts->stream, st, stream_type, &p, desc_list_end,
1139                 mp4_dec_config_descr_len, mp4_es_id, pid, mp4_dec_config_descr) < 0)
1140                 break;
1141
1142             if (prog_reg_desc == AV_RL32("HDMV") && stream_type == 0x83 && pes->sub_st) {
1143                 ff_program_add_stream_index(ts->stream, h->id, pes->sub_st->index);
1144                 pes->sub_st->codec->codec_tag = st->codec->codec_tag;
1145             }
1146         }
1147         p = desc_list_end;
1148     }
1149
1150  out:
1151     av_free(mp4_dec_config_descr);
1152 }
1153
1154 static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1155 {
1156     MpegTSContext *ts = filter->u.section_filter.opaque;
1157     SectionHeader h1, *h = &h1;
1158     const uint8_t *p, *p_end;
1159     int sid, pmt_pid;
1160     AVProgram *program;
1161
1162     av_dlog(ts->stream, "PAT:\n");
1163     hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
1164
1165     p_end = section + section_len - 4;
1166     p = section;
1167     if (parse_section_header(h, &p, p_end) < 0)
1168         return;
1169     if (h->tid != PAT_TID)
1170         return;
1171
1172     ts->stream->ts_id = h->id;
1173
1174     clear_programs(ts);
1175     for(;;) {
1176         sid = get16(&p, p_end);
1177         if (sid < 0)
1178             break;
1179         pmt_pid = get16(&p, p_end) & 0x1fff;
1180         if (pmt_pid < 0)
1181             break;
1182
1183         av_dlog(ts->stream, "sid=0x%x pid=0x%x\n", sid, pmt_pid);
1184
1185         if (sid == 0x0000) {
1186             /* NIT info */
1187         } else {
1188             program = av_new_program(ts->stream, sid);
1189             program->program_num = sid;
1190             program->pmt_pid = pmt_pid;
1191             if (ts->pids[pmt_pid])
1192                 mpegts_close_filter(ts, ts->pids[pmt_pid]);
1193             mpegts_open_section_filter(ts, pmt_pid, pmt_cb, ts, 1);
1194             add_pat_entry(ts, sid);
1195             add_pid_to_pmt(ts, sid, 0); //add pat pid to program
1196             add_pid_to_pmt(ts, sid, pmt_pid);
1197         }
1198     }
1199 }
1200
1201 static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1202 {
1203     MpegTSContext *ts = filter->u.section_filter.opaque;
1204     SectionHeader h1, *h = &h1;
1205     const uint8_t *p, *p_end, *desc_list_end, *desc_end;
1206     int onid, val, sid, desc_list_len, desc_tag, desc_len, service_type;
1207     char *name, *provider_name;
1208
1209     av_dlog(ts->stream, "SDT:\n");
1210     hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
1211
1212     p_end = section + section_len - 4;
1213     p = section;
1214     if (parse_section_header(h, &p, p_end) < 0)
1215         return;
1216     if (h->tid != SDT_TID)
1217         return;
1218     onid = get16(&p, p_end);
1219     if (onid < 0)
1220         return;
1221     val = get8(&p, p_end);
1222     if (val < 0)
1223         return;
1224     for(;;) {
1225         sid = get16(&p, p_end);
1226         if (sid < 0)
1227             break;
1228         val = get8(&p, p_end);
1229         if (val < 0)
1230             break;
1231         desc_list_len = get16(&p, p_end) & 0xfff;
1232         if (desc_list_len < 0)
1233             break;
1234         desc_list_end = p + desc_list_len;
1235         if (desc_list_end > p_end)
1236             break;
1237         for(;;) {
1238             desc_tag = get8(&p, desc_list_end);
1239             if (desc_tag < 0)
1240                 break;
1241             desc_len = get8(&p, desc_list_end);
1242             desc_end = p + desc_len;
1243             if (desc_end > desc_list_end)
1244                 break;
1245
1246             av_dlog(ts->stream, "tag: 0x%02x len=%d\n",
1247                    desc_tag, desc_len);
1248
1249             switch(desc_tag) {
1250             case 0x48:
1251                 service_type = get8(&p, p_end);
1252                 if (service_type < 0)
1253                     break;
1254                 provider_name = getstr8(&p, p_end);
1255                 if (!provider_name)
1256                     break;
1257                 name = getstr8(&p, p_end);
1258                 if (name) {
1259                     AVProgram *program = av_new_program(ts->stream, sid);
1260                     if(program) {
1261                         av_dict_set(&program->metadata, "service_name", name, 0);
1262                         av_dict_set(&program->metadata, "service_provider", provider_name, 0);
1263                     }
1264                 }
1265                 av_free(name);
1266                 av_free(provider_name);
1267                 break;
1268             default:
1269                 break;
1270             }
1271             p = desc_end;
1272         }
1273         p = desc_list_end;
1274     }
1275 }
1276
1277 /* handle one TS packet */
1278 static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
1279 {
1280     AVFormatContext *s = ts->stream;
1281     MpegTSFilter *tss;
1282     int len, pid, cc, expected_cc, cc_ok, afc, is_start, is_discontinuity,
1283         has_adaptation, has_payload;
1284     const uint8_t *p, *p_end;
1285     int64_t pos;
1286
1287     pid = AV_RB16(packet + 1) & 0x1fff;
1288     if(pid && discard_pid(ts, pid))
1289         return 0;
1290     is_start = packet[1] & 0x40;
1291     tss = ts->pids[pid];
1292     if (ts->auto_guess && tss == NULL && is_start) {
1293         add_pes_stream(ts, pid, -1);
1294         tss = ts->pids[pid];
1295     }
1296     if (!tss)
1297         return 0;
1298
1299     afc = (packet[3] >> 4) & 3;
1300     if (afc == 0) /* reserved value */
1301         return 0;
1302     has_adaptation = afc & 2;
1303     has_payload = afc & 1;
1304     is_discontinuity = has_adaptation
1305                 && packet[4] != 0 /* with length > 0 */
1306                 && (packet[5] & 0x80); /* and discontinuity indicated */
1307
1308     /* continuity check (currently not used) */
1309     cc = (packet[3] & 0xf);
1310     expected_cc = has_payload ? (tss->last_cc + 1) & 0x0f : tss->last_cc;
1311     cc_ok = pid == 0x1FFF // null packet PID
1312             || is_discontinuity
1313             || tss->last_cc < 0
1314             || expected_cc == cc;
1315
1316     tss->last_cc = cc;
1317     if (!cc_ok) {
1318         av_log(ts->stream, AV_LOG_WARNING, "Continuity Check Failed\n");
1319         if(tss->type == MPEGTS_PES) {
1320             PESContext *pc = tss->u.pes_filter.opaque;
1321             pc->flags |= AV_PKT_FLAG_CORRUPT;
1322         }
1323     }
1324
1325     if (!has_payload)
1326         return 0;
1327     p = packet + 4;
1328     if (has_adaptation) {
1329         /* skip adapation field */
1330         p += p[0] + 1;
1331     }
1332     /* if past the end of packet, ignore */
1333     p_end = packet + TS_PACKET_SIZE;
1334     if (p >= p_end)
1335         return 0;
1336
1337     pos = avio_tell(ts->stream->pb);
1338     ts->pos47= pos % ts->raw_packet_size;
1339
1340     if (tss->type == MPEGTS_SECTION) {
1341         if (is_start) {
1342             /* pointer field present */
1343             len = *p++;
1344             if (p + len > p_end)
1345                 return 0;
1346             if (len && cc_ok) {
1347                 /* write remaining section bytes */
1348                 write_section_data(s, tss,
1349                                    p, len, 0);
1350                 /* check whether filter has been closed */
1351                 if (!ts->pids[pid])
1352                     return 0;
1353             }
1354             p += len;
1355             if (p < p_end) {
1356                 write_section_data(s, tss,
1357                                    p, p_end - p, 1);
1358             }
1359         } else {
1360             if (cc_ok) {
1361                 write_section_data(s, tss,
1362                                    p, p_end - p, 0);
1363             }
1364         }
1365     } else {
1366         int ret;
1367         // Note: The position here points actually behind the current packet.
1368         if ((ret = tss->u.pes_filter.pes_cb(tss, p, p_end - p, is_start,
1369                                             pos - ts->raw_packet_size)) < 0)
1370             return ret;
1371     }
1372
1373     return 0;
1374 }
1375
1376 /* XXX: try to find a better synchro over several packets (use
1377    get_packet_size() ?) */
1378 static int mpegts_resync(AVFormatContext *s)
1379 {
1380     AVIOContext *pb = s->pb;
1381     int c, i;
1382
1383     for(i = 0;i < MAX_RESYNC_SIZE; i++) {
1384         c = avio_r8(pb);
1385         if (url_feof(pb))
1386             return -1;
1387         if (c == 0x47) {
1388             avio_seek(pb, -1, SEEK_CUR);
1389             return 0;
1390         }
1391     }
1392     av_log(s, AV_LOG_ERROR, "max resync size reached, could not find sync byte\n");
1393     /* no sync found */
1394     return -1;
1395 }
1396
1397 /* return -1 if error or EOF. Return 0 if OK. */
1398 static int read_packet(AVFormatContext *s, uint8_t *buf, int raw_packet_size)
1399 {
1400     AVIOContext *pb = s->pb;
1401     int skip, len;
1402
1403     for(;;) {
1404         len = avio_read(pb, buf, TS_PACKET_SIZE);
1405         if (len != TS_PACKET_SIZE)
1406             return len < 0 ? len : AVERROR_EOF;
1407         /* check paquet sync byte */
1408         if (buf[0] != 0x47) {
1409             /* find a new packet start */
1410             avio_seek(pb, -TS_PACKET_SIZE, SEEK_CUR);
1411             if (mpegts_resync(s) < 0)
1412                 return AVERROR(EAGAIN);
1413             else
1414                 continue;
1415         } else {
1416             skip = raw_packet_size - TS_PACKET_SIZE;
1417             if (skip > 0)
1418                 avio_skip(pb, skip);
1419             break;
1420         }
1421     }
1422     return 0;
1423 }
1424
1425 static int handle_packets(MpegTSContext *ts, int nb_packets)
1426 {
1427     AVFormatContext *s = ts->stream;
1428     uint8_t packet[TS_PACKET_SIZE];
1429     int packet_num, ret = 0;
1430
1431     if (avio_tell(s->pb) != ts->last_pos) {
1432         int i;
1433 //        av_dlog("Skipping after seek\n");
1434         /* seek detected, flush pes buffer */
1435         for (i = 0; i < NB_PID_MAX; i++) {
1436             if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
1437                 PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
1438                 av_freep(&pes->buffer);
1439                 ts->pids[i]->last_cc = -1;
1440                 pes->data_index = 0;
1441                 pes->state = MPEGTS_SKIP; /* skip until pes header */
1442             }
1443         }
1444     }
1445
1446     ts->stop_parse = 0;
1447     packet_num = 0;
1448     for(;;) {
1449         if (ts->stop_parse>0)
1450             break;
1451         packet_num++;
1452         if (nb_packets != 0 && packet_num >= nb_packets)
1453             break;
1454         ret = read_packet(s, packet, ts->raw_packet_size);
1455         if (ret != 0)
1456             break;
1457         ret = handle_packet(ts, packet);
1458         if (ret != 0)
1459             break;
1460     }
1461     ts->last_pos = avio_tell(s->pb);
1462     return ret;
1463 }
1464
1465 static int mpegts_probe(AVProbeData *p)
1466 {
1467 #if 1
1468     const int size= p->buf_size;
1469     int score, fec_score, dvhs_score;
1470     int check_count= size / TS_FEC_PACKET_SIZE;
1471 #define CHECK_COUNT 10
1472
1473     if (check_count < CHECK_COUNT)
1474         return -1;
1475
1476     score     = analyze(p->buf, TS_PACKET_SIZE     *check_count, TS_PACKET_SIZE     , NULL)*CHECK_COUNT/check_count;
1477     dvhs_score= analyze(p->buf, TS_DVHS_PACKET_SIZE*check_count, TS_DVHS_PACKET_SIZE, NULL)*CHECK_COUNT/check_count;
1478     fec_score = analyze(p->buf, TS_FEC_PACKET_SIZE *check_count, TS_FEC_PACKET_SIZE , NULL)*CHECK_COUNT/check_count;
1479 //    av_log(NULL, AV_LOG_DEBUG, "score: %d, dvhs_score: %d, fec_score: %d \n", score, dvhs_score, fec_score);
1480
1481 // we need a clear definition for the returned score otherwise things will become messy sooner or later
1482     if     (score > fec_score && score > dvhs_score && score > 6) return AVPROBE_SCORE_MAX + score     - CHECK_COUNT;
1483     else if(dvhs_score > score && dvhs_score > fec_score && dvhs_score > 6) return AVPROBE_SCORE_MAX + dvhs_score  - CHECK_COUNT;
1484     else if(                 fec_score > 6) return AVPROBE_SCORE_MAX + fec_score - CHECK_COUNT;
1485     else                                    return -1;
1486 #else
1487     /* only use the extension for safer guess */
1488     if (av_match_ext(p->filename, "ts"))
1489         return AVPROBE_SCORE_MAX;
1490     else
1491         return 0;
1492 #endif
1493 }
1494
1495 /* return the 90kHz PCR and the extension for the 27MHz PCR. return
1496    (-1) if not available */
1497 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
1498                      const uint8_t *packet)
1499 {
1500     int afc, len, flags;
1501     const uint8_t *p;
1502     unsigned int v;
1503
1504     afc = (packet[3] >> 4) & 3;
1505     if (afc <= 1)
1506         return -1;
1507     p = packet + 4;
1508     len = p[0];
1509     p++;
1510     if (len == 0)
1511         return -1;
1512     flags = *p++;
1513     len--;
1514     if (!(flags & 0x10))
1515         return -1;
1516     if (len < 6)
1517         return -1;
1518     v = AV_RB32(p);
1519     *ppcr_high = ((int64_t)v << 1) | (p[4] >> 7);
1520     *ppcr_low = ((p[4] & 1) << 8) | p[5];
1521     return 0;
1522 }
1523
1524 static int mpegts_read_header(AVFormatContext *s,
1525                               AVFormatParameters *ap)
1526 {
1527     MpegTSContext *ts = s->priv_data;
1528     AVIOContext *pb = s->pb;
1529     uint8_t buf[8*1024];
1530     int len;
1531     int64_t pos;
1532
1533     /* read the first 1024 bytes to get packet size */
1534     pos = avio_tell(pb);
1535     len = avio_read(pb, buf, sizeof(buf));
1536     if (len != sizeof(buf))
1537         goto fail;
1538     ts->raw_packet_size = get_packet_size(buf, sizeof(buf));
1539     if (ts->raw_packet_size <= 0) {
1540         av_log(s, AV_LOG_WARNING, "Could not detect TS packet size, defaulting to non-FEC/DVHS\n");
1541         ts->raw_packet_size = TS_PACKET_SIZE;
1542     }
1543     ts->stream = s;
1544     ts->auto_guess = 0;
1545
1546     if (s->iformat == &ff_mpegts_demuxer) {
1547         /* normal demux */
1548
1549         /* first do a scaning to get all the services */
1550         if (pb->seekable && avio_seek(pb, pos, SEEK_SET) < 0)
1551             av_log(s, AV_LOG_ERROR, "Unable to seek back to the start\n");
1552
1553         mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
1554
1555         mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
1556
1557         handle_packets(ts, s->probesize / ts->raw_packet_size);
1558         /* if could not find service, enable auto_guess */
1559
1560         ts->auto_guess = 1;
1561
1562         av_dlog(ts->stream, "tuning done\n");
1563
1564         s->ctx_flags |= AVFMTCTX_NOHEADER;
1565     } else {
1566         AVStream *st;
1567         int pcr_pid, pid, nb_packets, nb_pcrs, ret, pcr_l;
1568         int64_t pcrs[2], pcr_h;
1569         int packet_count[2];
1570         uint8_t packet[TS_PACKET_SIZE];
1571
1572         /* only read packets */
1573
1574         st = av_new_stream(s, 0);
1575         if (!st)
1576             goto fail;
1577         av_set_pts_info(st, 60, 1, 27000000);
1578         st->codec->codec_type = AVMEDIA_TYPE_DATA;
1579         st->codec->codec_id = CODEC_ID_MPEG2TS;
1580
1581         /* we iterate until we find two PCRs to estimate the bitrate */
1582         pcr_pid = -1;
1583         nb_pcrs = 0;
1584         nb_packets = 0;
1585         for(;;) {
1586             ret = read_packet(s, packet, ts->raw_packet_size);
1587             if (ret < 0)
1588                 return -1;
1589             pid = AV_RB16(packet + 1) & 0x1fff;
1590             if ((pcr_pid == -1 || pcr_pid == pid) &&
1591                 parse_pcr(&pcr_h, &pcr_l, packet) == 0) {
1592                 pcr_pid = pid;
1593                 packet_count[nb_pcrs] = nb_packets;
1594                 pcrs[nb_pcrs] = pcr_h * 300 + pcr_l;
1595                 nb_pcrs++;
1596                 if (nb_pcrs >= 2)
1597                     break;
1598             }
1599             nb_packets++;
1600         }
1601
1602         /* NOTE1: the bitrate is computed without the FEC */
1603         /* NOTE2: it is only the bitrate of the start of the stream */
1604         ts->pcr_incr = (pcrs[1] - pcrs[0]) / (packet_count[1] - packet_count[0]);
1605         ts->cur_pcr = pcrs[0] - ts->pcr_incr * packet_count[0];
1606         s->bit_rate = (TS_PACKET_SIZE * 8) * 27e6 / ts->pcr_incr;
1607         st->codec->bit_rate = s->bit_rate;
1608         st->start_time = ts->cur_pcr;
1609         av_dlog(ts->stream, "start=%0.3f pcr=%0.3f incr=%d\n",
1610                 st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr);
1611     }
1612
1613     avio_seek(pb, pos, SEEK_SET);
1614     return 0;
1615  fail:
1616     return -1;
1617 }
1618
1619 #define MAX_PACKET_READAHEAD ((128 * 1024) / 188)
1620
1621 static int mpegts_raw_read_packet(AVFormatContext *s,
1622                                   AVPacket *pkt)
1623 {
1624     MpegTSContext *ts = s->priv_data;
1625     int ret, i;
1626     int64_t pcr_h, next_pcr_h, pos;
1627     int pcr_l, next_pcr_l;
1628     uint8_t pcr_buf[12];
1629
1630     if (av_new_packet(pkt, TS_PACKET_SIZE) < 0)
1631         return AVERROR(ENOMEM);
1632     pkt->pos= avio_tell(s->pb);
1633     ret = read_packet(s, pkt->data, ts->raw_packet_size);
1634     if (ret < 0) {
1635         av_free_packet(pkt);
1636         return ret;
1637     }
1638     if (ts->mpeg2ts_compute_pcr) {
1639         /* compute exact PCR for each packet */
1640         if (parse_pcr(&pcr_h, &pcr_l, pkt->data) == 0) {
1641             /* we read the next PCR (XXX: optimize it by using a bigger buffer */
1642             pos = avio_tell(s->pb);
1643             for(i = 0; i < MAX_PACKET_READAHEAD; i++) {
1644                 avio_seek(s->pb, pos + i * ts->raw_packet_size, SEEK_SET);
1645                 avio_read(s->pb, pcr_buf, 12);
1646                 if (parse_pcr(&next_pcr_h, &next_pcr_l, pcr_buf) == 0) {
1647                     /* XXX: not precise enough */
1648                     ts->pcr_incr = ((next_pcr_h - pcr_h) * 300 + (next_pcr_l - pcr_l)) /
1649                         (i + 1);
1650                     break;
1651                 }
1652             }
1653             avio_seek(s->pb, pos, SEEK_SET);
1654             /* no next PCR found: we use previous increment */
1655             ts->cur_pcr = pcr_h * 300 + pcr_l;
1656         }
1657         pkt->pts = ts->cur_pcr;
1658         pkt->duration = ts->pcr_incr;
1659         ts->cur_pcr += ts->pcr_incr;
1660     }
1661     pkt->stream_index = 0;
1662     return 0;
1663 }
1664
1665 static int mpegts_read_packet(AVFormatContext *s,
1666                               AVPacket *pkt)
1667 {
1668     MpegTSContext *ts = s->priv_data;
1669     int ret, i;
1670
1671     ts->pkt = pkt;
1672     ret = handle_packets(ts, 0);
1673     if (ret < 0) {
1674         /* flush pes data left */
1675         for (i = 0; i < NB_PID_MAX; i++) {
1676             if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
1677                 PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
1678                 if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
1679                     new_pes_packet(pes, pkt);
1680                     pes->state = MPEGTS_SKIP;
1681                     ret = 0;
1682                     break;
1683                 }
1684             }
1685         }
1686     }
1687
1688     return ret;
1689 }
1690
1691 static int mpegts_read_close(AVFormatContext *s)
1692 {
1693     MpegTSContext *ts = s->priv_data;
1694     int i;
1695
1696     clear_programs(ts);
1697
1698     for(i=0;i<NB_PID_MAX;i++)
1699         if (ts->pids[i]) mpegts_close_filter(ts, ts->pids[i]);
1700
1701     return 0;
1702 }
1703
1704 static int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
1705                               int64_t *ppos, int64_t pos_limit)
1706 {
1707     MpegTSContext *ts = s->priv_data;
1708     int64_t pos, timestamp;
1709     uint8_t buf[TS_PACKET_SIZE];
1710     int pcr_l, pcr_pid = ((PESContext*)s->streams[stream_index]->priv_data)->pcr_pid;
1711     const int find_next= 1;
1712     pos = ((*ppos  + ts->raw_packet_size - 1 - ts->pos47) / ts->raw_packet_size) * ts->raw_packet_size + ts->pos47;
1713     if (find_next) {
1714         for(;;) {
1715             avio_seek(s->pb, pos, SEEK_SET);
1716             if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
1717                 return AV_NOPTS_VALUE;
1718             if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
1719                 parse_pcr(&timestamp, &pcr_l, buf) == 0) {
1720                 break;
1721             }
1722             pos += ts->raw_packet_size;
1723         }
1724     } else {
1725         for(;;) {
1726             pos -= ts->raw_packet_size;
1727             if (pos < 0)
1728                 return AV_NOPTS_VALUE;
1729             avio_seek(s->pb, pos, SEEK_SET);
1730             if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
1731                 return AV_NOPTS_VALUE;
1732             if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
1733                 parse_pcr(&timestamp, &pcr_l, buf) == 0) {
1734                 break;
1735             }
1736         }
1737     }
1738     *ppos = pos;
1739
1740     return timestamp;
1741 }
1742
1743 #ifdef USE_SYNCPOINT_SEARCH
1744
1745 static int read_seek2(AVFormatContext *s,
1746                       int stream_index,
1747                       int64_t min_ts,
1748                       int64_t target_ts,
1749                       int64_t max_ts,
1750                       int flags)
1751 {
1752     int64_t pos;
1753
1754     int64_t ts_ret, ts_adj;
1755     int stream_index_gen_search;
1756     AVStream *st;
1757     AVParserState *backup;
1758
1759     backup = ff_store_parser_state(s);
1760
1761     // detect direction of seeking for search purposes
1762     flags |= (target_ts - min_ts > (uint64_t)(max_ts - target_ts)) ?
1763              AVSEEK_FLAG_BACKWARD : 0;
1764
1765     if (flags & AVSEEK_FLAG_BYTE) {
1766         // use position directly, we will search starting from it
1767         pos = target_ts;
1768     } else {
1769         // search for some position with good timestamp match
1770         if (stream_index < 0) {
1771             stream_index_gen_search = av_find_default_stream_index(s);
1772             if (stream_index_gen_search < 0) {
1773                 ff_restore_parser_state(s, backup);
1774                 return -1;
1775             }
1776
1777             st = s->streams[stream_index_gen_search];
1778             // timestamp for default must be expressed in AV_TIME_BASE units
1779             ts_adj = av_rescale(target_ts,
1780                                 st->time_base.den,
1781                                 AV_TIME_BASE * (int64_t)st->time_base.num);
1782         } else {
1783             ts_adj = target_ts;
1784             stream_index_gen_search = stream_index;
1785         }
1786         pos = av_gen_search(s, stream_index_gen_search, ts_adj,
1787                             0, INT64_MAX, -1,
1788                             AV_NOPTS_VALUE,
1789                             AV_NOPTS_VALUE,
1790                             flags, &ts_ret, mpegts_get_pcr);
1791         if (pos < 0) {
1792             ff_restore_parser_state(s, backup);
1793             return -1;
1794         }
1795     }
1796
1797     // search for actual matching keyframe/starting position for all streams
1798     if (ff_gen_syncpoint_search(s, stream_index, pos,
1799                                 min_ts, target_ts, max_ts,
1800                                 flags) < 0) {
1801         ff_restore_parser_state(s, backup);
1802         return -1;
1803     }
1804
1805     ff_free_parser_state(s, backup);
1806     return 0;
1807 }
1808
1809 static int read_seek(AVFormatContext *s, int stream_index, int64_t target_ts, int flags)
1810 {
1811     int ret;
1812     if (flags & AVSEEK_FLAG_BACKWARD) {
1813         flags &= ~AVSEEK_FLAG_BACKWARD;
1814         ret = read_seek2(s, stream_index, INT64_MIN, target_ts, target_ts, flags);
1815         if (ret < 0)
1816             // for compatibility reasons, seek to the best-fitting timestamp
1817             ret = read_seek2(s, stream_index, INT64_MIN, target_ts, INT64_MAX, flags);
1818     } else {
1819         ret = read_seek2(s, stream_index, target_ts, target_ts, INT64_MAX, flags);
1820         if (ret < 0)
1821             // for compatibility reasons, seek to the best-fitting timestamp
1822             ret = read_seek2(s, stream_index, INT64_MIN, target_ts, INT64_MAX, flags);
1823     }
1824     return ret;
1825 }
1826
1827 #else
1828
1829 static int read_seek(AVFormatContext *s, int stream_index, int64_t target_ts, int flags){
1830     MpegTSContext *ts = s->priv_data;
1831     uint8_t buf[TS_PACKET_SIZE];
1832     int64_t pos;
1833
1834     if(av_seek_frame_binary(s, stream_index, target_ts, flags) < 0)
1835         return -1;
1836
1837     pos= avio_tell(s->pb);
1838
1839     for(;;) {
1840         avio_seek(s->pb, pos, SEEK_SET);
1841         if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
1842             return -1;
1843 //        pid = AV_RB16(buf + 1) & 0x1fff;
1844         if(buf[1] & 0x40) break;
1845         pos += ts->raw_packet_size;
1846     }
1847     avio_seek(s->pb, pos, SEEK_SET);
1848
1849     return 0;
1850 }
1851
1852 #endif
1853
1854 /**************************************************************/
1855 /* parsing functions - called from other demuxers such as RTP */
1856
1857 MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s)
1858 {
1859     MpegTSContext *ts;
1860
1861     ts = av_mallocz(sizeof(MpegTSContext));
1862     if (!ts)
1863         return NULL;
1864     /* no stream case, currently used by RTP */
1865     ts->raw_packet_size = TS_PACKET_SIZE;
1866     ts->stream = s;
1867     ts->auto_guess = 1;
1868     return ts;
1869 }
1870
1871 /* return the consumed length if a packet was output, or -1 if no
1872    packet is output */
1873 int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
1874                         const uint8_t *buf, int len)
1875 {
1876     int len1;
1877
1878     len1 = len;
1879     ts->pkt = pkt;
1880     ts->stop_parse = 0;
1881     for(;;) {
1882         if (ts->stop_parse>0)
1883             break;
1884         if (len < TS_PACKET_SIZE)
1885             return -1;
1886         if (buf[0] != 0x47) {
1887             buf++;
1888             len--;
1889         } else {
1890             handle_packet(ts, buf);
1891             buf += TS_PACKET_SIZE;
1892             len -= TS_PACKET_SIZE;
1893         }
1894     }
1895     return len1 - len;
1896 }
1897
1898 void ff_mpegts_parse_close(MpegTSContext *ts)
1899 {
1900     int i;
1901
1902     for(i=0;i<NB_PID_MAX;i++)
1903         av_free(ts->pids[i]);
1904     av_free(ts);
1905 }
1906
1907 AVInputFormat ff_mpegts_demuxer = {
1908     .name           = "mpegts",
1909     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 transport stream format"),
1910     .priv_data_size = sizeof(MpegTSContext),
1911     .read_probe     = mpegts_probe,
1912     .read_header    = mpegts_read_header,
1913     .read_packet    = mpegts_read_packet,
1914     .read_close     = mpegts_read_close,
1915     .read_seek      = read_seek,
1916     .read_timestamp = mpegts_get_pcr,
1917     .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
1918 #ifdef USE_SYNCPOINT_SEARCH
1919     .read_seek2 = read_seek2,
1920 #endif
1921 };
1922
1923 AVInputFormat ff_mpegtsraw_demuxer = {
1924     .name           = "mpegtsraw",
1925     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 raw transport stream format"),
1926     .priv_data_size = sizeof(MpegTSContext),
1927     .read_header    = mpegts_read_header,
1928     .read_packet    = mpegts_raw_read_packet,
1929     .read_close     = mpegts_read_close,
1930     .read_seek      = read_seek,
1931     .read_timestamp = mpegts_get_pcr,
1932     .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
1933 #ifdef USE_SYNCPOINT_SEARCH
1934     .read_seek2 = read_seek2,
1935 #endif
1936     .priv_class = &mpegtsraw_class,
1937 };