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