]> git.sesse.net Git - ffmpeg/blob - libavformat/mpeg.c
avprobe: fix formatting.
[ffmpeg] / libavformat / mpeg.c
1 /*
2  * MPEG1/2 demuxer
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "avformat.h"
23 #include "internal.h"
24 #include "mpeg.h"
25
26 #undef NDEBUG
27 #include <assert.h>
28
29 /*********************************************/
30 /* demux code */
31
32 #define MAX_SYNC_SIZE 100000
33
34 static int check_pes(uint8_t *p, uint8_t *end){
35     int pes1;
36     int pes2=      (p[3] & 0xC0) == 0x80
37                 && (p[4] & 0xC0) != 0x40
38                 &&((p[4] & 0xC0) == 0x00 || (p[4]&0xC0)>>2 == (p[6]&0xF0));
39
40     for(p+=3; p<end && *p == 0xFF; p++);
41     if((*p&0xC0) == 0x40) p+=2;
42     if((*p&0xF0) == 0x20){
43         pes1= p[0]&p[2]&p[4]&1;
44     }else if((*p&0xF0) == 0x30){
45         pes1= p[0]&p[2]&p[4]&p[5]&p[7]&p[9]&1;
46     }else
47         pes1 = *p == 0x0F;
48
49     return pes1||pes2;
50 }
51
52 static int check_pack_header(const uint8_t *buf) {
53     return (buf[1] & 0xC0) == 0x40 || (buf[1] & 0xF0) == 0x20;
54 }
55
56 static int mpegps_probe(AVProbeData *p)
57 {
58     uint32_t code= -1;
59     int sys=0, pspack=0, priv1=0, vid=0, audio=0, invalid=0;
60     int i;
61     int score=0;
62
63     for(i=0; i<p->buf_size; i++){
64         code = (code<<8) + p->buf[i];
65         if ((code & 0xffffff00) == 0x100) {
66             int len= p->buf[i+1] << 8 | p->buf[i+2];
67             int pes= check_pes(p->buf+i, p->buf+p->buf_size);
68             int pack = check_pack_header(p->buf+i);
69
70             if(code == SYSTEM_HEADER_START_CODE) sys++;
71             else if(code == PACK_START_CODE && pack) pspack++;
72             else if((code & 0xf0) == VIDEO_ID &&  pes) vid++;
73             // skip pes payload to avoid start code emulation for private
74             // and audio streams
75             else if((code & 0xe0) == AUDIO_ID &&  pes) {audio++; i+=len;}
76             else if(code == PRIVATE_STREAM_1  &&  pes) {priv1++; i+=len;}
77
78             else if((code & 0xf0) == VIDEO_ID && !pes) invalid++;
79             else if((code & 0xe0) == AUDIO_ID && !pes) invalid++;
80             else if(code == PRIVATE_STREAM_1  && !pes) invalid++;
81         }
82     }
83
84     if(vid+audio > invalid)     /* invalid VDR files nd short PES streams */
85         score= AVPROBE_SCORE_MAX/4;
86
87 //av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d %d len:%d\n", sys, priv1, pspack,vid, audio, invalid, p->buf_size);
88     if(sys>invalid && sys*9 <= pspack*10)
89         return pspack > 2 ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
90     if(pspack > invalid && (priv1+vid+audio)*10 >= pspack*9)
91         return pspack > 2 ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
92     if((!!vid ^ !!audio) && (audio > 4 || vid > 1) && !sys && !pspack && p->buf_size>2048 && vid + audio > invalid) /* PES stream */
93         return (audio > 12 || vid > 3) ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4;
94
95     //02-Penguin.flac has sys:0 priv1:0 pspack:0 vid:0 audio:1
96     //mp3_misidentified_2.mp3 has sys:0 priv1:0 pspack:0 vid:0 audio:6
97     return score;
98 }
99
100
101 typedef struct MpegDemuxContext {
102     int32_t header_state;
103     unsigned char psm_es_type[256];
104     int sofdec;
105 } MpegDemuxContext;
106
107 static int mpegps_read_header(AVFormatContext *s)
108 {
109     MpegDemuxContext *m = s->priv_data;
110     const char *sofdec = "Sofdec";
111     int v, i = 0;
112
113     m->header_state = 0xff;
114     s->ctx_flags |= AVFMTCTX_NOHEADER;
115
116     m->sofdec = -1;
117     do {
118         v = avio_r8(s->pb);
119         m->header_state = m->header_state << 8 | v;
120         m->sofdec++;
121     } while (v == sofdec[i] && i++ < 6);
122
123     m->sofdec = (m->sofdec == 6) ? 1 : 0;
124
125     /* no need to do more */
126     return 0;
127 }
128
129 static int64_t get_pts(AVIOContext *pb, int c)
130 {
131     uint8_t buf[5];
132
133     buf[0] = c<0 ? avio_r8(pb) : c;
134     avio_read(pb, buf+1, 4);
135
136     return ff_parse_pes_pts(buf);
137 }
138
139 static int find_next_start_code(AVIOContext *pb, int *size_ptr,
140                                 int32_t *header_state)
141 {
142     unsigned int state, v;
143     int val, n;
144
145     state = *header_state;
146     n = *size_ptr;
147     while (n > 0) {
148         if (pb->eof_reached)
149             break;
150         v = avio_r8(pb);
151         n--;
152         if (state == 0x000001) {
153             state = ((state << 8) | v) & 0xffffff;
154             val = state;
155             goto found;
156         }
157         state = ((state << 8) | v) & 0xffffff;
158     }
159     val = -1;
160  found:
161     *header_state = state;
162     *size_ptr = n;
163     return val;
164 }
165
166 #if 0 /* unused, remove? */
167 /* XXX: optimize */
168 static int find_prev_start_code(AVIOContext *pb, int *size_ptr)
169 {
170     int64_t pos, pos_start;
171     int max_size, start_code;
172
173     max_size = *size_ptr;
174     pos_start = avio_tell(pb);
175
176     /* in order to go faster, we fill the buffer */
177     pos = pos_start - 16386;
178     if (pos < 0)
179         pos = 0;
180     avio_seek(pb, pos, SEEK_SET);
181     avio_r8(pb);
182
183     pos = pos_start;
184     for(;;) {
185         pos--;
186         if (pos < 0 || (pos_start - pos) >= max_size) {
187             start_code = -1;
188             goto the_end;
189         }
190         avio_seek(pb, pos, SEEK_SET);
191         start_code = avio_rb32(pb);
192         if ((start_code & 0xffffff00) == 0x100)
193             break;
194     }
195  the_end:
196     *size_ptr = pos_start - pos;
197     return start_code;
198 }
199 #endif
200
201 /**
202  * Extract stream types from a program stream map
203  * According to ISO/IEC 13818-1 ('MPEG-2 Systems') table 2-35
204  *
205  * @return number of bytes occupied by PSM in the bitstream
206  */
207 static long mpegps_psm_parse(MpegDemuxContext *m, AVIOContext *pb)
208 {
209     int psm_length, ps_info_length, es_map_length;
210
211     psm_length = avio_rb16(pb);
212     avio_r8(pb);
213     avio_r8(pb);
214     ps_info_length = avio_rb16(pb);
215
216     /* skip program_stream_info */
217     avio_skip(pb, ps_info_length);
218     es_map_length = avio_rb16(pb);
219
220     /* at least one es available? */
221     while (es_map_length >= 4){
222         unsigned char type      = avio_r8(pb);
223         unsigned char es_id     = avio_r8(pb);
224         uint16_t es_info_length = avio_rb16(pb);
225         /* remember mapping from stream id to stream type */
226         m->psm_es_type[es_id] = type;
227         /* skip program_stream_info */
228         avio_skip(pb, es_info_length);
229         es_map_length -= 4 + es_info_length;
230     }
231     avio_rb32(pb); /* crc32 */
232     return 2 + psm_length;
233 }
234
235 /* read the next PES header. Return its position in ppos
236    (if not NULL), and its start code, pts and dts.
237  */
238 static int mpegps_read_pes_header(AVFormatContext *s,
239                                   int64_t *ppos, int *pstart_code,
240                                   int64_t *ppts, int64_t *pdts)
241 {
242     MpegDemuxContext *m = s->priv_data;
243     int len, size, startcode, c, flags, header_len;
244     int pes_ext, ext2_len, id_ext, skip;
245     int64_t pts, dts;
246     int64_t last_sync= avio_tell(s->pb);
247
248  error_redo:
249         avio_seek(s->pb, last_sync, SEEK_SET);
250  redo:
251         /* next start code (should be immediately after) */
252         m->header_state = 0xff;
253         size = MAX_SYNC_SIZE;
254         startcode = find_next_start_code(s->pb, &size, &m->header_state);
255         last_sync = avio_tell(s->pb);
256     //printf("startcode=%x pos=0x%"PRIx64"\n", startcode, avio_tell(s->pb));
257     if (startcode < 0){
258         if(s->pb->eof_reached)
259             return AVERROR_EOF;
260         //FIXME we should remember header_state
261         return AVERROR(EAGAIN);
262     }
263
264     if (startcode == PACK_START_CODE)
265         goto redo;
266     if (startcode == SYSTEM_HEADER_START_CODE)
267         goto redo;
268     if (startcode == PADDING_STREAM) {
269         avio_skip(s->pb, avio_rb16(s->pb));
270         goto redo;
271     }
272     if (startcode == PRIVATE_STREAM_2) {
273         len = avio_rb16(s->pb);
274         if (!m->sofdec) {
275             while (len-- >= 6) {
276                 if (avio_r8(s->pb) == 'S') {
277                     uint8_t buf[5];
278                     avio_read(s->pb, buf, sizeof(buf));
279                     m->sofdec = !memcmp(buf, "ofdec", 5);
280                     len -= sizeof(buf);
281                     break;
282                 }
283             }
284             m->sofdec -= !m->sofdec;
285         }
286         avio_skip(s->pb, len);
287         goto redo;
288     }
289     if (startcode == PROGRAM_STREAM_MAP) {
290         mpegps_psm_parse(m, s->pb);
291         goto redo;
292     }
293
294     /* find matching stream */
295     if (!((startcode >= 0x1c0 && startcode <= 0x1df) ||
296           (startcode >= 0x1e0 && startcode <= 0x1ef) ||
297           (startcode == 0x1bd) || (startcode == 0x1fd)))
298         goto redo;
299     if (ppos) {
300         *ppos = avio_tell(s->pb) - 4;
301     }
302     len = avio_rb16(s->pb);
303     pts =
304     dts = AV_NOPTS_VALUE;
305     /* stuffing */
306     for(;;) {
307         if (len < 1)
308             goto error_redo;
309         c = avio_r8(s->pb);
310         len--;
311         /* XXX: for mpeg1, should test only bit 7 */
312         if (c != 0xff)
313             break;
314     }
315     if ((c & 0xc0) == 0x40) {
316         /* buffer scale & size */
317         avio_r8(s->pb);
318         c = avio_r8(s->pb);
319         len -= 2;
320     }
321     if ((c & 0xe0) == 0x20) {
322         dts = pts = get_pts(s->pb, c);
323         len -= 4;
324         if (c & 0x10){
325             dts = get_pts(s->pb, -1);
326             len -= 5;
327         }
328     } else if ((c & 0xc0) == 0x80) {
329         /* mpeg 2 PES */
330 #if 0 /* some streams have this field set for no apparent reason */
331         if ((c & 0x30) != 0) {
332             /* Encrypted multiplex not handled */
333             goto redo;
334         }
335 #endif
336         flags = avio_r8(s->pb);
337         header_len = avio_r8(s->pb);
338         len -= 2;
339         if (header_len > len)
340             goto error_redo;
341         len -= header_len;
342         if (flags & 0x80) {
343             dts = pts = get_pts(s->pb, -1);
344             header_len -= 5;
345             if (flags & 0x40) {
346                 dts = get_pts(s->pb, -1);
347                 header_len -= 5;
348             }
349         }
350         if (flags & 0x3f && header_len == 0){
351             flags &= 0xC0;
352             av_log(s, AV_LOG_WARNING, "Further flags set but no bytes left\n");
353         }
354         if (flags & 0x01) { /* PES extension */
355             pes_ext = avio_r8(s->pb);
356             header_len--;
357             /* Skip PES private data, program packet sequence counter and P-STD buffer */
358             skip = (pes_ext >> 4) & 0xb;
359             skip += skip & 0x9;
360             if (pes_ext & 0x40 || skip > header_len){
361                 av_log(s, AV_LOG_WARNING, "pes_ext %X is invalid\n", pes_ext);
362                 pes_ext=skip=0;
363             }
364             avio_skip(s->pb, skip);
365             header_len -= skip;
366
367             if (pes_ext & 0x01) { /* PES extension 2 */
368                 ext2_len = avio_r8(s->pb);
369                 header_len--;
370                 if ((ext2_len & 0x7f) > 0) {
371                     id_ext = avio_r8(s->pb);
372                     if ((id_ext & 0x80) == 0)
373                         startcode = ((startcode & 0xff) << 8) | id_ext;
374                     header_len--;
375                 }
376             }
377         }
378         if(header_len < 0)
379             goto error_redo;
380         avio_skip(s->pb, header_len);
381     }
382     else if( c!= 0xf )
383         goto redo;
384
385     if (startcode == PRIVATE_STREAM_1 && !m->psm_es_type[startcode & 0xff]) {
386         startcode = avio_r8(s->pb);
387         len--;
388         if (startcode >= 0x80 && startcode <= 0xcf) {
389             /* audio: skip header */
390             avio_r8(s->pb);
391             avio_r8(s->pb);
392             avio_r8(s->pb);
393             len -= 3;
394             if (startcode >= 0xb0 && startcode <= 0xbf) {
395                 /* MLP/TrueHD audio has a 4-byte header */
396                 avio_r8(s->pb);
397                 len--;
398             }
399         }
400     }
401     if(len<0)
402         goto error_redo;
403     if(dts != AV_NOPTS_VALUE && ppos){
404         int i;
405         for(i=0; i<s->nb_streams; i++){
406             if(startcode == s->streams[i]->id &&
407                s->pb->seekable /* index useless on streams anyway */) {
408                 ff_reduce_index(s, i);
409                 av_add_index_entry(s->streams[i], *ppos, dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
410             }
411         }
412     }
413
414     *pstart_code = startcode;
415     *ppts = pts;
416     *pdts = dts;
417     return len;
418 }
419
420 static int mpegps_read_packet(AVFormatContext *s,
421                               AVPacket *pkt)
422 {
423     MpegDemuxContext *m = s->priv_data;
424     AVStream *st;
425     int len, startcode, i, es_type, ret;
426     enum CodecID codec_id = CODEC_ID_NONE;
427     enum AVMediaType type;
428     int64_t pts, dts, dummy_pos; //dummy_pos is needed for the index building to work
429     uint8_t av_uninit(dvdaudio_substream_type);
430
431  redo:
432     len = mpegps_read_pes_header(s, &dummy_pos, &startcode, &pts, &dts);
433     if (len < 0)
434         return len;
435
436     if(startcode == 0x1bd) {
437         dvdaudio_substream_type = avio_r8(s->pb);
438         avio_skip(s->pb, 3);
439         len -= 4;
440     }
441
442     /* now find stream */
443     for(i=0;i<s->nb_streams;i++) {
444         st = s->streams[i];
445         if (st->id == startcode)
446             goto found;
447     }
448
449     es_type = m->psm_es_type[startcode & 0xff];
450     if(es_type > 0 && es_type != STREAM_TYPE_PRIVATE_DATA){
451         if(es_type == STREAM_TYPE_VIDEO_MPEG1){
452             codec_id = CODEC_ID_MPEG2VIDEO;
453             type = AVMEDIA_TYPE_VIDEO;
454         } else if(es_type == STREAM_TYPE_VIDEO_MPEG2){
455             codec_id = CODEC_ID_MPEG2VIDEO;
456             type = AVMEDIA_TYPE_VIDEO;
457         } else if(es_type == STREAM_TYPE_AUDIO_MPEG1 ||
458                   es_type == STREAM_TYPE_AUDIO_MPEG2){
459             codec_id = CODEC_ID_MP3;
460             type = AVMEDIA_TYPE_AUDIO;
461         } else if(es_type == STREAM_TYPE_AUDIO_AAC){
462             codec_id = CODEC_ID_AAC;
463             type = AVMEDIA_TYPE_AUDIO;
464         } else if(es_type == STREAM_TYPE_VIDEO_MPEG4){
465             codec_id = CODEC_ID_MPEG4;
466             type = AVMEDIA_TYPE_VIDEO;
467         } else if(es_type == STREAM_TYPE_VIDEO_H264){
468             codec_id = CODEC_ID_H264;
469             type = AVMEDIA_TYPE_VIDEO;
470         } else if(es_type == STREAM_TYPE_AUDIO_AC3){
471             codec_id = CODEC_ID_AC3;
472             type = AVMEDIA_TYPE_AUDIO;
473         } else {
474             goto skip;
475         }
476     } else if (startcode >= 0x1e0 && startcode <= 0x1ef) {
477         static const unsigned char avs_seqh[4] = { 0, 0, 1, 0xb0 };
478         unsigned char buf[8];
479         avio_read(s->pb, buf, 8);
480         avio_seek(s->pb, -8, SEEK_CUR);
481         if(!memcmp(buf, avs_seqh, 4) && (buf[6] != 0 || buf[7] != 1))
482             codec_id = CODEC_ID_CAVS;
483         else
484             codec_id = CODEC_ID_PROBE;
485         type = AVMEDIA_TYPE_VIDEO;
486     } else if (startcode >= 0x1c0 && startcode <= 0x1df) {
487         type = AVMEDIA_TYPE_AUDIO;
488         codec_id = m->sofdec > 0 ? CODEC_ID_ADPCM_ADX : CODEC_ID_MP2;
489     } else if (startcode >= 0x80 && startcode <= 0x87) {
490         type = AVMEDIA_TYPE_AUDIO;
491         codec_id = CODEC_ID_AC3;
492     } else if (  ( startcode >= 0x88 && startcode <= 0x8f)
493                ||( startcode >= 0x98 && startcode <= 0x9f)) {
494         /* 0x90 - 0x97 is reserved for SDDS in DVD specs */
495         type = AVMEDIA_TYPE_AUDIO;
496         codec_id = CODEC_ID_DTS;
497     } else if (startcode >= 0xa0 && startcode <= 0xaf) {
498         type = AVMEDIA_TYPE_AUDIO;
499         /* 16 bit form will be handled as CODEC_ID_PCM_S16BE */
500         codec_id = CODEC_ID_PCM_DVD;
501     } else if (startcode >= 0xb0 && startcode <= 0xbf) {
502         type = AVMEDIA_TYPE_AUDIO;
503         codec_id = CODEC_ID_TRUEHD;
504     } else if (startcode >= 0xc0 && startcode <= 0xcf) {
505         /* Used for both AC-3 and E-AC-3 in EVOB files */
506         type = AVMEDIA_TYPE_AUDIO;
507         codec_id = CODEC_ID_AC3;
508     } else if (startcode >= 0x20 && startcode <= 0x3f) {
509         type = AVMEDIA_TYPE_SUBTITLE;
510         codec_id = CODEC_ID_DVD_SUBTITLE;
511     } else if (startcode >= 0xfd55 && startcode <= 0xfd5f) {
512         type = AVMEDIA_TYPE_VIDEO;
513         codec_id = CODEC_ID_VC1;
514     } else if (startcode == 0x1bd) {
515         // check dvd audio substream type
516         type = AVMEDIA_TYPE_AUDIO;
517         switch(dvdaudio_substream_type & 0xe0) {
518         case 0xa0:  codec_id = CODEC_ID_PCM_DVD;
519                     break;
520         case 0x80:  if((dvdaudio_substream_type & 0xf8) == 0x88)
521                          codec_id = CODEC_ID_DTS;
522                     else codec_id = CODEC_ID_AC3;
523                     break;
524         default:    av_log(s, AV_LOG_ERROR, "Unknown 0x1bd sub-stream\n");
525                     goto skip;
526         }
527     } else {
528     skip:
529         /* skip packet */
530         avio_skip(s->pb, len);
531         goto redo;
532     }
533     /* no stream found: add a new stream */
534     st = avformat_new_stream(s, NULL);
535     if (!st)
536         goto skip;
537     st->id = startcode;
538     st->codec->codec_type = type;
539     st->codec->codec_id = codec_id;
540     if (codec_id != CODEC_ID_PCM_S16BE)
541         st->need_parsing = AVSTREAM_PARSE_FULL;
542  found:
543     if(st->discard >= AVDISCARD_ALL)
544         goto skip;
545     if ((startcode >= 0xa0 && startcode <= 0xaf) ||
546         (startcode == 0x1bd && ((dvdaudio_substream_type & 0xe0) == 0xa0))) {
547         int b1, freq;
548
549         /* for LPCM, we just skip the header and consider it is raw
550            audio data */
551         if (len <= 3)
552             goto skip;
553         avio_r8(s->pb); /* emphasis (1), muse(1), reserved(1), frame number(5) */
554         b1 = avio_r8(s->pb); /* quant (2), freq(2), reserved(1), channels(3) */
555         avio_r8(s->pb); /* dynamic range control (0x80 = off) */
556         len -= 3;
557         freq = (b1 >> 4) & 3;
558         st->codec->sample_rate = lpcm_freq_tab[freq];
559         st->codec->channels = 1 + (b1 & 7);
560         st->codec->bits_per_coded_sample = 16 + ((b1 >> 6) & 3) * 4;
561         st->codec->bit_rate = st->codec->channels *
562                               st->codec->sample_rate *
563                               st->codec->bits_per_coded_sample;
564         if (st->codec->bits_per_coded_sample == 16)
565             st->codec->codec_id = CODEC_ID_PCM_S16BE;
566         else if (st->codec->bits_per_coded_sample == 28)
567             return AVERROR(EINVAL);
568     }
569     ret = av_get_packet(s->pb, pkt, len);
570     pkt->pts = pts;
571     pkt->dts = dts;
572     pkt->pos = dummy_pos;
573     pkt->stream_index = st->index;
574     av_dlog(s, "%d: pts=%0.3f dts=%0.3f size=%d\n",
575             pkt->stream_index, pkt->pts / 90000.0, pkt->dts / 90000.0,
576             pkt->size);
577
578     return (ret < 0) ? ret : 0;
579 }
580
581 static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index,
582                                int64_t *ppos, int64_t pos_limit)
583 {
584     int len, startcode;
585     int64_t pos, pts, dts;
586
587     pos = *ppos;
588     if (avio_seek(s->pb, pos, SEEK_SET) < 0)
589         return AV_NOPTS_VALUE;
590
591     for(;;) {
592         len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts);
593         if (len < 0) {
594             av_dlog(s, "none (ret=%d)\n", len);
595             return AV_NOPTS_VALUE;
596         }
597         if (startcode == s->streams[stream_index]->id &&
598             dts != AV_NOPTS_VALUE) {
599             break;
600         }
601         avio_skip(s->pb, len);
602     }
603     av_dlog(s, "pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n",
604             pos, dts, dts / 90000.0);
605     *ppos = pos;
606     return dts;
607 }
608
609 AVInputFormat ff_mpegps_demuxer = {
610     .name           = "mpeg",
611     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-PS format"),
612     .priv_data_size = sizeof(MpegDemuxContext),
613     .read_probe     = mpegps_probe,
614     .read_header    = mpegps_read_header,
615     .read_packet    = mpegps_read_packet,
616     .read_timestamp = mpegps_read_dts,
617     .flags          = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT,
618 };