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