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