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