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