]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/mpegts.c
50d1ffa57b72337da23b5b7bcf3118c8d514665c
[frescor/ffmpeg.git] / libavformat / mpegts.c
1 /*
2  * MPEG2 transport stream (aka DVB) demuxer
3  * Copyright (c) 2002-2003 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/crc.h"
23 #include "libavutil/intreadwrite.h"
24 #include "libavcodec/bytestream.h"
25 #include "avformat.h"
26 #include "mpegts.h"
27 #include "internal.h"
28
29 //#define DEBUG_SI
30 //#define DEBUG_SEEK
31
32 /* 1.0 second at 24Mbit/s */
33 #define MAX_SCAN_PACKETS 32000
34
35 /* maximum size in which we look for synchronisation if
36    synchronisation is lost */
37 #define MAX_RESYNC_SIZE 4096
38 #define REGISTRATION_DESCRIPTOR 5
39
40 typedef struct PESContext PESContext;
41
42 static PESContext* add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid, int stream_type);
43 static AVStream* new_pes_av_stream(PESContext *pes, uint32_t code);
44
45 enum MpegTSFilterType {
46     MPEGTS_PES,
47     MPEGTS_SECTION,
48 };
49
50 typedef struct MpegTSFilter MpegTSFilter;
51
52 typedef void PESCallback(MpegTSFilter *f, const uint8_t *buf, int len, int is_start, int64_t pos);
53
54 typedef struct MpegTSPESFilter {
55     PESCallback *pes_cb;
56     void *opaque;
57 } MpegTSPESFilter;
58
59 typedef void SectionCallback(MpegTSFilter *f, const uint8_t *buf, int len);
60
61 typedef void SetServiceCallback(void *opaque, int ret);
62
63 typedef struct MpegTSSectionFilter {
64     int section_index;
65     int section_h_size;
66     uint8_t *section_buf;
67     unsigned int check_crc:1;
68     unsigned int end_of_section_reached:1;
69     SectionCallback *section_cb;
70     void *opaque;
71 } MpegTSSectionFilter;
72
73 struct MpegTSFilter {
74     int pid;
75     int last_cc; /* last cc code (-1 if first packet) */
76     enum MpegTSFilterType type;
77     union {
78         MpegTSPESFilter pes_filter;
79         MpegTSSectionFilter section_filter;
80     } u;
81 };
82
83 #define MAX_PIDS_PER_PROGRAM 64
84 struct Program {
85     unsigned int id; //program id/service id
86     unsigned int nb_pids;
87     unsigned int pids[MAX_PIDS_PER_PROGRAM];
88 };
89
90 struct MpegTSContext {
91     /* user data */
92     AVFormatContext *stream;
93     /** raw packet size, including FEC if present            */
94     int raw_packet_size;
95
96     int pos47;
97
98     /** if true, all pids are analyzed to find streams       */
99     int auto_guess;
100
101     /** compute exact PCR for each transport stream packet   */
102     int mpeg2ts_compute_pcr;
103
104     int64_t cur_pcr;    /**< used to estimate the exact PCR  */
105     int pcr_incr;       /**< used to estimate the exact PCR  */
106
107     /* data needed to handle file based ts */
108     /** stop parsing loop                                    */
109     int stop_parse;
110     /** packet containing Audio/Video data                   */
111     AVPacket *pkt;
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_FILL,
130     MPEGTS_PAYLOAD,
131     MPEGTS_SKIP,
132 };
133
134 /* enough for PES header + length */
135 #define PES_START_SIZE 9
136 #define MAX_PES_HEADER_SIZE (9 + 255)
137
138 struct PESContext {
139     int pid;
140     int pcr_pid; /**< if -1 then all packets containing PCR are considered */
141     int stream_type;
142     MpegTSContext *ts;
143     AVFormatContext *stream;
144     AVStream *st;
145     enum MpegTSState state;
146     /* used to get the format */
147     int data_index;
148     int total_size;
149     int pes_header_size;
150     int64_t pts, dts;
151     int64_t ts_packet_pos; /**< position of first TS packet of this PES packet */
152     uint8_t header[MAX_PES_HEADER_SIZE];
153 };
154
155 extern AVInputFormat mpegts_demuxer;
156
157 static void clear_program(MpegTSContext *ts, unsigned int programid)
158 {
159     int i;
160
161     for(i=0; i<ts->nb_prg; i++)
162         if(ts->prg[i].id == programid)
163             ts->prg[i].nb_pids = 0;
164 }
165
166 static void clear_programs(MpegTSContext *ts)
167 {
168     av_freep(&ts->prg);
169     ts->nb_prg=0;
170 }
171
172 static void add_pat_entry(MpegTSContext *ts, unsigned int programid)
173 {
174     struct Program *p;
175     void *tmp = av_realloc(ts->prg, (ts->nb_prg+1)*sizeof(struct Program));
176     if(!tmp)
177         return;
178     ts->prg = tmp;
179     p = &ts->prg[ts->nb_prg];
180     p->id = programid;
181     p->nb_pids = 0;
182     ts->nb_prg++;
183 }
184
185 static void add_pid_to_pmt(MpegTSContext *ts, unsigned int programid, unsigned int pid)
186 {
187     int i;
188     struct Program *p = NULL;
189     for(i=0; i<ts->nb_prg; i++) {
190         if(ts->prg[i].id == programid) {
191             p = &ts->prg[i];
192             break;
193         }
194     }
195     if(!p)
196         return;
197
198     if(p->nb_pids >= MAX_PIDS_PER_PROGRAM)
199         return;
200     p->pids[p->nb_pids++] = pid;
201 }
202
203 /**
204  * \brief discard_pid() decides if the pid is to be discarded according
205  *                      to caller's programs selection
206  * \param ts    : - TS context
207  * \param pid   : - pid
208  * \return 1 if the pid is only comprised in programs that have .discard=AVDISCARD_ALL
209  *         0 otherwise
210  */
211 static int discard_pid(MpegTSContext *ts, unsigned int pid)
212 {
213     int i, j, k;
214     int used = 0, discarded = 0;
215     struct Program *p;
216     for(i=0; i<ts->nb_prg; i++) {
217         p = &ts->prg[i];
218         for(j=0; j<p->nb_pids; j++) {
219             if(p->pids[j] != pid)
220                 continue;
221             //is program with id p->id set to be discarded?
222             for(k=0; k<ts->stream->nb_programs; k++) {
223                 if(ts->stream->programs[k]->id == p->id) {
224                     if(ts->stream->programs[k]->discard == AVDISCARD_ALL)
225                         discarded++;
226                     else
227                         used++;
228                 }
229             }
230         }
231     }
232
233     return !used && discarded;
234 }
235
236 /**
237  *  Assembles PES packets out of TS packets, and then calls the "section_cb"
238  *  function when they are complete.
239  */
240 static void write_section_data(AVFormatContext *s, MpegTSFilter *tss1,
241                                const uint8_t *buf, int buf_size, int is_start)
242 {
243     MpegTSSectionFilter *tss = &tss1->u.section_filter;
244     int len;
245
246     if (is_start) {
247         memcpy(tss->section_buf, buf, buf_size);
248         tss->section_index = buf_size;
249         tss->section_h_size = -1;
250         tss->end_of_section_reached = 0;
251     } else {
252         if (tss->end_of_section_reached)
253             return;
254         len = 4096 - tss->section_index;
255         if (buf_size < len)
256             len = buf_size;
257         memcpy(tss->section_buf + tss->section_index, buf, len);
258         tss->section_index += len;
259     }
260
261     /* compute section length if possible */
262     if (tss->section_h_size == -1 && tss->section_index >= 3) {
263         len = (AV_RB16(tss->section_buf + 1) & 0xfff) + 3;
264         if (len > 4096)
265             return;
266         tss->section_h_size = len;
267     }
268
269     if (tss->section_h_size != -1 && tss->section_index >= tss->section_h_size) {
270         tss->end_of_section_reached = 1;
271         if (!tss->check_crc ||
272             av_crc(av_crc_get_table(AV_CRC_32_IEEE), -1,
273                    tss->section_buf, tss->section_h_size) == 0)
274             tss->section_cb(tss1, tss->section_buf, tss->section_h_size);
275     }
276 }
277
278 static MpegTSFilter *mpegts_open_section_filter(MpegTSContext *ts, unsigned int pid,
279                                          SectionCallback *section_cb, void *opaque,
280                                          int check_crc)
281
282 {
283     MpegTSFilter *filter;
284     MpegTSSectionFilter *sec;
285
286 #ifdef DEBUG_SI
287     av_log(ts->stream, AV_LOG_DEBUG, "Filter: pid=0x%x\n", pid);
288 #endif
289     if (pid >= NB_PID_MAX || ts->pids[pid])
290         return NULL;
291     filter = av_mallocz(sizeof(MpegTSFilter));
292     if (!filter)
293         return NULL;
294     ts->pids[pid] = filter;
295     filter->type = MPEGTS_SECTION;
296     filter->pid = pid;
297     filter->last_cc = -1;
298     sec = &filter->u.section_filter;
299     sec->section_cb = section_cb;
300     sec->opaque = opaque;
301     sec->section_buf = av_malloc(MAX_SECTION_SIZE);
302     sec->check_crc = check_crc;
303     if (!sec->section_buf) {
304         av_free(filter);
305         return NULL;
306     }
307     return filter;
308 }
309
310 static MpegTSFilter *mpegts_open_pes_filter(MpegTSContext *ts, unsigned int pid,
311                                      PESCallback *pes_cb,
312                                      void *opaque)
313 {
314     MpegTSFilter *filter;
315     MpegTSPESFilter *pes;
316
317     if (pid >= NB_PID_MAX || ts->pids[pid])
318         return NULL;
319     filter = av_mallocz(sizeof(MpegTSFilter));
320     if (!filter)
321         return NULL;
322     ts->pids[pid] = filter;
323     filter->type = MPEGTS_PES;
324     filter->pid = pid;
325     filter->last_cc = -1;
326     pes = &filter->u.pes_filter;
327     pes->pes_cb = pes_cb;
328     pes->opaque = opaque;
329     return filter;
330 }
331
332 static void mpegts_close_filter(MpegTSContext *ts, MpegTSFilter *filter)
333 {
334     int pid;
335
336     pid = filter->pid;
337     if (filter->type == MPEGTS_SECTION)
338         av_freep(&filter->u.section_filter.section_buf);
339     else if (filter->type == MPEGTS_PES) {
340         /* referenced private data will be freed later in
341          * av_close_input_stream */
342         if (!((PESContext *)filter->u.pes_filter.opaque)->st) {
343             av_freep(&filter->u.pes_filter.opaque);
344         }
345     }
346
347     av_free(filter);
348     ts->pids[pid] = NULL;
349 }
350
351 static int analyze(const uint8_t *buf, int size, int packet_size, int *index){
352     int stat[packet_size];
353     int i;
354     int x=0;
355     int best_score=0;
356
357     memset(stat, 0, packet_size*sizeof(int));
358
359     for(x=i=0; i<size-3; i++){
360         if(buf[i] == 0x47 && !(buf[i+1] & 0x80) && (buf[i+3] & 0x30)){
361             stat[x]++;
362             if(stat[x] > best_score){
363                 best_score= stat[x];
364                 if(index) *index= x;
365             }
366         }
367
368         x++;
369         if(x == packet_size) x= 0;
370     }
371
372     return best_score;
373 }
374
375 /* autodetect fec presence. Must have at least 1024 bytes  */
376 static int get_packet_size(const uint8_t *buf, int size)
377 {
378     int score, fec_score, dvhs_score;
379
380     if (size < (TS_FEC_PACKET_SIZE * 5 + 1))
381         return -1;
382
383     score    = analyze(buf, size, TS_PACKET_SIZE, NULL);
384     dvhs_score    = analyze(buf, size, TS_DVHS_PACKET_SIZE, NULL);
385     fec_score= analyze(buf, size, TS_FEC_PACKET_SIZE, NULL);
386 //    av_log(NULL, AV_LOG_DEBUG, "score: %d, dvhs_score: %d, fec_score: %d \n", score, dvhs_score, fec_score);
387
388     if     (score > fec_score && score > dvhs_score) return TS_PACKET_SIZE;
389     else if(dvhs_score > score && dvhs_score > fec_score) return TS_DVHS_PACKET_SIZE;
390     else if(score < fec_score && dvhs_score < fec_score) return TS_FEC_PACKET_SIZE;
391     else                       return -1;
392 }
393
394 typedef struct SectionHeader {
395     uint8_t tid;
396     uint16_t id;
397     uint8_t version;
398     uint8_t sec_num;
399     uint8_t last_sec_num;
400 } SectionHeader;
401
402 static inline int get8(const uint8_t **pp, const uint8_t *p_end)
403 {
404     const uint8_t *p;
405     int c;
406
407     p = *pp;
408     if (p >= p_end)
409         return -1;
410     c = *p++;
411     *pp = p;
412     return c;
413 }
414
415 static inline int get16(const uint8_t **pp, const uint8_t *p_end)
416 {
417     const uint8_t *p;
418     int c;
419
420     p = *pp;
421     if ((p + 1) >= p_end)
422         return -1;
423     c = AV_RB16(p);
424     p += 2;
425     *pp = p;
426     return c;
427 }
428
429 /* read and allocate a DVB string preceeded by its length */
430 static char *getstr8(const uint8_t **pp, const uint8_t *p_end)
431 {
432     int len;
433     const uint8_t *p;
434     char *str;
435
436     p = *pp;
437     len = get8(&p, p_end);
438     if (len < 0)
439         return NULL;
440     if ((p + len) > p_end)
441         return NULL;
442     str = av_malloc(len + 1);
443     if (!str)
444         return NULL;
445     memcpy(str, p, len);
446     str[len] = '\0';
447     p += len;
448     *pp = p;
449     return str;
450 }
451
452 static int parse_section_header(SectionHeader *h,
453                                 const uint8_t **pp, const uint8_t *p_end)
454 {
455     int val;
456
457     val = get8(pp, p_end);
458     if (val < 0)
459         return -1;
460     h->tid = val;
461     *pp += 2;
462     val = get16(pp, p_end);
463     if (val < 0)
464         return -1;
465     h->id = val;
466     val = get8(pp, p_end);
467     if (val < 0)
468         return -1;
469     h->version = (val >> 1) & 0x1f;
470     val = get8(pp, p_end);
471     if (val < 0)
472         return -1;
473     h->sec_num = val;
474     val = get8(pp, p_end);
475     if (val < 0)
476         return -1;
477     h->last_sec_num = val;
478     return 0;
479 }
480
481
482 static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
483 {
484     MpegTSContext *ts = filter->u.section_filter.opaque;
485     SectionHeader h1, *h = &h1;
486     PESContext *pes;
487     AVStream *st;
488     const uint8_t *p, *p_end, *desc_list_end, *desc_end;
489     int program_info_length, pcr_pid, pid, stream_type;
490     int desc_list_len, desc_len, desc_tag;
491     int comp_page = 0, anc_page = 0; /* initialize to kill warnings */
492     char language[4] = {0}; /* initialize to kill warnings */
493     int has_hdmv_descr = 0;
494     int has_dirac_descr = 0;
495     uint32_t reg_desc = 0; /* registration descriptor */
496
497 #ifdef DEBUG_SI
498     av_log(ts->stream, AV_LOG_DEBUG, "PMT: len %i\n", section_len);
499     av_hex_dump_log(ts->stream, AV_LOG_DEBUG, (uint8_t *)section, section_len);
500 #endif
501     p_end = section + section_len - 4;
502     p = section;
503     if (parse_section_header(h, &p, p_end) < 0)
504         return;
505 #ifdef DEBUG_SI
506     av_log(ts->stream, AV_LOG_DEBUG, "sid=0x%x sec_num=%d/%d\n",
507            h->id, h->sec_num, h->last_sec_num);
508 #endif
509     if (h->tid != PMT_TID)
510         return;
511
512     clear_program(ts, h->id);
513     pcr_pid = get16(&p, p_end) & 0x1fff;
514     if (pcr_pid < 0)
515         return;
516     add_pid_to_pmt(ts, h->id, pcr_pid);
517 #ifdef DEBUG_SI
518     av_log(ts->stream, AV_LOG_DEBUG, "pcr_pid=0x%x\n", pcr_pid);
519 #endif
520     program_info_length = get16(&p, p_end) & 0xfff;
521     if (program_info_length < 0)
522         return;
523     while(program_info_length >= 2) {
524         uint8_t tag, len;
525         tag = get8(&p, p_end);
526         len = get8(&p, p_end);
527         if(len > program_info_length - 2)
528             //something else is broken, exit the program_descriptors_loop
529             break;
530         program_info_length -= len + 2;
531         if(tag == REGISTRATION_DESCRIPTOR && len >= 4) {
532             reg_desc = bytestream_get_le32(&p);
533             len -= 4;
534             if(reg_desc == AV_RL32("HDMV"))
535                 has_hdmv_descr = 1;
536         }
537         p += len;
538     }
539     p += program_info_length;
540     if (p >= p_end)
541         return;
542     for(;;) {
543         language[0] = 0;
544         st = 0;
545         stream_type = get8(&p, p_end);
546         if (stream_type < 0)
547             break;
548         pid = get16(&p, p_end) & 0x1fff;
549         if (pid < 0)
550             break;
551         desc_list_len = get16(&p, p_end) & 0xfff;
552         if (desc_list_len < 0)
553             break;
554         desc_list_end = p + desc_list_len;
555         if (desc_list_end > p_end)
556             break;
557         for(;;) {
558             desc_tag = get8(&p, desc_list_end);
559             if (desc_tag < 0)
560                 break;
561             if (stream_type == STREAM_TYPE_PRIVATE_DATA) {
562                 if((desc_tag == 0x6A) || (desc_tag == 0x7A)) {
563                     /*assume DVB AC-3 Audio*/
564                     stream_type = STREAM_TYPE_AUDIO_AC3;
565                 } else if(desc_tag == 0x7B) {
566                     /* DVB DTS audio */
567                     stream_type = STREAM_TYPE_AUDIO_DTS;
568                 }
569             }
570             desc_len = get8(&p, desc_list_end);
571             if (desc_len < 0)
572                 break;
573             desc_end = p + desc_len;
574             if (desc_end > desc_list_end)
575                 break;
576 #ifdef DEBUG_SI
577             av_log(ts->stream, AV_LOG_DEBUG, "tag: 0x%02x len=%d\n",
578                    desc_tag, desc_len);
579 #endif
580             switch(desc_tag) {
581             case DVB_SUBT_DESCID:
582                 if (stream_type == STREAM_TYPE_PRIVATE_DATA)
583                     stream_type = STREAM_TYPE_SUBTITLE_DVB;
584
585                 language[0] = get8(&p, desc_end);
586                 language[1] = get8(&p, desc_end);
587                 language[2] = get8(&p, desc_end);
588                 language[3] = 0;
589                 get8(&p, desc_end);
590                 comp_page = get16(&p, desc_end);
591                 anc_page = get16(&p, desc_end);
592
593                 break;
594             case 0x0a: /* ISO 639 language descriptor */
595                 language[0] = get8(&p, desc_end);
596                 language[1] = get8(&p, desc_end);
597                 language[2] = get8(&p, desc_end);
598                 language[3] = 0;
599                 break;
600             case REGISTRATION_DESCRIPTOR: /*MPEG-2 Registration descriptor */
601                 reg_desc = bytestream_get_le32(&p);
602                 if(reg_desc == AV_RL32("drac"))
603                     has_dirac_descr = 1;
604                 break;
605             default:
606                 break;
607             }
608             p = desc_end;
609         }
610         p = desc_list_end;
611
612 #ifdef DEBUG_SI
613         av_log(ts->stream, AV_LOG_DEBUG, "stream_type=%d pid=0x%x\n",
614                stream_type, pid);
615 #endif
616
617         /* now create ffmpeg stream */
618         switch(stream_type) {
619         case STREAM_TYPE_AUDIO_MPEG1:
620         case STREAM_TYPE_AUDIO_MPEG2:
621         case STREAM_TYPE_VIDEO_MPEG1:
622         case STREAM_TYPE_VIDEO_MPEG2:
623         case STREAM_TYPE_VIDEO_MPEG4:
624         case STREAM_TYPE_VIDEO_H264:
625         case STREAM_TYPE_VIDEO_VC1:
626         case STREAM_TYPE_VIDEO_DIRAC:
627         case STREAM_TYPE_AUDIO_AAC:
628         case STREAM_TYPE_AUDIO_AC3:
629         case STREAM_TYPE_AUDIO_DTS:
630         case STREAM_TYPE_AUDIO_HDMV_DTS:
631         case STREAM_TYPE_SUBTITLE_DVB:
632             if((stream_type == STREAM_TYPE_AUDIO_HDMV_DTS && !has_hdmv_descr)
633             || (stream_type == STREAM_TYPE_VIDEO_DIRAC    && !has_dirac_descr))
634                 break;
635             if(ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES){
636                 pes= ts->pids[pid]->u.pes_filter.opaque;
637                 st= pes->st;
638             }else{
639                 if (ts->pids[pid]) mpegts_close_filter(ts, ts->pids[pid]); //wrongly added sdt filter probably
640                 pes = add_pes_stream(ts, pid, pcr_pid, stream_type);
641                 if (pes)
642                     st = new_pes_av_stream(pes, 0);
643             }
644             add_pid_to_pmt(ts, h->id, pid);
645             if(st)
646                 av_program_add_stream_index(ts->stream, h->id, st->index);
647             break;
648         default:
649             /* we ignore the other streams */
650             break;
651         }
652
653         if (st) {
654             if (language[0] != 0) {
655                 av_metadata_set(&st->metadata, "language", language);
656             }
657
658             if (stream_type == STREAM_TYPE_SUBTITLE_DVB) {
659                 st->codec->sub_id = (anc_page << 16) | comp_page;
660             }
661         }
662     }
663     /* all parameters are there */
664     ts->stop_parse++;
665     mpegts_close_filter(ts, filter);
666 }
667
668 static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
669 {
670     MpegTSContext *ts = filter->u.section_filter.opaque;
671     SectionHeader h1, *h = &h1;
672     const uint8_t *p, *p_end;
673     int sid, pmt_pid;
674
675 #ifdef DEBUG_SI
676     av_log(ts->stream, AV_LOG_DEBUG, "PAT:\n");
677     av_hex_dump_log(ts->stream, AV_LOG_DEBUG, (uint8_t *)section, section_len);
678 #endif
679     p_end = section + section_len - 4;
680     p = section;
681     if (parse_section_header(h, &p, p_end) < 0)
682         return;
683     if (h->tid != PAT_TID)
684         return;
685
686     clear_programs(ts);
687     for(;;) {
688         sid = get16(&p, p_end);
689         if (sid < 0)
690             break;
691         pmt_pid = get16(&p, p_end) & 0x1fff;
692         if (pmt_pid < 0)
693             break;
694 #ifdef DEBUG_SI
695         av_log(ts->stream, AV_LOG_DEBUG, "sid=0x%x pid=0x%x\n", sid, pmt_pid);
696 #endif
697         if (sid == 0x0000) {
698             /* NIT info */
699         } else {
700             av_new_program(ts->stream, sid);
701             ts->stop_parse--;
702             mpegts_open_section_filter(ts, pmt_pid, pmt_cb, ts, 1);
703             add_pat_entry(ts, sid);
704             add_pid_to_pmt(ts, sid, 0); //add pat pid to program
705             add_pid_to_pmt(ts, sid, pmt_pid);
706         }
707     }
708     /* not found */
709     ts->stop_parse++;
710
711     mpegts_close_filter(ts, filter);
712 }
713
714 static void mpegts_set_service(MpegTSContext *ts)
715 {
716     mpegts_open_section_filter(ts, PAT_PID,
717                                                 pat_cb, ts, 1);
718 }
719
720 static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
721 {
722     MpegTSContext *ts = filter->u.section_filter.opaque;
723     SectionHeader h1, *h = &h1;
724     const uint8_t *p, *p_end, *desc_list_end, *desc_end;
725     int onid, val, sid, desc_list_len, desc_tag, desc_len, service_type;
726     char *name, *provider_name;
727
728 #ifdef DEBUG_SI
729     av_log(ts->stream, AV_LOG_DEBUG, "SDT:\n");
730     av_hex_dump_log(ts->stream, AV_LOG_DEBUG, (uint8_t *)section, section_len);
731 #endif
732
733     p_end = section + section_len - 4;
734     p = section;
735     if (parse_section_header(h, &p, p_end) < 0)
736         return;
737     if (h->tid != SDT_TID)
738         return;
739     onid = get16(&p, p_end);
740     if (onid < 0)
741         return;
742     val = get8(&p, p_end);
743     if (val < 0)
744         return;
745     for(;;) {
746         sid = get16(&p, p_end);
747         if (sid < 0)
748             break;
749         val = get8(&p, p_end);
750         if (val < 0)
751             break;
752         desc_list_len = get16(&p, p_end) & 0xfff;
753         if (desc_list_len < 0)
754             break;
755         desc_list_end = p + desc_list_len;
756         if (desc_list_end > p_end)
757             break;
758         for(;;) {
759             desc_tag = get8(&p, desc_list_end);
760             if (desc_tag < 0)
761                 break;
762             desc_len = get8(&p, desc_list_end);
763             desc_end = p + desc_len;
764             if (desc_end > desc_list_end)
765                 break;
766 #ifdef DEBUG_SI
767             av_log(ts->stream, AV_LOG_DEBUG, "tag: 0x%02x len=%d\n",
768                    desc_tag, desc_len);
769 #endif
770             switch(desc_tag) {
771             case 0x48:
772                 service_type = get8(&p, p_end);
773                 if (service_type < 0)
774                     break;
775                 provider_name = getstr8(&p, p_end);
776                 if (!provider_name)
777                     break;
778                 name = getstr8(&p, p_end);
779                 if (name) {
780                     AVProgram *program = av_new_program(ts->stream, sid);
781                     if(program) {
782                         av_metadata_set(&program->metadata, "name", name);
783                         av_metadata_set(&program->metadata, "provider_name", provider_name);
784                     }
785                 }
786                 av_free(name);
787                 av_free(provider_name);
788                 break;
789             default:
790                 break;
791             }
792             p = desc_end;
793         }
794         p = desc_list_end;
795     }
796 }
797
798 /* scan services in a transport stream by looking at the SDT */
799 static void mpegts_scan_sdt(MpegTSContext *ts)
800 {
801     mpegts_open_section_filter(ts, SDT_PID,
802                                                 sdt_cb, ts, 1);
803 }
804
805 static int64_t get_pts(const uint8_t *p)
806 {
807     int64_t pts = (int64_t)((p[0] >> 1) & 0x07) << 30;
808     pts |= (AV_RB16(p + 1) >> 1) << 15;
809     pts |=  AV_RB16(p + 3) >> 1;
810     return pts;
811 }
812
813 /* return non zero if a packet could be constructed */
814 static void mpegts_push_data(MpegTSFilter *filter,
815                              const uint8_t *buf, int buf_size, int is_start,
816                              int64_t pos)
817 {
818     PESContext *pes = filter->u.pes_filter.opaque;
819     MpegTSContext *ts = pes->ts;
820     const uint8_t *p;
821     int len, code;
822
823     if(!ts->pkt)
824         return;
825
826     if (is_start) {
827         pes->state = MPEGTS_HEADER;
828         pes->data_index = 0;
829         pes->ts_packet_pos = pos;
830     }
831     p = buf;
832     while (buf_size > 0) {
833         switch(pes->state) {
834         case MPEGTS_HEADER:
835             len = PES_START_SIZE - pes->data_index;
836             if (len > buf_size)
837                 len = buf_size;
838             memcpy(pes->header + pes->data_index, p, len);
839             pes->data_index += len;
840             p += len;
841             buf_size -= len;
842             if (pes->data_index == PES_START_SIZE) {
843                 /* we got all the PES or section header. We can now
844                    decide */
845 #if 0
846                 av_hex_dump_log(pes->stream, AV_LOG_DEBUG, pes->header, pes->data_index);
847 #endif
848                 if (pes->header[0] == 0x00 && pes->header[1] == 0x00 &&
849                     pes->header[2] == 0x01) {
850                     /* it must be an mpeg2 PES stream */
851                     code = pes->header[3] | 0x100;
852                     if (!pes->st ||
853                         !((code >= 0x1c0 && code <= 0x1df) ||
854                           (code >= 0x1e0 && code <= 0x1ef) ||
855                           (code == 0x1bd) || (code == 0x1fd)))
856                         goto skip;
857                     pes->state = MPEGTS_PESHEADER_FILL;
858                     pes->total_size = AV_RB16(pes->header + 4);
859                     /* NOTE: a zero total size means the PES size is
860                        unbounded */
861                     if (pes->total_size)
862                         pes->total_size += 6;
863                     pes->pes_header_size = pes->header[8] + 9;
864                 } else {
865                     /* otherwise, it should be a table */
866                     /* skip packet */
867                 skip:
868                     pes->state = MPEGTS_SKIP;
869                     continue;
870                 }
871             }
872             break;
873             /**********************************************/
874             /* PES packing parsing */
875         case MPEGTS_PESHEADER_FILL:
876             len = pes->pes_header_size - pes->data_index;
877             if (len > buf_size)
878                 len = buf_size;
879             memcpy(pes->header + pes->data_index, p, len);
880             pes->data_index += len;
881             p += len;
882             buf_size -= len;
883             if (pes->data_index == pes->pes_header_size) {
884                 const uint8_t *r;
885                 unsigned int flags;
886
887                 flags = pes->header[7];
888                 r = pes->header + 9;
889                 pes->pts = AV_NOPTS_VALUE;
890                 pes->dts = AV_NOPTS_VALUE;
891                 if ((flags & 0xc0) == 0x80) {
892                     pes->dts = pes->pts = get_pts(r);
893                     r += 5;
894                 } else if ((flags & 0xc0) == 0xc0) {
895                     pes->pts = get_pts(r);
896                     r += 5;
897                     pes->dts = get_pts(r);
898                     r += 5;
899                 }
900                 /* we got the full header. We parse it and get the payload */
901                 pes->state = MPEGTS_PAYLOAD;
902             }
903             break;
904         case MPEGTS_PAYLOAD:
905             if (pes->total_size) {
906                 len = pes->total_size - pes->data_index;
907                 if (len > buf_size)
908                     len = buf_size;
909             } else {
910                 len = buf_size;
911             }
912             if (len > 0) {
913                 AVPacket *pkt = ts->pkt;
914                 if (pes->st && av_new_packet(pkt, len) == 0) {
915                     memcpy(pkt->data, p, len);
916                     pkt->stream_index = pes->st->index;
917                     pkt->pts = pes->pts;
918                     pkt->dts = pes->dts;
919                     /* store position of first TS packet of this PES packet */
920                     pkt->pos = pes->ts_packet_pos;
921                     /* reset pts values */
922                     pes->pts = AV_NOPTS_VALUE;
923                     pes->dts = AV_NOPTS_VALUE;
924                     ts->stop_parse = 1;
925                     return;
926                 }
927             }
928             buf_size = 0;
929             break;
930         case MPEGTS_SKIP:
931             buf_size = 0;
932             break;
933         }
934     }
935 }
936
937 static AVStream* new_pes_av_stream(PESContext *pes, uint32_t code)
938 {
939     AVStream *st;
940     enum CodecID codec_id;
941     enum CodecType codec_type;
942
943     switch(pes->stream_type){
944     case STREAM_TYPE_AUDIO_MPEG1:
945     case STREAM_TYPE_AUDIO_MPEG2:
946         codec_type = CODEC_TYPE_AUDIO;
947         codec_id = CODEC_ID_MP3;
948         break;
949     case STREAM_TYPE_VIDEO_MPEG1:
950     case STREAM_TYPE_VIDEO_MPEG2:
951         codec_type = CODEC_TYPE_VIDEO;
952         codec_id = CODEC_ID_MPEG2VIDEO;
953         break;
954     case STREAM_TYPE_VIDEO_MPEG4:
955         codec_type = CODEC_TYPE_VIDEO;
956         codec_id = CODEC_ID_MPEG4;
957         break;
958     case STREAM_TYPE_VIDEO_H264:
959         codec_type = CODEC_TYPE_VIDEO;
960         codec_id = CODEC_ID_H264;
961         break;
962     case STREAM_TYPE_VIDEO_VC1:
963         codec_type = CODEC_TYPE_VIDEO;
964         codec_id = CODEC_ID_VC1;
965         break;
966     case STREAM_TYPE_VIDEO_DIRAC:
967         codec_type = CODEC_TYPE_VIDEO;
968         codec_id = CODEC_ID_DIRAC;
969         break;
970     case STREAM_TYPE_AUDIO_AAC:
971         codec_type = CODEC_TYPE_AUDIO;
972         codec_id = CODEC_ID_AAC;
973         break;
974     case STREAM_TYPE_AUDIO_AC3:
975         codec_type = CODEC_TYPE_AUDIO;
976         codec_id = CODEC_ID_AC3;
977         break;
978     case STREAM_TYPE_AUDIO_DTS:
979     case STREAM_TYPE_AUDIO_HDMV_DTS:
980         codec_type = CODEC_TYPE_AUDIO;
981         codec_id = CODEC_ID_DTS;
982         break;
983     case STREAM_TYPE_SUBTITLE_DVB:
984         codec_type = CODEC_TYPE_SUBTITLE;
985         codec_id = CODEC_ID_DVB_SUBTITLE;
986         break;
987     default:
988         if (code >= 0x1c0 && code <= 0x1df) {
989             codec_type = CODEC_TYPE_AUDIO;
990             codec_id = CODEC_ID_MP2;
991         } else if (code == 0x1bd) {
992             codec_type = CODEC_TYPE_AUDIO;
993             codec_id = CODEC_ID_AC3;
994         } else {
995             codec_type = CODEC_TYPE_VIDEO;
996             codec_id = CODEC_ID_PROBE;
997         }
998         break;
999     }
1000     st = av_new_stream(pes->stream, pes->pid);
1001     if (st) {
1002         av_set_pts_info(st, 33, 1, 90000);
1003         st->priv_data = pes;
1004         st->codec->codec_type = codec_type;
1005         st->codec->codec_id = codec_id;
1006         st->need_parsing = AVSTREAM_PARSE_FULL;
1007         pes->st = st;
1008     }
1009     return st;
1010 }
1011
1012
1013 static PESContext *add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid, int stream_type)
1014 {
1015     MpegTSFilter *tss;
1016     PESContext *pes;
1017
1018     /* if no pid found, then add a pid context */
1019     pes = av_mallocz(sizeof(PESContext));
1020     if (!pes)
1021         return 0;
1022     pes->ts = ts;
1023     pes->stream = ts->stream;
1024     pes->pid = pid;
1025     pes->pcr_pid = pcr_pid;
1026     pes->stream_type = stream_type;
1027     tss = mpegts_open_pes_filter(ts, pid, mpegts_push_data, pes);
1028     if (!tss) {
1029         av_free(pes);
1030         return 0;
1031     }
1032     return pes;
1033 }
1034
1035 /* handle one TS packet */
1036 static void handle_packet(MpegTSContext *ts, const uint8_t *packet)
1037 {
1038     AVFormatContext *s = ts->stream;
1039     MpegTSFilter *tss;
1040     int len, pid, cc, cc_ok, afc, is_start;
1041     const uint8_t *p, *p_end;
1042     int64_t pos;
1043
1044     pid = AV_RB16(packet + 1) & 0x1fff;
1045     if(pid && discard_pid(ts, pid))
1046         return;
1047     is_start = packet[1] & 0x40;
1048     tss = ts->pids[pid];
1049     if (ts->auto_guess && tss == NULL && is_start) {
1050         add_pes_stream(ts, pid, -1, 0);
1051         tss = ts->pids[pid];
1052     }
1053     if (!tss)
1054         return;
1055
1056     /* continuity check (currently not used) */
1057     cc = (packet[3] & 0xf);
1058     cc_ok = (tss->last_cc < 0) || ((((tss->last_cc + 1) & 0x0f) == cc));
1059     tss->last_cc = cc;
1060
1061     /* skip adaptation field */
1062     afc = (packet[3] >> 4) & 3;
1063     p = packet + 4;
1064     if (afc == 0) /* reserved value */
1065         return;
1066     if (afc == 2) /* adaptation field only */
1067         return;
1068     if (afc == 3) {
1069         /* skip adapation field */
1070         p += p[0] + 1;
1071     }
1072     /* if past the end of packet, ignore */
1073     p_end = packet + TS_PACKET_SIZE;
1074     if (p >= p_end)
1075         return;
1076
1077     pos = url_ftell(ts->stream->pb);
1078     ts->pos47= pos % ts->raw_packet_size;
1079
1080     if (tss->type == MPEGTS_SECTION) {
1081         if (is_start) {
1082             /* pointer field present */
1083             len = *p++;
1084             if (p + len > p_end)
1085                 return;
1086             if (len && cc_ok) {
1087                 /* write remaining section bytes */
1088                 write_section_data(s, tss,
1089                                    p, len, 0);
1090                 /* check whether filter has been closed */
1091                 if (!ts->pids[pid])
1092                     return;
1093             }
1094             p += len;
1095             if (p < p_end) {
1096                 write_section_data(s, tss,
1097                                    p, p_end - p, 1);
1098             }
1099         } else {
1100             if (cc_ok) {
1101                 write_section_data(s, tss,
1102                                    p, p_end - p, 0);
1103             }
1104         }
1105     } else {
1106         // Note: The position here points actually behind the current packet.
1107         tss->u.pes_filter.pes_cb(tss,
1108                                  p, p_end - p, is_start, pos - ts->raw_packet_size);
1109     }
1110 }
1111
1112 /* XXX: try to find a better synchro over several packets (use
1113    get_packet_size() ?) */
1114 static int mpegts_resync(ByteIOContext *pb)
1115 {
1116     int c, i;
1117
1118     for(i = 0;i < MAX_RESYNC_SIZE; i++) {
1119         c = url_fgetc(pb);
1120         if (c < 0)
1121             return -1;
1122         if (c == 0x47) {
1123             url_fseek(pb, -1, SEEK_CUR);
1124             return 0;
1125         }
1126     }
1127     /* no sync found */
1128     return -1;
1129 }
1130
1131 /* return -1 if error or EOF. Return 0 if OK. */
1132 static int read_packet(ByteIOContext *pb, uint8_t *buf, int raw_packet_size)
1133 {
1134     int skip, len;
1135
1136     for(;;) {
1137         len = get_buffer(pb, buf, TS_PACKET_SIZE);
1138         if (len != TS_PACKET_SIZE)
1139             return AVERROR(EIO);
1140         /* check paquet sync byte */
1141         if (buf[0] != 0x47) {
1142             /* find a new packet start */
1143             url_fseek(pb, -TS_PACKET_SIZE, SEEK_CUR);
1144             if (mpegts_resync(pb) < 0)
1145                 return AVERROR_INVALIDDATA;
1146             else
1147                 continue;
1148         } else {
1149             skip = raw_packet_size - TS_PACKET_SIZE;
1150             if (skip > 0)
1151                 url_fskip(pb, skip);
1152             break;
1153         }
1154     }
1155     return 0;
1156 }
1157
1158 static int handle_packets(MpegTSContext *ts, int nb_packets)
1159 {
1160     AVFormatContext *s = ts->stream;
1161     ByteIOContext *pb = s->pb;
1162     uint8_t packet[TS_PACKET_SIZE];
1163     int packet_num, ret;
1164
1165     ts->stop_parse = 0;
1166     packet_num = 0;
1167     for(;;) {
1168         if (ts->stop_parse>0)
1169             break;
1170         packet_num++;
1171         if (nb_packets != 0 && packet_num >= nb_packets)
1172             break;
1173         ret = read_packet(pb, packet, ts->raw_packet_size);
1174         if (ret != 0)
1175             return ret;
1176         handle_packet(ts, packet);
1177     }
1178     return 0;
1179 }
1180
1181 static int mpegts_probe(AVProbeData *p)
1182 {
1183 #if 1
1184     const int size= p->buf_size;
1185     int score, fec_score, dvhs_score;
1186     int check_count= size / TS_FEC_PACKET_SIZE;
1187 #define CHECK_COUNT 10
1188
1189     if (check_count < CHECK_COUNT)
1190         return -1;
1191
1192     score     = analyze(p->buf, TS_PACKET_SIZE     *check_count, TS_PACKET_SIZE     , NULL)*CHECK_COUNT/check_count;
1193     dvhs_score= analyze(p->buf, TS_DVHS_PACKET_SIZE*check_count, TS_DVHS_PACKET_SIZE, NULL)*CHECK_COUNT/check_count;
1194     fec_score = analyze(p->buf, TS_FEC_PACKET_SIZE *check_count, TS_FEC_PACKET_SIZE , NULL)*CHECK_COUNT/check_count;
1195 //    av_log(NULL, AV_LOG_DEBUG, "score: %d, dvhs_score: %d, fec_score: %d \n", score, dvhs_score, fec_score);
1196
1197 // we need a clear definition for the returned score otherwise things will become messy sooner or later
1198     if     (score > fec_score && score > dvhs_score && score > 6) return AVPROBE_SCORE_MAX + score     - CHECK_COUNT;
1199     else if(dvhs_score > score && dvhs_score > fec_score && dvhs_score > 6) return AVPROBE_SCORE_MAX + dvhs_score  - CHECK_COUNT;
1200     else if(                 fec_score > 6) return AVPROBE_SCORE_MAX + fec_score - CHECK_COUNT;
1201     else                                    return -1;
1202 #else
1203     /* only use the extension for safer guess */
1204     if (match_ext(p->filename, "ts"))
1205         return AVPROBE_SCORE_MAX;
1206     else
1207         return 0;
1208 #endif
1209 }
1210
1211 /* return the 90kHz PCR and the extension for the 27MHz PCR. return
1212    (-1) if not available */
1213 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
1214                      const uint8_t *packet)
1215 {
1216     int afc, len, flags;
1217     const uint8_t *p;
1218     unsigned int v;
1219
1220     afc = (packet[3] >> 4) & 3;
1221     if (afc <= 1)
1222         return -1;
1223     p = packet + 4;
1224     len = p[0];
1225     p++;
1226     if (len == 0)
1227         return -1;
1228     flags = *p++;
1229     len--;
1230     if (!(flags & 0x10))
1231         return -1;
1232     if (len < 6)
1233         return -1;
1234     v = AV_RB32(p);
1235     *ppcr_high = ((int64_t)v << 1) | (p[4] >> 7);
1236     *ppcr_low = ((p[4] & 1) << 8) | p[5];
1237     return 0;
1238 }
1239
1240 static int mpegts_read_header(AVFormatContext *s,
1241                               AVFormatParameters *ap)
1242 {
1243     MpegTSContext *ts = s->priv_data;
1244     ByteIOContext *pb = s->pb;
1245     uint8_t buf[5*1024];
1246     int len;
1247     int64_t pos;
1248
1249     if (ap) {
1250         ts->mpeg2ts_compute_pcr = ap->mpeg2ts_compute_pcr;
1251         if(ap->mpeg2ts_raw){
1252             av_log(s, AV_LOG_ERROR, "use mpegtsraw_demuxer!\n");
1253             return -1;
1254         }
1255     }
1256
1257     /* read the first 1024 bytes to get packet size */
1258     pos = url_ftell(pb);
1259     len = get_buffer(pb, buf, sizeof(buf));
1260     if (len != sizeof(buf))
1261         goto fail;
1262     ts->raw_packet_size = get_packet_size(buf, sizeof(buf));
1263     if (ts->raw_packet_size <= 0)
1264         goto fail;
1265     ts->stream = s;
1266     ts->auto_guess = 0;
1267
1268     if (s->iformat == &mpegts_demuxer) {
1269         /* normal demux */
1270
1271         /* first do a scaning to get all the services */
1272         url_fseek(pb, pos, SEEK_SET);
1273         mpegts_scan_sdt(ts);
1274
1275         mpegts_set_service(ts);
1276
1277         handle_packets(ts, s->probesize);
1278         /* if could not find service, enable auto_guess */
1279
1280         ts->auto_guess = 1;
1281
1282 #ifdef DEBUG_SI
1283         av_log(ts->stream, AV_LOG_DEBUG, "tuning done\n");
1284 #endif
1285         s->ctx_flags |= AVFMTCTX_NOHEADER;
1286     } else {
1287         AVStream *st;
1288         int pcr_pid, pid, nb_packets, nb_pcrs, ret, pcr_l;
1289         int64_t pcrs[2], pcr_h;
1290         int packet_count[2];
1291         uint8_t packet[TS_PACKET_SIZE];
1292
1293         /* only read packets */
1294
1295         st = av_new_stream(s, 0);
1296         if (!st)
1297             goto fail;
1298         av_set_pts_info(st, 60, 1, 27000000);
1299         st->codec->codec_type = CODEC_TYPE_DATA;
1300         st->codec->codec_id = CODEC_ID_MPEG2TS;
1301
1302         /* we iterate until we find two PCRs to estimate the bitrate */
1303         pcr_pid = -1;
1304         nb_pcrs = 0;
1305         nb_packets = 0;
1306         for(;;) {
1307             ret = read_packet(s->pb, packet, ts->raw_packet_size);
1308             if (ret < 0)
1309                 return -1;
1310             pid = AV_RB16(packet + 1) & 0x1fff;
1311             if ((pcr_pid == -1 || pcr_pid == pid) &&
1312                 parse_pcr(&pcr_h, &pcr_l, packet) == 0) {
1313                 pcr_pid = pid;
1314                 packet_count[nb_pcrs] = nb_packets;
1315                 pcrs[nb_pcrs] = pcr_h * 300 + pcr_l;
1316                 nb_pcrs++;
1317                 if (nb_pcrs >= 2)
1318                     break;
1319             }
1320             nb_packets++;
1321         }
1322
1323         /* NOTE1: the bitrate is computed without the FEC */
1324         /* NOTE2: it is only the bitrate of the start of the stream */
1325         ts->pcr_incr = (pcrs[1] - pcrs[0]) / (packet_count[1] - packet_count[0]);
1326         ts->cur_pcr = pcrs[0] - ts->pcr_incr * packet_count[0];
1327         s->bit_rate = (TS_PACKET_SIZE * 8) * 27e6 / ts->pcr_incr;
1328         st->codec->bit_rate = s->bit_rate;
1329         st->start_time = ts->cur_pcr;
1330 #if 0
1331         av_log(ts->stream, AV_LOG_DEBUG, "start=%0.3f pcr=%0.3f incr=%d\n",
1332                st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr);
1333 #endif
1334     }
1335
1336     url_fseek(pb, pos, SEEK_SET);
1337     return 0;
1338  fail:
1339     return -1;
1340 }
1341
1342 #define MAX_PACKET_READAHEAD ((128 * 1024) / 188)
1343
1344 static int mpegts_raw_read_packet(AVFormatContext *s,
1345                                   AVPacket *pkt)
1346 {
1347     MpegTSContext *ts = s->priv_data;
1348     int ret, i;
1349     int64_t pcr_h, next_pcr_h, pos;
1350     int pcr_l, next_pcr_l;
1351     uint8_t pcr_buf[12];
1352
1353     if (av_new_packet(pkt, TS_PACKET_SIZE) < 0)
1354         return AVERROR(ENOMEM);
1355     pkt->pos= url_ftell(s->pb);
1356     ret = read_packet(s->pb, pkt->data, ts->raw_packet_size);
1357     if (ret < 0) {
1358         av_free_packet(pkt);
1359         return ret;
1360     }
1361     if (ts->mpeg2ts_compute_pcr) {
1362         /* compute exact PCR for each packet */
1363         if (parse_pcr(&pcr_h, &pcr_l, pkt->data) == 0) {
1364             /* we read the next PCR (XXX: optimize it by using a bigger buffer */
1365             pos = url_ftell(s->pb);
1366             for(i = 0; i < MAX_PACKET_READAHEAD; i++) {
1367                 url_fseek(s->pb, pos + i * ts->raw_packet_size, SEEK_SET);
1368                 get_buffer(s->pb, pcr_buf, 12);
1369                 if (parse_pcr(&next_pcr_h, &next_pcr_l, pcr_buf) == 0) {
1370                     /* XXX: not precise enough */
1371                     ts->pcr_incr = ((next_pcr_h - pcr_h) * 300 + (next_pcr_l - pcr_l)) /
1372                         (i + 1);
1373                     break;
1374                 }
1375             }
1376             url_fseek(s->pb, pos, SEEK_SET);
1377             /* no next PCR found: we use previous increment */
1378             ts->cur_pcr = pcr_h * 300 + pcr_l;
1379         }
1380         pkt->pts = ts->cur_pcr;
1381         pkt->duration = ts->pcr_incr;
1382         ts->cur_pcr += ts->pcr_incr;
1383     }
1384     pkt->stream_index = 0;
1385     return 0;
1386 }
1387
1388 static int mpegts_read_packet(AVFormatContext *s,
1389                               AVPacket *pkt)
1390 {
1391     MpegTSContext *ts = s->priv_data;
1392
1393     ts->pkt = pkt;
1394     return handle_packets(ts, 0);
1395 }
1396
1397 static int mpegts_read_close(AVFormatContext *s)
1398 {
1399     MpegTSContext *ts = s->priv_data;
1400     int i;
1401
1402     clear_programs(ts);
1403
1404     for(i=0;i<NB_PID_MAX;i++)
1405         if (ts->pids[i]) mpegts_close_filter(ts, ts->pids[i]);
1406
1407     return 0;
1408 }
1409
1410 static int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
1411                               int64_t *ppos, int64_t pos_limit)
1412 {
1413     MpegTSContext *ts = s->priv_data;
1414     int64_t pos, timestamp;
1415     uint8_t buf[TS_PACKET_SIZE];
1416     int pcr_l, pcr_pid = ((PESContext*)s->streams[stream_index]->priv_data)->pcr_pid;
1417     const int find_next= 1;
1418     pos = ((*ppos  + ts->raw_packet_size - 1 - ts->pos47) / ts->raw_packet_size) * ts->raw_packet_size + ts->pos47;
1419     if (find_next) {
1420         for(;;) {
1421             url_fseek(s->pb, pos, SEEK_SET);
1422             if (get_buffer(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
1423                 return AV_NOPTS_VALUE;
1424             if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
1425                 parse_pcr(&timestamp, &pcr_l, buf) == 0) {
1426                 break;
1427             }
1428             pos += ts->raw_packet_size;
1429         }
1430     } else {
1431         for(;;) {
1432             pos -= ts->raw_packet_size;
1433             if (pos < 0)
1434                 return AV_NOPTS_VALUE;
1435             url_fseek(s->pb, pos, SEEK_SET);
1436             if (get_buffer(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
1437                 return AV_NOPTS_VALUE;
1438             if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
1439                 parse_pcr(&timestamp, &pcr_l, buf) == 0) {
1440                 break;
1441             }
1442         }
1443     }
1444     *ppos = pos;
1445
1446     return timestamp;
1447 }
1448
1449 static int read_seek(AVFormatContext *s, int stream_index, int64_t target_ts, int flags){
1450     MpegTSContext *ts = s->priv_data;
1451     uint8_t buf[TS_PACKET_SIZE];
1452     int64_t pos;
1453
1454     if(av_seek_frame_binary(s, stream_index, target_ts, flags) < 0)
1455         return -1;
1456
1457     pos= url_ftell(s->pb);
1458
1459     for(;;) {
1460         url_fseek(s->pb, pos, SEEK_SET);
1461         if (get_buffer(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
1462             return -1;
1463 //        pid = AV_RB16(buf + 1) & 0x1fff;
1464         if(buf[1] & 0x40) break;
1465         pos += ts->raw_packet_size;
1466     }
1467     url_fseek(s->pb, pos, SEEK_SET);
1468
1469     return 0;
1470 }
1471
1472 /**************************************************************/
1473 /* parsing functions - called from other demuxers such as RTP */
1474
1475 MpegTSContext *mpegts_parse_open(AVFormatContext *s)
1476 {
1477     MpegTSContext *ts;
1478
1479     ts = av_mallocz(sizeof(MpegTSContext));
1480     if (!ts)
1481         return NULL;
1482     /* no stream case, currently used by RTP */
1483     ts->raw_packet_size = TS_PACKET_SIZE;
1484     ts->stream = s;
1485     ts->auto_guess = 1;
1486     return ts;
1487 }
1488
1489 /* return the consumed length if a packet was output, or -1 if no
1490    packet is output */
1491 int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
1492                         const uint8_t *buf, int len)
1493 {
1494     int len1;
1495
1496     len1 = len;
1497     ts->pkt = pkt;
1498     ts->stop_parse = 0;
1499     for(;;) {
1500         if (ts->stop_parse>0)
1501             break;
1502         if (len < TS_PACKET_SIZE)
1503             return -1;
1504         if (buf[0] != 0x47) {
1505             buf++;
1506             len--;
1507         } else {
1508             handle_packet(ts, buf);
1509             buf += TS_PACKET_SIZE;
1510             len -= TS_PACKET_SIZE;
1511         }
1512     }
1513     return len1 - len;
1514 }
1515
1516 void mpegts_parse_close(MpegTSContext *ts)
1517 {
1518     int i;
1519
1520     for(i=0;i<NB_PID_MAX;i++)
1521         av_free(ts->pids[i]);
1522     av_free(ts);
1523 }
1524
1525 AVInputFormat mpegts_demuxer = {
1526     "mpegts",
1527     NULL_IF_CONFIG_SMALL("MPEG-2 transport stream format"),
1528     sizeof(MpegTSContext),
1529     mpegts_probe,
1530     mpegts_read_header,
1531     mpegts_read_packet,
1532     mpegts_read_close,
1533     read_seek,
1534     mpegts_get_pcr,
1535     .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
1536 };
1537
1538 AVInputFormat mpegtsraw_demuxer = {
1539     "mpegtsraw",
1540     NULL_IF_CONFIG_SMALL("MPEG-2 raw transport stream format"),
1541     sizeof(MpegTSContext),
1542     NULL,
1543     mpegts_read_header,
1544     mpegts_raw_read_packet,
1545     mpegts_read_close,
1546     read_seek,
1547     mpegts_get_pcr,
1548     .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
1549 };