OSDN Git Service

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