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