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