blob: 8aa43d94484602d6f3020e23f928ecc4b6bf9ee2 [file] [log] [blame]
Fabrice Bellardde6d9b62001-07-22 14:18:561/*
Baptiste Coudurier2abe5a02007-06-21 09:39:292 * MPEG1/2 demuxer
Diego Biurrun406792e2009-01-19 15:46:403 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
Fabrice Bellardde6d9b62001-07-22 14:18:564 *
Diego Biurrunb78e7192006-10-07 15:30:465 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
Fabrice Bellard19720f12002-05-25 22:34:328 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
Diego Biurrunb78e7192006-10-07 15:30:4610 * version 2.1 of the License, or (at your option) any later version.
Fabrice Bellardde6d9b62001-07-22 14:18:5611 *
Diego Biurrunb78e7192006-10-07 15:30:4612 * FFmpeg is distributed in the hope that it will be useful,
Fabrice Bellardde6d9b62001-07-22 14:18:5613 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Fabrice Bellard19720f12002-05-25 22:34:3214 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
Fabrice Bellardde6d9b62001-07-22 14:18:5616 *
Fabrice Bellard19720f12002-05-25 22:34:3217 * You should have received a copy of the GNU Lesser General Public
Diego Biurrunb78e7192006-10-07 15:30:4618 * License along with FFmpeg; if not, write to the Free Software
Diego Biurrun5509bff2006-01-12 22:43:2619 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Fabrice Bellardde6d9b62001-07-22 14:18:5620 */
Fabrice Bellardde6d9b62001-07-22 14:18:5621
Baptiste Coudurier2abe5a02007-06-21 09:39:2922#include "avformat.h"
23#include "mpeg.h"
24
Fabrice Bellard27f388a2003-11-10 18:47:5225//#define DEBUG_SEEK
Fabrice Bellardde6d9b62001-07-22 14:18:5626
Michael Niedermayerb7549782004-01-13 22:02:4927#undef NDEBUG
28#include <assert.h>
29
Fabrice Bellardde6d9b62001-07-22 14:18:5630/*********************************************/
31/* demux code */
32
33#define MAX_SYNC_SIZE 100000
34
Michael Niedermayerc6dcd0d2007-11-03 13:48:3035static int check_pes(uint8_t *p, uint8_t *end){
36 int pes1;
37 int pes2= (p[3] & 0xC0) == 0x80
38 && (p[4] & 0xC0) != 0x40
39 &&((p[4] & 0xC0) == 0x00 || (p[4]&0xC0)>>2 == (p[6]&0xF0));
40
41 for(p+=3; p<end && *p == 0xFF; p++);
42 if((*p&0xC0) == 0x40) p+=2;
43 if((*p&0xF0) == 0x20){
44 pes1= p[0]&p[2]&p[4]&1;
Michael Niedermayerc6dcd0d2007-11-03 13:48:3045 }else if((*p&0xF0) == 0x30){
46 pes1= p[0]&p[2]&p[4]&p[5]&p[7]&p[9]&1;
Michael Niedermayerc6dcd0d2007-11-03 13:48:3047 }else
48 pes1 = *p == 0x0F;
49
50 return pes1||pes2;
51}
52
Fabrice Bellarddb7f1f92002-05-20 16:29:4053static int mpegps_probe(AVProbeData *p)
54{
Michael Niedermayer9870a7b2006-02-08 17:35:4455 uint32_t code= -1;
Michael Niedermayer7e1720d2007-12-03 09:37:0656 int sys=0, pspack=0, priv1=0, vid=0, audio=0, invalid=0;
Michael Niedermayer95f97de2004-10-01 16:00:0057 int i;
Michael Niedermayera1c69e02006-08-19 08:39:0058 int score=0;
Fabrice Bellarddb7f1f92002-05-20 16:29:4059
Michael Niedermayer9870a7b2006-02-08 17:35:4460 for(i=0; i<p->buf_size; i++){
61 code = (code<<8) + p->buf[i];
Isaac Richardsec23a472003-07-10 09:04:0462 if ((code & 0xffffff00) == 0x100) {
Michael Niedermayer0c904db2007-11-03 14:57:2663 int pes= check_pes(p->buf+i, p->buf+p->buf_size);
Michael Niedermayerc6dcd0d2007-11-03 13:48:3064
Måns Rullgård25c533a2006-06-29 19:03:5365 if(code == SYSTEM_HEADER_START_CODE) sys++;
66 else if(code == PRIVATE_STREAM_1) priv1++;
67 else if(code == PACK_START_CODE) pspack++;
Michael Niedermayer274335e2008-08-26 01:29:4368 else if((code & 0xf0) == VIDEO_ID && pes) vid++;
69 else if((code & 0xe0) == AUDIO_ID && pes) audio++;
Michael Niedermayer7e1720d2007-12-03 09:37:0670
71 else if((code & 0xf0) == VIDEO_ID && !pes) invalid++;
72 else if((code & 0xe0) == AUDIO_ID && !pes) invalid++;
Isaac Richardsec23a472003-07-10 09:04:0473 }
Fabrice Bellarddb7f1f92002-05-20 16:29:4074 }
Michael Niedermayera1c69e02006-08-19 08:39:0075
Michael Niedermayer7e1720d2007-12-03 09:37:0676 if(vid+audio > invalid) /* invalid VDR files nd short PES streams */
Michael Niedermayera1c69e02006-08-19 08:39:0077 score= AVPROBE_SCORE_MAX/4;
78
Michael Niedermayer35044672007-08-05 02:15:4679//av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d len:%d\n", sys, priv1, pspack,vid, audio, p->buf_size);
Michael Niedermayer7e1720d2007-12-03 09:37:0680 if(sys>invalid && sys*9 <= pspack*10)
Michael Niedermayerc4674a42009-09-15 12:20:0381 return pspack > 2 ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
Michael Niedermayer7e1720d2007-12-03 09:37:0682 if(priv1 + vid + audio > invalid && (priv1+vid+audio)*9 <= pspack*10)
Michael Niedermayerc4674a42009-09-15 12:20:0383 return pspack > 2 ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
84 if((!!vid ^ !!audio) && (audio > 4 || vid > 1) && !sys && !pspack && p->buf_size>2048 && vid + audio > invalid) /* PES stream */
Reimar Döffinger3489e152009-09-15 10:01:2585 return (audio > 12 || vid > 3) ? AVPROBE_SCORE_MAX/2+2 : AVPROBE_SCORE_MAX/4;
Michael Niedermayera1c69e02006-08-19 08:39:0086
87 //02-Penguin.flac has sys:0 priv1:0 pspack:0 vid:0 audio:1
Reimar Döffinger3489e152009-09-15 10:01:2588 //mp3_misidentified_2.mp3 has sys:0 priv1:0 pspack:0 vid:0 audio:6
Michael Niedermayera1c69e02006-08-19 08:39:0089 return score;
Fabrice Bellarddb7f1f92002-05-20 16:29:4090}
91
92
Fabrice Bellardde6d9b62001-07-22 14:18:5693typedef struct MpegDemuxContext {
Måns Rullgård191e8ca2006-09-27 19:47:3994 int32_t header_state;
Måns Rullgårde3d1cd82005-03-28 17:33:2195 unsigned char psm_es_type[256];
Aurelien Jacobs8cd4ac32007-11-07 23:56:0096 int sofdec;
Fabrice Bellardde6d9b62001-07-22 14:18:5697} MpegDemuxContext;
98
Fabrice Bellard27f388a2003-11-10 18:47:5299static int mpegps_read_header(AVFormatContext *s,
100 AVFormatParameters *ap)
101{
102 MpegDemuxContext *m = s->priv_data;
Måns Rullgård2c187842007-11-08 21:27:37103 const char *sofdec = "Sofdec";
104 int v, i = 0;
Aurelien Jacobs8cd4ac32007-11-07 23:56:00105
Fabrice Bellard27f388a2003-11-10 18:47:52106 m->header_state = 0xff;
107 s->ctx_flags |= AVFMTCTX_NOHEADER;
108
Måns Rullgård2c187842007-11-08 21:27:37109 m->sofdec = -1;
110 do {
Björn Axelsson899681c2007-11-21 07:41:00111 v = get_byte(s->pb);
Måns Rullgård2c187842007-11-08 21:27:37112 m->header_state = m->header_state << 8 | v;
113 m->sofdec++;
114 } while (v == sofdec[i] && i++ < 6);
Aurelien Jacobs8cd4ac32007-11-07 23:56:00115
Fabrice Bellard27f388a2003-11-10 18:47:52116 /* no need to do more */
117 return 0;
118}
119
120static int64_t get_pts(ByteIOContext *pb, int c)
121{
Ivo van Poorten66e9e302008-01-07 23:32:57122 uint8_t buf[5];
Fabrice Bellard27f388a2003-11-10 18:47:52123
Ivo van Poorten66e9e302008-01-07 23:32:57124 buf[0] = c<0 ? get_byte(pb) : c;
125 get_buffer(pb, buf+1, 4);
126
127 return ff_parse_pes_pts(buf);
Fabrice Bellard27f388a2003-11-10 18:47:52128}
129
Diego Biurrun115329f2005-12-17 18:14:38130static int find_next_start_code(ByteIOContext *pb, int *size_ptr,
Måns Rullgård191e8ca2006-09-27 19:47:39131 int32_t *header_state)
Fabrice Bellardde6d9b62001-07-22 14:18:56132{
133 unsigned int state, v;
134 int val, n;
135
136 state = *header_state;
137 n = *size_ptr;
138 while (n > 0) {
139 if (url_feof(pb))
140 break;
141 v = get_byte(pb);
142 n--;
143 if (state == 0x000001) {
144 state = ((state << 8) | v) & 0xffffff;
145 val = state;
146 goto found;
147 }
148 state = ((state << 8) | v) & 0xffffff;
149 }
150 val = -1;
151 found:
152 *header_state = state;
153 *size_ptr = n;
154 return val;
155}
156
Måns Rullgård88730be2005-02-24 19:08:50157#if 0 /* unused, remove? */
Fabrice Bellard27f388a2003-11-10 18:47:52158/* XXX: optimize */
159static int find_prev_start_code(ByteIOContext *pb, int *size_ptr)
Juanjo001e3f52002-03-17 17:44:45160{
Fabrice Bellard27f388a2003-11-10 18:47:52161 int64_t pos, pos_start;
162 int max_size, start_code;
Fabrice Bellardda24c5e2003-10-29 14:20:56163
Fabrice Bellard27f388a2003-11-10 18:47:52164 max_size = *size_ptr;
165 pos_start = url_ftell(pb);
166
167 /* in order to go faster, we fill the buffer */
168 pos = pos_start - 16386;
169 if (pos < 0)
170 pos = 0;
171 url_fseek(pb, pos, SEEK_SET);
172 get_byte(pb);
173
174 pos = pos_start;
175 for(;;) {
176 pos--;
177 if (pos < 0 || (pos_start - pos) >= max_size) {
178 start_code = -1;
179 goto the_end;
180 }
181 url_fseek(pb, pos, SEEK_SET);
182 start_code = get_be32(pb);
183 if ((start_code & 0xffffff00) == 0x100)
184 break;
185 }
186 the_end:
187 *size_ptr = pos_start - pos;
188 return start_code;
Fabrice Bellardde6d9b62001-07-22 14:18:56189}
Måns Rullgård88730be2005-02-24 19:08:50190#endif
Fabrice Bellardde6d9b62001-07-22 14:18:56191
Måns Rullgårde3d1cd82005-03-28 17:33:21192/**
193 * Extracts stream types from a program stream map
194 * According to ISO/IEC 13818-1 ('MPEG-2 Systems') table 2-35
Diego Biurrun115329f2005-12-17 18:14:38195 *
Måns Rullgårde3d1cd82005-03-28 17:33:21196 * @return number of bytes occupied by PSM in the bitstream
197 */
198static long mpegps_psm_parse(MpegDemuxContext *m, ByteIOContext *pb)
199{
200 int psm_length, ps_info_length, es_map_length;
201
202 psm_length = get_be16(pb);
203 get_byte(pb);
204 get_byte(pb);
205 ps_info_length = get_be16(pb);
206
207 /* skip program_stream_info */
208 url_fskip(pb, ps_info_length);
209 es_map_length = get_be16(pb);
210
211 /* at least one es available? */
212 while (es_map_length >= 4){
Michael Niedermayer274335e2008-08-26 01:29:43213 unsigned char type = get_byte(pb);
214 unsigned char es_id = get_byte(pb);
Måns Rullgårde3d1cd82005-03-28 17:33:21215 uint16_t es_info_length = get_be16(pb);
216 /* remember mapping from stream id to stream type */
217 m->psm_es_type[es_id] = type;
218 /* skip program_stream_info */
219 url_fskip(pb, es_info_length);
220 es_map_length -= 4 + es_info_length;
221 }
222 get_be32(pb); /* crc32 */
223 return 2 + psm_length;
224}
225
Diego Biurrun115329f2005-12-17 18:14:38226/* read the next PES header. Return its position in ppos
Fabrice Bellard27f388a2003-11-10 18:47:52227 (if not NULL), and its start code, pts and dts.
228 */
229static int mpegps_read_pes_header(AVFormatContext *s,
Diego Biurrun115329f2005-12-17 18:14:38230 int64_t *ppos, int *pstart_code,
Michael Niedermayer8d14a252004-04-12 16:50:03231 int64_t *ppts, int64_t *pdts)
Fabrice Bellardde6d9b62001-07-22 14:18:56232{
233 MpegDemuxContext *m = s->priv_data;
Fabrice Bellard27f388a2003-11-10 18:47:52234 int len, size, startcode, c, flags, header_len;
Michael Niedermayeraad512b2007-02-06 19:14:16235 int pes_ext, ext2_len, id_ext, skip;
Michael Niedermayere56cfad2007-01-17 10:19:10236 int64_t pts, dts;
Björn Axelsson899681c2007-11-21 07:41:00237 int64_t last_sync= url_ftell(s->pb);
Fabrice Bellardde6d9b62001-07-22 14:18:56238
Michael Niedermayere56cfad2007-01-17 10:19:10239 error_redo:
Björn Axelsson899681c2007-11-21 07:41:00240 url_fseek(s->pb, last_sync, SEEK_SET);
Fabrice Bellardde6d9b62001-07-22 14:18:56241 redo:
Fabrice Bellard27f388a2003-11-10 18:47:52242 /* next start code (should be immediately after) */
243 m->header_state = 0xff;
244 size = MAX_SYNC_SIZE;
Björn Axelsson899681c2007-11-21 07:41:00245 startcode = find_next_start_code(s->pb, &size, &m->header_state);
246 last_sync = url_ftell(s->pb);
247 //printf("startcode=%x pos=0x%"PRIx64"\n", startcode, url_ftell(s->pb));
Fabrice Bellardde6d9b62001-07-22 14:18:56248 if (startcode < 0)
Panagiotis Issaris6f3e0b22007-07-19 15:23:32249 return AVERROR(EIO);
Fabrice Bellardde6d9b62001-07-22 14:18:56250 if (startcode == PACK_START_CODE)
251 goto redo;
252 if (startcode == SYSTEM_HEADER_START_CODE)
253 goto redo;
Måns Rullgård2c187842007-11-08 21:27:37254 if (startcode == PADDING_STREAM) {
Björn Axelsson899681c2007-11-21 07:41:00255 url_fskip(s->pb, get_be16(s->pb));
Måns Rullgård2c187842007-11-08 21:27:37256 goto redo;
257 }
258 if (startcode == PRIVATE_STREAM_2) {
Björn Axelsson899681c2007-11-21 07:41:00259 len = get_be16(s->pb);
Måns Rullgård2c187842007-11-08 21:27:37260 if (!m->sofdec) {
261 while (len-- >= 6) {
Björn Axelsson899681c2007-11-21 07:41:00262 if (get_byte(s->pb) == 'S') {
Måns Rullgård2c187842007-11-08 21:27:37263 uint8_t buf[5];
Björn Axelsson899681c2007-11-21 07:41:00264 get_buffer(s->pb, buf, sizeof(buf));
Måns Rullgård2c187842007-11-08 21:27:37265 m->sofdec = !memcmp(buf, "ofdec", 5);
266 len -= sizeof(buf);
267 break;
268 }
269 }
270 m->sofdec -= !m->sofdec;
271 }
Björn Axelsson899681c2007-11-21 07:41:00272 url_fskip(s->pb, len);
Fabrice Bellardde6d9b62001-07-22 14:18:56273 goto redo;
274 }
Måns Rullgårde3d1cd82005-03-28 17:33:21275 if (startcode == PROGRAM_STREAM_MAP) {
Björn Axelsson899681c2007-11-21 07:41:00276 mpegps_psm_parse(m, s->pb);
Måns Rullgårde3d1cd82005-03-28 17:33:21277 goto redo;
278 }
Diego Biurrun115329f2005-12-17 18:14:38279
Fabrice Bellardde6d9b62001-07-22 14:18:56280 /* find matching stream */
281 if (!((startcode >= 0x1c0 && startcode <= 0x1df) ||
282 (startcode >= 0x1e0 && startcode <= 0x1ef) ||
Michael Niedermayeraad512b2007-02-06 19:14:16283 (startcode == 0x1bd) || (startcode == 0x1fd)))
Fabrice Bellardde6d9b62001-07-22 14:18:56284 goto redo;
Fabrice Bellard27f388a2003-11-10 18:47:52285 if (ppos) {
Björn Axelsson899681c2007-11-21 07:41:00286 *ppos = url_ftell(s->pb) - 4;
Fabrice Bellard27f388a2003-11-10 18:47:52287 }
Björn Axelsson899681c2007-11-21 07:41:00288 len = get_be16(s->pb);
Michael Niedermayer75a9fbb2007-01-17 10:45:59289 pts =
Fabrice Bellardb2cac182002-10-21 15:57:21290 dts = AV_NOPTS_VALUE;
Fabrice Bellardde6d9b62001-07-22 14:18:56291 /* stuffing */
292 for(;;) {
Fabrice Bellard27f388a2003-11-10 18:47:52293 if (len < 1)
Michael Niedermayere56cfad2007-01-17 10:19:10294 goto error_redo;
Björn Axelsson899681c2007-11-21 07:41:00295 c = get_byte(s->pb);
Fabrice Bellardde6d9b62001-07-22 14:18:56296 len--;
297 /* XXX: for mpeg1, should test only bit 7 */
Diego Biurrun115329f2005-12-17 18:14:38298 if (c != 0xff)
Fabrice Bellardde6d9b62001-07-22 14:18:56299 break;
300 }
301 if ((c & 0xc0) == 0x40) {
302 /* buffer scale & size */
Björn Axelsson899681c2007-11-21 07:41:00303 get_byte(s->pb);
304 c = get_byte(s->pb);
Fabrice Bellardde6d9b62001-07-22 14:18:56305 len -= 2;
306 }
Michael Niedermayerb90ba242007-01-17 10:55:01307 if ((c & 0xe0) == 0x20) {
Björn Axelsson899681c2007-11-21 07:41:00308 dts = pts = get_pts(s->pb, c);
Fabrice Bellardde6d9b62001-07-22 14:18:56309 len -= 4;
Michael Niedermayerb90ba242007-01-17 10:55:01310 if (c & 0x10){
Björn Axelsson899681c2007-11-21 07:41:00311 dts = get_pts(s->pb, -1);
Michael Niedermayerb90ba242007-01-17 10:55:01312 len -= 5;
313 }
Fabrice Bellardde6d9b62001-07-22 14:18:56314 } else if ((c & 0xc0) == 0x80) {
315 /* mpeg 2 PES */
Måns Rullgårdd8bee8d2006-06-19 22:20:38316#if 0 /* some streams have this field set for no apparent reason */
Fabrice Bellardde6d9b62001-07-22 14:18:56317 if ((c & 0x30) != 0) {
Fabrice Bellard27f388a2003-11-10 18:47:52318 /* Encrypted multiplex not handled */
319 goto redo;
Fabrice Bellardde6d9b62001-07-22 14:18:56320 }
Måns Rullgårdd8bee8d2006-06-19 22:20:38321#endif
Björn Axelsson899681c2007-11-21 07:41:00322 flags = get_byte(s->pb);
323 header_len = get_byte(s->pb);
Fabrice Bellardde6d9b62001-07-22 14:18:56324 len -= 2;
325 if (header_len > len)
Michael Niedermayere56cfad2007-01-17 10:19:10326 goto error_redo;
Michael Niedermayer80036202007-01-17 12:06:31327 len -= header_len;
Michael Niedermayerb90ba242007-01-17 10:55:01328 if (flags & 0x80) {
Björn Axelsson899681c2007-11-21 07:41:00329 dts = pts = get_pts(s->pb, -1);
Fabrice Bellardde6d9b62001-07-22 14:18:56330 header_len -= 5;
Michael Niedermayerb90ba242007-01-17 10:55:01331 if (flags & 0x40) {
Björn Axelsson899681c2007-11-21 07:41:00332 dts = get_pts(s->pb, -1);
Michael Niedermayerb90ba242007-01-17 10:55:01333 header_len -= 5;
Michael Niedermayerb90ba242007-01-17 10:55:01334 }
Fabrice Bellardde6d9b62001-07-22 14:18:56335 }
Michael Niedermayer675b8392008-03-04 01:31:15336 if (flags & 0x3f && header_len == 0){
337 flags &= 0xC0;
338 av_log(s, AV_LOG_WARNING, "Further flags set but no bytes left\n");
339 }
Michael Niedermayeraad512b2007-02-06 19:14:16340 if (flags & 0x01) { /* PES extension */
Björn Axelsson899681c2007-11-21 07:41:00341 pes_ext = get_byte(s->pb);
Michael Niedermayeraad512b2007-02-06 19:14:16342 header_len--;
Michael Niedermayeraad512b2007-02-06 19:14:16343 /* Skip PES private data, program packet sequence counter and P-STD buffer */
344 skip = (pes_ext >> 4) & 0xb;
345 skip += skip & 0x9;
Michael Niedermayerb22d0c02008-04-29 00:12:49346 if (pes_ext & 0x40 || skip > header_len){
347 av_log(s, AV_LOG_WARNING, "pes_ext %X is invalid\n", pes_ext);
348 pes_ext=skip=0;
349 }
Björn Axelsson899681c2007-11-21 07:41:00350 url_fskip(s->pb, skip);
Michael Niedermayeraad512b2007-02-06 19:14:16351 header_len -= skip;
352
353 if (pes_ext & 0x01) { /* PES extension 2 */
Björn Axelsson899681c2007-11-21 07:41:00354 ext2_len = get_byte(s->pb);
Michael Niedermayeraad512b2007-02-06 19:14:16355 header_len--;
356 if ((ext2_len & 0x7f) > 0) {
Björn Axelsson899681c2007-11-21 07:41:00357 id_ext = get_byte(s->pb);
Michael Niedermayeraad512b2007-02-06 19:14:16358 if ((id_ext & 0x80) == 0)
359 startcode = ((startcode & 0xff) << 8) | id_ext;
360 header_len--;
361 }
362 }
363 }
Michael Niedermayer80036202007-01-17 12:06:31364 if(header_len < 0)
365 goto error_redo;
Björn Axelsson899681c2007-11-21 07:41:00366 url_fskip(s->pb, header_len);
Fabrice Bellardde6d9b62001-07-22 14:18:56367 }
Dmitry Borisovdf70de12004-04-23 21:02:01368 else if( c!= 0xf )
369 goto redo;
370
Måns Rullgårde3d1cd82005-03-28 17:33:21371 if (startcode == PRIVATE_STREAM_1 && !m->psm_es_type[startcode & 0xff]) {
Björn Axelsson899681c2007-11-21 07:41:00372 startcode = get_byte(s->pb);
Fabrice Bellardde6d9b62001-07-22 14:18:56373 len--;
Michael Niedermayeraad512b2007-02-06 19:14:16374 if (startcode >= 0x80 && startcode <= 0xcf) {
Fabrice Bellardde6d9b62001-07-22 14:18:56375 /* audio: skip header */
Björn Axelsson899681c2007-11-21 07:41:00376 get_byte(s->pb);
377 get_byte(s->pb);
378 get_byte(s->pb);
Fabrice Bellardde6d9b62001-07-22 14:18:56379 len -= 3;
Michael Niedermayeraad512b2007-02-06 19:14:16380 if (startcode >= 0xb0 && startcode <= 0xbf) {
381 /* MLP/TrueHD audio has a 4-byte header */
Björn Axelsson899681c2007-11-21 07:41:00382 get_byte(s->pb);
Michael Niedermayeraad512b2007-02-06 19:14:16383 len--;
384 }
Fabrice Bellardde6d9b62001-07-22 14:18:56385 }
386 }
Michael Niedermayer7e4709b2007-01-17 10:44:57387 if(len<0)
388 goto error_redo;
Michael Niedermayerb7549782004-01-13 22:02:49389 if(dts != AV_NOPTS_VALUE && ppos){
390 int i;
391 for(i=0; i<s->nb_streams; i++){
Michel Bardiaux6ba90c22008-01-14 16:11:08392 if(startcode == s->streams[i]->id &&
393 !url_is_streamed(s->pb) /* index useless on streams anyway */) {
Paul Kelly3dea63b2008-01-13 13:33:37394 ff_reduce_index(s, i);
Michael Niedermayer30a43f22006-03-01 11:29:55395 av_add_index_entry(s->streams[i], *ppos, dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
Michael Niedermayerb7549782004-01-13 22:02:49396 }
397 }
398 }
Diego Biurrun115329f2005-12-17 18:14:38399
Fabrice Bellard27f388a2003-11-10 18:47:52400 *pstart_code = startcode;
401 *ppts = pts;
402 *pdts = dts;
403 return len;
404}
405
406static int mpegps_read_packet(AVFormatContext *s,
407 AVPacket *pkt)
408{
Måns Rullgårde3d1cd82005-03-28 17:33:21409 MpegDemuxContext *m = s->priv_data;
Fabrice Bellard27f388a2003-11-10 18:47:52410 AVStream *st;
Diego Pettenòfb65d2c2008-10-02 16:03:00411 int len, startcode, i, es_type;
412 enum CodecID codec_id = CODEC_ID_NONE;
413 enum CodecType type;
Michael Niedermayerb7549782004-01-13 22:02:49414 int64_t pts, dts, dummy_pos; //dummy_pos is needed for the index building to work
Diego Biurrun1aeb55a2009-03-05 19:13:12415 uint8_t av_uninit(dvdaudio_substream_type);
Fabrice Bellard27f388a2003-11-10 18:47:52416
417 redo:
Michael Niedermayer8d14a252004-04-12 16:50:03418 len = mpegps_read_pes_header(s, &dummy_pos, &startcode, &pts, &dts);
Fabrice Bellard27f388a2003-11-10 18:47:52419 if (len < 0)
420 return len;
Diego Biurrun115329f2005-12-17 18:14:38421
Benoit Fouet80e58c62009-02-11 11:09:36422 if(startcode == 0x1bd) {
423 dvdaudio_substream_type = get_byte(s->pb);
424 url_fskip(s->pb, 3);
425 len -= 4;
426 }
427
Fabrice Bellardde6d9b62001-07-22 14:18:56428 /* now find stream */
429 for(i=0;i<s->nb_streams;i++) {
430 st = s->streams[i];
431 if (st->id == startcode)
432 goto found;
433 }
Måns Rullgårde3d1cd82005-03-28 17:33:21434
435 es_type = m->psm_es_type[startcode & 0xff];
Benoit Fouet80e58c62009-02-11 11:09:36436 if(es_type > 0 && es_type != STREAM_TYPE_PRIVATE_DATA){
Måns Rullgårde3d1cd82005-03-28 17:33:21437 if(es_type == STREAM_TYPE_VIDEO_MPEG1){
438 codec_id = CODEC_ID_MPEG2VIDEO;
439 type = CODEC_TYPE_VIDEO;
440 } else if(es_type == STREAM_TYPE_VIDEO_MPEG2){
441 codec_id = CODEC_ID_MPEG2VIDEO;
442 type = CODEC_TYPE_VIDEO;
443 } else if(es_type == STREAM_TYPE_AUDIO_MPEG1 ||
444 es_type == STREAM_TYPE_AUDIO_MPEG2){
445 codec_id = CODEC_ID_MP3;
446 type = CODEC_TYPE_AUDIO;
447 } else if(es_type == STREAM_TYPE_AUDIO_AAC){
448 codec_id = CODEC_ID_AAC;
449 type = CODEC_TYPE_AUDIO;
450 } else if(es_type == STREAM_TYPE_VIDEO_MPEG4){
451 codec_id = CODEC_ID_MPEG4;
452 type = CODEC_TYPE_VIDEO;
453 } else if(es_type == STREAM_TYPE_VIDEO_H264){
454 codec_id = CODEC_ID_H264;
455 type = CODEC_TYPE_VIDEO;
456 } else if(es_type == STREAM_TYPE_AUDIO_AC3){
457 codec_id = CODEC_ID_AC3;
458 type = CODEC_TYPE_AUDIO;
459 } else {
460 goto skip;
461 }
462 } else if (startcode >= 0x1e0 && startcode <= 0x1ef) {
Måns Rullgård83d07312006-07-03 21:40:01463 static const unsigned char avs_seqh[4] = { 0, 0, 1, 0xb0 };
464 unsigned char buf[8];
Björn Axelsson899681c2007-11-21 07:41:00465 get_buffer(s->pb, buf, 8);
466 url_fseek(s->pb, -8, SEEK_CUR);
Måns Rullgård83d07312006-07-03 21:40:01467 if(!memcmp(buf, avs_seqh, 4) && (buf[6] != 0 || buf[7] != 1))
468 codec_id = CODEC_ID_CAVS;
469 else
Michael Niedermayerc1c90462008-07-12 22:17:13470 codec_id = CODEC_ID_PROBE;
Fabrice Bellarddb7f1f92002-05-20 16:29:40471 type = CODEC_TYPE_VIDEO;
Fabrice Bellarddb7f1f92002-05-20 16:29:40472 } else if (startcode >= 0x1c0 && startcode <= 0x1df) {
473 type = CODEC_TYPE_AUDIO;
Måns Rullgård2c187842007-11-08 21:27:37474 codec_id = m->sofdec > 0 ? CODEC_ID_ADPCM_ADX : CODEC_ID_MP2;
Joakim Plate3f2bf072005-05-20 13:10:09475 } else if (startcode >= 0x80 && startcode <= 0x87) {
Fabrice Bellarddb7f1f92002-05-20 16:29:40476 type = CODEC_TYPE_AUDIO;
477 codec_id = CODEC_ID_AC3;
Michael Niedermayer274335e2008-08-26 01:29:43478 } else if ( ( startcode >= 0x88 && startcode <= 0x8f)
Michael Niedermayeraad512b2007-02-06 19:14:16479 ||( startcode >= 0x98 && startcode <= 0x9f)) {
480 /* 0x90 - 0x97 is reserved for SDDS in DVD specs */
Michael Niedermayer23c99252004-07-14 01:32:14481 type = CODEC_TYPE_AUDIO;
482 codec_id = CODEC_ID_DTS;
Michael Niedermayeraad512b2007-02-06 19:14:16483 } else if (startcode >= 0xa0 && startcode <= 0xaf) {
Fabrice Bellard9ec05e32003-01-31 17:04:46484 type = CODEC_TYPE_AUDIO;
Lars Täuber4860abb2008-05-21 02:26:42485 /* 16 bit form will be handled as CODEC_ID_PCM_S16BE */
486 codec_id = CODEC_ID_PCM_DVD;
Michael Niedermayeraad512b2007-02-06 19:14:16487 } else if (startcode >= 0xb0 && startcode <= 0xbf) {
488 type = CODEC_TYPE_AUDIO;
Ramiro Polla9ba48212009-03-19 21:23:39489 codec_id = CODEC_ID_TRUEHD;
Michael Niedermayeraad512b2007-02-06 19:14:16490 } else if (startcode >= 0xc0 && startcode <= 0xcf) {
491 /* Used for both AC-3 and E-AC-3 in EVOB files */
492 type = CODEC_TYPE_AUDIO;
493 codec_id = CODEC_ID_AC3;
Fabrice Bellarda9c32132005-06-03 14:01:49494 } else if (startcode >= 0x20 && startcode <= 0x3f) {
495 type = CODEC_TYPE_SUBTITLE;
496 codec_id = CODEC_ID_DVD_SUBTITLE;
Michael Niedermayeraad512b2007-02-06 19:14:16497 } else if (startcode >= 0xfd55 && startcode <= 0xfd5f) {
498 type = CODEC_TYPE_VIDEO;
499 codec_id = CODEC_ID_VC1;
Benoit Fouet80e58c62009-02-11 11:09:36500 } else if (startcode == 0x1bd) {
501 // check dvd audio substream type
502 type = CODEC_TYPE_AUDIO;
503 switch(dvdaudio_substream_type & 0xe0) {
504 case 0xa0: codec_id = CODEC_ID_PCM_DVD;
505 break;
506 case 0x80: if((dvdaudio_substream_type & 0xf8) == 0x88)
507 codec_id = CODEC_ID_DTS;
508 else codec_id = CODEC_ID_AC3;
509 break;
510 default: av_log(s, AV_LOG_ERROR, "Unknown 0x1bd sub-stream\n");
511 goto skip;
512 }
Fabrice Bellarddb7f1f92002-05-20 16:29:40513 } else {
514 skip:
515 /* skip packet */
Björn Axelsson899681c2007-11-21 07:41:00516 url_fskip(s->pb, len);
Fabrice Bellarddb7f1f92002-05-20 16:29:40517 goto redo;
518 }
Fabrice Bellard1e5c6672002-10-04 15:46:59519 /* no stream found: add a new stream */
520 st = av_new_stream(s, startcode);
Diego Biurrun115329f2005-12-17 18:14:38521 if (!st)
Fabrice Bellard1e5c6672002-10-04 15:46:59522 goto skip;
Michael Niedermayer01f48952005-07-17 22:24:36523 st->codec->codec_type = type;
524 st->codec->codec_id = codec_id;
Fabrice Bellard27f388a2003-11-10 18:47:52525 if (codec_id != CODEC_ID_PCM_S16BE)
Aurelien Jacobs57004ff2007-04-15 13:51:57526 st->need_parsing = AVSTREAM_PARSE_FULL;
Fabrice Bellardde6d9b62001-07-22 14:18:56527 found:
Michael Niedermayerf3356e92005-03-17 01:25:01528 if(st->discard >= AVDISCARD_ALL)
Michael Niedermayerb9866eb2005-01-22 13:36:02529 goto skip;
Benoit Fouet80e58c62009-02-11 11:09:36530 if ((startcode >= 0xa0 && startcode <= 0xaf) ||
531 (startcode == 0x1bd && ((dvdaudio_substream_type & 0xe0) == 0xa0))) {
Fabrice Bellard9ec05e32003-01-31 17:04:46532 int b1, freq;
Fabrice Bellard9ec05e32003-01-31 17:04:46533
534 /* for LPCM, we just skip the header and consider it is raw
535 audio data */
536 if (len <= 3)
537 goto skip;
Björn Axelsson899681c2007-11-21 07:41:00538 get_byte(s->pb); /* emphasis (1), muse(1), reserved(1), frame number(5) */
539 b1 = get_byte(s->pb); /* quant (2), freq(2), reserved(1), channels(3) */
540 get_byte(s->pb); /* dynamic range control (0x80 = off) */
Fabrice Bellard9ec05e32003-01-31 17:04:46541 len -= 3;
542 freq = (b1 >> 4) & 3;
Michael Niedermayer01f48952005-07-17 22:24:36543 st->codec->sample_rate = lpcm_freq_tab[freq];
544 st->codec->channels = 1 + (b1 & 7);
Luca Abenidd1c8f32008-09-08 14:24:59545 st->codec->bits_per_coded_sample = 16 + ((b1 >> 6) & 3) * 4;
Lars Täuber4860abb2008-05-21 02:26:42546 st->codec->bit_rate = st->codec->channels *
547 st->codec->sample_rate *
Luca Abenidd1c8f32008-09-08 14:24:59548 st->codec->bits_per_coded_sample;
549 if (st->codec->bits_per_coded_sample == 16)
Lars Täuber4860abb2008-05-21 02:26:42550 st->codec->codec_id = CODEC_ID_PCM_S16BE;
Luca Abenidd1c8f32008-09-08 14:24:59551 else if (st->codec->bits_per_coded_sample == 28)
Lars Täuber4860abb2008-05-21 02:26:42552 return AVERROR(EINVAL);
Fabrice Bellard9ec05e32003-01-31 17:04:46553 }
Fabrice Bellardde6d9b62001-07-22 14:18:56554 av_new_packet(pkt, len);
Björn Axelsson899681c2007-11-21 07:41:00555 get_buffer(s->pb, pkt->data, pkt->size);
Fabrice Bellardde6d9b62001-07-22 14:18:56556 pkt->pts = pts;
Fabrice Bellard27f388a2003-11-10 18:47:52557 pkt->dts = dts;
Fabrice Bellarddb7f1f92002-05-20 16:29:40558 pkt->stream_index = st->index;
Michel Bardiaux27a206e2003-12-09 18:06:18559#if 0
Michael Niedermayerb9866eb2005-01-22 13:36:02560 av_log(s, AV_LOG_DEBUG, "%d: pts=%0.3f dts=%0.3f size=%d\n",
561 pkt->stream_index, pkt->pts / 90000.0, pkt->dts / 90000.0, pkt->size);
Michel Bardiaux27a206e2003-12-09 18:06:18562#endif
Mike Melanson0bd586c2004-06-19 03:59:34563
Fabrice Bellardde6d9b62001-07-22 14:18:56564 return 0;
565}
566
Diego Biurrun115329f2005-12-17 18:14:38567static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index,
Michael Niedermayer8d14a252004-04-12 16:50:03568 int64_t *ppos, int64_t pos_limit)
Fabrice Bellard27f388a2003-11-10 18:47:52569{
570 int len, startcode;
571 int64_t pos, pts, dts;
572
573 pos = *ppos;
574#ifdef DEBUG_SEEK
Steve L'Homme949b1a12006-11-01 22:39:58575 printf("read_dts: pos=0x%"PRIx64" next=%d -> ", pos, find_next);
Fabrice Bellard27f388a2003-11-10 18:47:52576#endif
Joakim Plate5faf1682008-05-29 09:50:17577 if (url_fseek(s->pb, pos, SEEK_SET) < 0)
578 return AV_NOPTS_VALUE;
579
Fabrice Bellard27f388a2003-11-10 18:47:52580 for(;;) {
Michael Niedermayer8d14a252004-04-12 16:50:03581 len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts);
Fabrice Bellard27f388a2003-11-10 18:47:52582 if (len < 0) {
583#ifdef DEBUG_SEEK
584 printf("none (ret=%d)\n", len);
585#endif
586 return AV_NOPTS_VALUE;
587 }
Diego Biurrun115329f2005-12-17 18:14:38588 if (startcode == s->streams[stream_index]->id &&
Fabrice Bellard27f388a2003-11-10 18:47:52589 dts != AV_NOPTS_VALUE) {
590 break;
591 }
Björn Axelsson899681c2007-11-21 07:41:00592 url_fskip(s->pb, len);
Fabrice Bellard27f388a2003-11-10 18:47:52593 }
594#ifdef DEBUG_SEEK
Steve L'Homme949b1a12006-11-01 22:39:58595 printf("pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n", pos, dts, dts / 90000.0);
Fabrice Bellard27f388a2003-11-10 18:47:52596#endif
597 *ppos = pos;
Michael Niedermayercdd50342004-05-23 16:26:12598 return dts;
Fabrice Bellard27f388a2003-11-10 18:47:52599}
600
Måns Rullgårdd2a067d2006-07-09 23:40:53601AVInputFormat mpegps_demuxer = {
Fabrice Bellarddb7f1f92002-05-20 16:29:40602 "mpeg",
Stefano Sabatinibde15e72008-06-03 16:20:54603 NULL_IF_CONFIG_SMALL("MPEG-PS format"),
Fabrice Bellarddb7f1f92002-05-20 16:29:40604 sizeof(MpegDemuxContext),
605 mpegps_probe,
606 mpegps_read_header,
607 mpegps_read_packet,
Baptiste Coudurier9b64a032008-06-19 23:25:04608 NULL,
Michael Niedermayer8d14a252004-04-12 16:50:03609 NULL, //mpegps_read_seek,
610 mpegps_read_dts,
Michael Niedermayerff9c8d72008-08-15 16:13:05611 .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
Fabrice Bellarddb7f1f92002-05-20 16:29:40612};