]> git.sesse.net Git - ffmpeg/blob - libavformat/mpeg.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / 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 //#define DEBUG_SEEK
27
28 #undef NDEBUG
29 #include <assert.h>
30
31 /*********************************************/
32 /* demux code */
33
34 #define MAX_SYNC_SIZE 100000
35
36 static int check_pes(uint8_t *p, uint8_t *end){
37     int pes1;
38     int pes2=      (p[3] & 0xC0) == 0x80
39                 && (p[4] & 0xC0) != 0x40
40                 &&((p[4] & 0xC0) == 0x00 || (p[4]&0xC0)>>2 == (p[6]&0xF0));
41
42     for(p+=3; p<end && *p == 0xFF; p++);
43     if((*p&0xC0) == 0x40) p+=2;
44     if((*p&0xF0) == 0x20){
45         pes1= p[0]&p[2]&p[4]&1;
46     }else if((*p&0xF0) == 0x30){
47         pes1= p[0]&p[2]&p[4]&p[5]&p[7]&p[9]&1;
48     }else
49         pes1 = *p == 0x0F;
50
51     return pes1||pes2;
52 }
53
54 static int mpegps_probe(AVProbeData *p)
55 {
56     uint32_t code= -1;
57     int sys=0, pspack=0, priv1=0, vid=0, audio=0, invalid=0;
58     int i;
59     int score=0;
60
61     for(i=0; i<p->buf_size; i++){
62         code = (code<<8) + p->buf[i];
63         if ((code & 0xffffff00) == 0x100) {
64             int len= p->buf[i+1] << 8 | p->buf[i+2];
65             int pes= check_pes(p->buf+i, p->buf+p->buf_size);
66
67             if(code == SYSTEM_HEADER_START_CODE) sys++;
68             else if(code == PACK_START_CODE)     pspack++;
69             else if((code & 0xf0) == VIDEO_ID &&  pes) vid++;
70             // skip pes payload to avoid start code emulation for private
71             // and audio streams
72             else if((code & 0xe0) == AUDIO_ID &&  pes) {audio++; i+=len;}
73             else if(code == PRIVATE_STREAM_1  &&  pes) {priv1++; i+=len;}
74             else if(code == 0x1fd             &&  pes) vid++; //VC1
75
76             else if((code & 0xf0) == VIDEO_ID && !pes) invalid++;
77             else if((code & 0xe0) == AUDIO_ID && !pes) invalid++;
78             else if(code == PRIVATE_STREAM_1  && !pes) invalid++;
79         }
80     }
81
82     if(vid+audio > invalid+1)     /* invalid VDR files nd short PES streams */
83         score= AVPROBE_SCORE_MAX/4;
84
85 //av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d %d len:%d\n", sys, priv1, pspack,vid, audio, invalid, p->buf_size);
86     if(sys>invalid && sys*9 <= pspack*10)
87         return pspack > 2 ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
88     if(pspack > invalid && (priv1+vid+audio)*10 >= pspack*9)
89         return pspack > 2 ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
90     if((!!vid ^ !!audio) && (audio > 4 || vid > 1) && !sys && !pspack && p->buf_size>2048 && vid + audio > invalid) /* PES stream */
91         return (audio > 12 || vid > 3) ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4;
92
93     //02-Penguin.flac has sys:0 priv1:0 pspack:0 vid:0 audio:1
94     //mp3_misidentified_2.mp3 has sys:0 priv1:0 pspack:0 vid:0 audio:6
95     return score;
96 }
97
98
99 typedef struct MpegDemuxContext {
100     int32_t header_state;
101     unsigned char psm_es_type[256];
102     int sofdec;
103 } MpegDemuxContext;
104
105 static int mpegps_read_header(AVFormatContext *s,
106                               AVFormatParameters *ap)
107 {
108     MpegDemuxContext *m = s->priv_data;
109     const char *sofdec = "Sofdec";
110     int v, i = 0;
111
112     m->header_state = 0xff;
113     s->ctx_flags |= AVFMTCTX_NOHEADER;
114
115     m->sofdec = -1;
116     do {
117         v = avio_r8(s->pb);
118         m->header_state = m->header_state << 8 | v;
119         m->sofdec++;
120     } while (v == sofdec[i] && i++ < 6);
121
122     m->sofdec = (m->sofdec == 6) ? 1 : 0;
123
124     /* no need to do more */
125     return 0;
126 }
127
128 static int64_t get_pts(AVIOContext *pb, int c)
129 {
130     uint8_t buf[5];
131
132     buf[0] = c<0 ? avio_r8(pb) : c;
133     avio_read(pb, buf+1, 4);
134
135     return ff_parse_pes_pts(buf);
136 }
137
138 static int find_next_start_code(AVIOContext *pb, int *size_ptr,
139                                 int32_t *header_state)
140 {
141     unsigned int state, v;
142     int val, n;
143
144     state = *header_state;
145     n = *size_ptr;
146     while (n > 0) {
147         if (url_feof(pb))
148             break;
149         v = avio_r8(pb);
150         n--;
151         if (state == 0x000001) {
152             state = ((state << 8) | v) & 0xffffff;
153             val = state;
154             goto found;
155         }
156         state = ((state << 8) | v) & 0xffffff;
157     }
158     val = -1;
159  found:
160     *header_state = state;
161     *size_ptr = n;
162     return val;
163 }
164
165 #if 0 /* unused, remove? */
166 /* XXX: optimize */
167 static int find_prev_start_code(AVIOContext *pb, int *size_ptr)
168 {
169     int64_t pos, pos_start;
170     int max_size, start_code;
171
172     max_size = *size_ptr;
173     pos_start = avio_tell(pb);
174
175     /* in order to go faster, we fill the buffer */
176     pos = pos_start - 16386;
177     if (pos < 0)
178         pos = 0;
179     avio_seek(pb, pos, SEEK_SET);
180     avio_r8(pb);
181
182     pos = pos_start;
183     for(;;) {
184         pos--;
185         if (pos < 0 || (pos_start - pos) >= max_size) {
186             start_code = -1;
187             goto the_end;
188         }
189         avio_seek(pb, pos, SEEK_SET);
190         start_code = avio_rb32(pb);
191         if ((start_code & 0xffffff00) == 0x100)
192             break;
193     }
194  the_end:
195     *size_ptr = pos_start - pos;
196     return start_code;
197 }
198 #endif
199
200 /**
201  * Extract stream types from a program stream map
202  * According to ISO/IEC 13818-1 ('MPEG-2 Systems') table 2-35
203  *
204  * @return number of bytes occupied by PSM in the bitstream
205  */
206 static long mpegps_psm_parse(MpegDemuxContext *m, AVIOContext *pb)
207 {
208     int psm_length, ps_info_length, es_map_length;
209
210     psm_length = avio_rb16(pb);
211     avio_r8(pb);
212     avio_r8(pb);
213     ps_info_length = avio_rb16(pb);
214
215     /* skip program_stream_info */
216     avio_skip(pb, ps_info_length);
217     es_map_length = avio_rb16(pb);
218
219     /* at least one es available? */
220     while (es_map_length >= 4){
221         unsigned char type      = avio_r8(pb);
222         unsigned char es_id     = avio_r8(pb);
223         uint16_t es_info_length = avio_rb16(pb);
224         /* remember mapping from stream id to stream type */
225         m->psm_es_type[es_id] = type;
226         /* skip program_stream_info */
227         avio_skip(pb, es_info_length);
228         es_map_length -= 4 + es_info_length;
229     }
230     avio_rb32(pb); /* crc32 */
231     return 2 + psm_length;
232 }
233
234 /* read the next PES header. Return its position in ppos
235    (if not NULL), and its start code, pts and dts.
236  */
237 static int mpegps_read_pes_header(AVFormatContext *s,
238                                   int64_t *ppos, int *pstart_code,
239                                   int64_t *ppts, int64_t *pdts)
240 {
241     MpegDemuxContext *m = s->priv_data;
242     int len, size, startcode, c, flags, header_len;
243     int pes_ext, ext2_len, id_ext, skip;
244     int64_t pts, dts;
245     int64_t last_sync= avio_tell(s->pb);
246
247  error_redo:
248         avio_seek(s->pb, last_sync, SEEK_SET);
249  redo:
250         /* next start code (should be immediately after) */
251         m->header_state = 0xff;
252         size = MAX_SYNC_SIZE;
253         startcode = find_next_start_code(s->pb, &size, &m->header_state);
254         last_sync = avio_tell(s->pb);
255     //printf("startcode=%x pos=0x%"PRIx64"\n", startcode, avio_tell(s->pb));
256     if (startcode < 0){
257         if(url_feof(s->pb))
258             return AVERROR_EOF;
259         //FIXME we should remember header_state
260         return AVERROR(EAGAIN);
261     }
262
263     if (startcode == PACK_START_CODE)
264         goto redo;
265     if (startcode == SYSTEM_HEADER_START_CODE)
266         goto redo;
267     if (startcode == PADDING_STREAM) {
268         avio_skip(s->pb, avio_rb16(s->pb));
269         goto redo;
270     }
271     if (startcode == PRIVATE_STREAM_2) {
272         len = avio_rb16(s->pb);
273         if (!m->sofdec) {
274             while (len-- >= 6) {
275                 if (avio_r8(s->pb) == 'S') {
276                     uint8_t buf[5];
277                     avio_read(s->pb, buf, sizeof(buf));
278                     m->sofdec = !memcmp(buf, "ofdec", 5);
279                     len -= sizeof(buf);
280                     break;
281                 }
282             }
283             m->sofdec -= !m->sofdec;
284         }
285         avio_skip(s->pb, len);
286         goto redo;
287     }
288     if (startcode == PROGRAM_STREAM_MAP) {
289         mpegps_psm_parse(m, s->pb);
290         goto redo;
291     }
292
293     /* find matching stream */
294     if (!((startcode >= 0x1c0 && startcode <= 0x1df) ||
295           (startcode >= 0x1e0 && startcode <= 0x1ef) ||
296           (startcode == 0x1bd) || (startcode == 0x1fd)))
297         goto redo;
298     if (ppos) {
299         *ppos = avio_tell(s->pb) - 4;
300     }
301     len = avio_rb16(s->pb);
302     pts =
303     dts = AV_NOPTS_VALUE;
304     /* stuffing */
305     for(;;) {
306         if (len < 1)
307             goto error_redo;
308         c = avio_r8(s->pb);
309         len--;
310         /* XXX: for mpeg1, should test only bit 7 */
311         if (c != 0xff)
312             break;
313     }
314     if ((c & 0xc0) == 0x40) {
315         /* buffer scale & size */
316         avio_r8(s->pb);
317         c = avio_r8(s->pb);
318         len -= 2;
319     }
320     if ((c & 0xe0) == 0x20) {
321         dts = pts = get_pts(s->pb, c);
322         len -= 4;
323         if (c & 0x10){
324             dts = get_pts(s->pb, -1);
325             len -= 5;
326         }
327     } else if ((c & 0xc0) == 0x80) {
328         /* mpeg 2 PES */
329 #if 0 /* some streams have this field set for no apparent reason */
330         if ((c & 0x30) != 0) {
331             /* Encrypted multiplex not handled */
332             goto redo;
333         }
334 #endif
335         flags = avio_r8(s->pb);
336         header_len = avio_r8(s->pb);
337         len -= 2;
338         if (header_len > len)
339             goto error_redo;
340         len -= header_len;
341         if (flags & 0x80) {
342             dts = pts = get_pts(s->pb, -1);
343             header_len -= 5;
344             if (flags & 0x40) {
345                 dts = get_pts(s->pb, -1);
346                 header_len -= 5;
347             }
348         }
349         if (flags & 0x3f && header_len == 0){
350             flags &= 0xC0;
351             av_log(s, AV_LOG_WARNING, "Further flags set but no bytes left\n");
352         }
353         if (flags & 0x01) { /* PES extension */
354             pes_ext = avio_r8(s->pb);
355             header_len--;
356             /* Skip PES private data, program packet sequence counter and P-STD buffer */
357             skip = (pes_ext >> 4) & 0xb;
358             skip += skip & 0x9;
359             if (pes_ext & 0x40 || skip > header_len){
360                 av_log(s, AV_LOG_WARNING, "pes_ext %X is invalid\n", pes_ext);
361                 pes_ext=skip=0;
362             }
363             avio_skip(s->pb, skip);
364             header_len -= skip;
365
366             if (pes_ext & 0x01) { /* PES extension 2 */
367                 ext2_len = avio_r8(s->pb);
368                 header_len--;
369                 if ((ext2_len & 0x7f) > 0) {
370                     id_ext = avio_r8(s->pb);
371                     if ((id_ext & 0x80) == 0)
372                         startcode = ((startcode & 0xff) << 8) | id_ext;
373                     header_len--;
374                 }
375             }
376         }
377         if(header_len < 0)
378             goto error_redo;
379         avio_skip(s->pb, header_len);
380     }
381     else if( c!= 0xf )
382         goto redo;
383
384     if (startcode == PRIVATE_STREAM_1 && !m->psm_es_type[startcode & 0xff]) {
385         startcode = avio_r8(s->pb);
386         len--;
387         if (startcode >= 0x80 && startcode <= 0xcf) {
388             /* audio: skip header */
389             avio_r8(s->pb);
390             avio_r8(s->pb);
391             avio_r8(s->pb);
392             len -= 3;
393             if (startcode >= 0xb0 && startcode <= 0xbf) {
394                 /* MLP/TrueHD audio has a 4-byte header */
395                 avio_r8(s->pb);
396                 len--;
397             }
398         }
399     }
400     if(len<0)
401         goto error_redo;
402     if(dts != AV_NOPTS_VALUE && ppos){
403         int i;
404         for(i=0; i<s->nb_streams; i++){
405             if(startcode == s->streams[i]->id &&
406                s->pb->seekable /* index useless on streams anyway */) {
407                 ff_reduce_index(s, i);
408                 av_add_index_entry(s->streams[i], *ppos, dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
409             }
410         }
411     }
412
413     *pstart_code = startcode;
414     *ppts = pts;
415     *pdts = dts;
416     return len;
417 }
418
419 static int mpegps_read_packet(AVFormatContext *s,
420                               AVPacket *pkt)
421 {
422     MpegDemuxContext *m = s->priv_data;
423     AVStream *st;
424     int len, startcode, i, es_type;
425     int request_probe= 0;
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             request_probe= 1;
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 = av_new_stream(s, startcode);
535     if (!st)
536         goto skip;
537     st->codec->codec_type = type;
538     st->codec->codec_id = codec_id;
539     st->request_probe     = request_probe;
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     av_new_packet(pkt, len);
570     avio_read(s->pb, pkt->data, pkt->size);
571     pkt->pts = pts;
572     pkt->dts = dts;
573     pkt->pos = dummy_pos;
574     pkt->stream_index = st->index;
575     av_dlog(s, "%d: pts=%0.3f dts=%0.3f size=%d\n",
576             pkt->stream_index, pkt->pts / 90000.0, pkt->dts / 90000.0,
577             pkt->size);
578
579     return 0;
580 }
581
582 static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index,
583                                int64_t *ppos, int64_t pos_limit)
584 {
585     int len, startcode;
586     int64_t pos, pts, dts;
587
588     pos = *ppos;
589     if (avio_seek(s->pb, pos, SEEK_SET) < 0)
590         return AV_NOPTS_VALUE;
591
592     for(;;) {
593         len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts);
594         if (len < 0) {
595 #ifdef DEBUG_SEEK
596             av_log(s, AV_LOG_DEBUG, "none (ret=%d)\n", len);
597 #endif
598             return AV_NOPTS_VALUE;
599         }
600         if (startcode == s->streams[stream_index]->id &&
601             dts != AV_NOPTS_VALUE) {
602             break;
603         }
604         avio_skip(s->pb, len);
605     }
606 #ifdef DEBUG_SEEK
607     av_log(s, AV_LOG_DEBUG, "pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n",
608            pos, dts, dts / 90000.0);
609 #endif
610     *ppos = pos;
611     return dts;
612 }
613
614 AVInputFormat ff_mpegps_demuxer = {
615     "mpeg",
616     NULL_IF_CONFIG_SMALL("MPEG-PS format"),
617     sizeof(MpegDemuxContext),
618     mpegps_probe,
619     mpegps_read_header,
620     mpegps_read_packet,
621     NULL,
622     NULL, //mpegps_read_seek,
623     mpegps_read_dts,
624     .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
625 };