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