Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1 | /* |
Baptiste Coudurier | 2abe5a0 | 2007-06-21 09:39:29 | [diff] [blame] | 2 | * MPEG1/2 demuxer |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 3 | * Copyright (c) 2000, 2001, 2002 Fabrice Bellard. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 4 | * |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 5 | * This file is part of FFmpeg. |
| 6 | * |
| 7 | * FFmpeg is free software; you can redistribute it and/or |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation; either |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 10 | * version 2.1 of the License, or (at your option) any later version. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 11 | * |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 12 | * FFmpeg is distributed in the hope that it will be useful, |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 16 | * |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 17 | * You should have received a copy of the GNU Lesser General Public |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 18 | * License along with FFmpeg; if not, write to the Free Software |
Diego Biurrun | 5509bff | 2006-01-12 22:43:26 | [diff] [blame] | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 20 | */ |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 21 | |
Baptiste Coudurier | 2abe5a0 | 2007-06-21 09:39:29 | [diff] [blame] | 22 | #include "avformat.h" |
| 23 | #include "mpeg.h" |
| 24 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 25 | //#define DEBUG_SEEK |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 26 | |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 27 | #undef NDEBUG |
| 28 | #include <assert.h> |
| 29 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 30 | /*********************************************/ |
| 31 | /* demux code */ |
| 32 | |
| 33 | #define MAX_SYNC_SIZE 100000 |
| 34 | |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 35 | static 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; |
| 45 | p+=5; |
| 46 | }else if((*p&0xF0) == 0x30){ |
| 47 | pes1= p[0]&p[2]&p[4]&p[5]&p[7]&p[9]&1; |
| 48 | p+=10; |
| 49 | }else |
| 50 | pes1 = *p == 0x0F; |
| 51 | |
| 52 | return pes1||pes2; |
| 53 | } |
| 54 | |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 55 | static int mpegps_probe(AVProbeData *p) |
| 56 | { |
Michael Niedermayer | 9870a7b | 2006-02-08 17:35:44 | [diff] [blame] | 57 | uint32_t code= -1; |
Michael Niedermayer | 7e1720d | 2007-12-03 09:37:06 | [diff] [blame] | 58 | int sys=0, pspack=0, priv1=0, vid=0, audio=0, invalid=0; |
Michael Niedermayer | 95f97de | 2004-10-01 16:00:00 | [diff] [blame] | 59 | int i; |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 60 | int score=0; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 61 | |
Michael Niedermayer | 9870a7b | 2006-02-08 17:35:44 | [diff] [blame] | 62 | for(i=0; i<p->buf_size; i++){ |
| 63 | code = (code<<8) + p->buf[i]; |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 64 | if ((code & 0xffffff00) == 0x100) { |
Michael Niedermayer | 0c904db | 2007-11-03 14:57:26 | [diff] [blame] | 65 | int pes= check_pes(p->buf+i, p->buf+p->buf_size); |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 66 | |
Måns Rullgård | 25c533a | 2006-06-29 19:03:53 | [diff] [blame] | 67 | if(code == SYSTEM_HEADER_START_CODE) sys++; |
| 68 | else if(code == PRIVATE_STREAM_1) priv1++; |
| 69 | else if(code == PACK_START_CODE) pspack++; |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 70 | else if((code & 0xf0) == VIDEO_ID && pes) vid++; |
| 71 | else if((code & 0xe0) == AUDIO_ID && pes) audio++; |
Michael Niedermayer | 7e1720d | 2007-12-03 09:37:06 | [diff] [blame] | 72 | |
| 73 | else if((code & 0xf0) == VIDEO_ID && !pes) invalid++; |
| 74 | else if((code & 0xe0) == AUDIO_ID && !pes) invalid++; |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 75 | } |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 76 | } |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 77 | |
Michael Niedermayer | 7e1720d | 2007-12-03 09:37:06 | [diff] [blame] | 78 | if(vid+audio > invalid) /* invalid VDR files nd short PES streams */ |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 79 | score= AVPROBE_SCORE_MAX/4; |
| 80 | |
Michael Niedermayer | 3504467 | 2007-08-05 02:15:46 | [diff] [blame] | 81 | //av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d len:%d\n", sys, priv1, pspack,vid, audio, p->buf_size); |
Michael Niedermayer | 7e1720d | 2007-12-03 09:37:06 | [diff] [blame] | 82 | if(sys>invalid && sys*9 <= pspack*10) |
Michael Niedermayer | 9870a7b | 2006-02-08 17:35:44 | [diff] [blame] | 83 | return AVPROBE_SCORE_MAX/2+2; // +1 for .mpg |
Michael Niedermayer | 7e1720d | 2007-12-03 09:37:06 | [diff] [blame] | 84 | if(priv1 + vid + audio > invalid && (priv1+vid+audio)*9 <= pspack*10) |
Michael Niedermayer | 0b2bb35 | 2006-02-11 09:27:00 | [diff] [blame] | 85 | return AVPROBE_SCORE_MAX/2+2; // +1 for .mpg |
Michael Niedermayer | 4cd2508 | 2007-08-05 02:17:06 | [diff] [blame] | 86 | if((!!vid ^ !!audio) && (audio+vid > 1) && !sys && !pspack && p->buf_size>2048) /* PES stream */ |
Måns Rullgård | 25c533a | 2006-06-29 19:03:53 | [diff] [blame] | 87 | return AVPROBE_SCORE_MAX/2+2; |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 88 | |
| 89 | //02-Penguin.flac has sys:0 priv1:0 pspack:0 vid:0 audio:1 |
| 90 | return score; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 94 | typedef struct MpegDemuxContext { |
Måns Rullgård | 191e8ca | 2006-09-27 19:47:39 | [diff] [blame] | 95 | int32_t header_state; |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 96 | unsigned char psm_es_type[256]; |
Aurelien Jacobs | 8cd4ac3 | 2007-11-07 23:56:00 | [diff] [blame] | 97 | int sofdec; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 98 | } MpegDemuxContext; |
| 99 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 100 | static int mpegps_read_header(AVFormatContext *s, |
| 101 | AVFormatParameters *ap) |
| 102 | { |
| 103 | MpegDemuxContext *m = s->priv_data; |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 104 | const char *sofdec = "Sofdec"; |
| 105 | int v, i = 0; |
Aurelien Jacobs | 8cd4ac3 | 2007-11-07 23:56:00 | [diff] [blame] | 106 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 107 | m->header_state = 0xff; |
| 108 | s->ctx_flags |= AVFMTCTX_NOHEADER; |
| 109 | |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 110 | m->sofdec = -1; |
| 111 | do { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 112 | v = get_byte(s->pb); |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 113 | m->header_state = m->header_state << 8 | v; |
| 114 | m->sofdec++; |
| 115 | } while (v == sofdec[i] && i++ < 6); |
Aurelien Jacobs | 8cd4ac3 | 2007-11-07 23:56:00 | [diff] [blame] | 116 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 117 | /* no need to do more */ |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | static int64_t get_pts(ByteIOContext *pb, int c) |
| 122 | { |
Ivo van Poorten | 66e9e30 | 2008-01-07 23:32:57 | [diff] [blame] | 123 | uint8_t buf[5]; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 124 | |
Ivo van Poorten | 66e9e30 | 2008-01-07 23:32:57 | [diff] [blame] | 125 | buf[0] = c<0 ? get_byte(pb) : c; |
| 126 | get_buffer(pb, buf+1, 4); |
| 127 | |
| 128 | return ff_parse_pes_pts(buf); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 129 | } |
| 130 | |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 131 | static int find_next_start_code(ByteIOContext *pb, int *size_ptr, |
Måns Rullgård | 191e8ca | 2006-09-27 19:47:39 | [diff] [blame] | 132 | int32_t *header_state) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 133 | { |
| 134 | unsigned int state, v; |
| 135 | int val, n; |
| 136 | |
| 137 | state = *header_state; |
| 138 | n = *size_ptr; |
| 139 | while (n > 0) { |
| 140 | if (url_feof(pb)) |
| 141 | break; |
| 142 | v = get_byte(pb); |
| 143 | n--; |
| 144 | if (state == 0x000001) { |
| 145 | state = ((state << 8) | v) & 0xffffff; |
| 146 | val = state; |
| 147 | goto found; |
| 148 | } |
| 149 | state = ((state << 8) | v) & 0xffffff; |
| 150 | } |
| 151 | val = -1; |
| 152 | found: |
| 153 | *header_state = state; |
| 154 | *size_ptr = n; |
| 155 | return val; |
| 156 | } |
| 157 | |
Måns Rullgård | 88730be | 2005-02-24 19:08:50 | [diff] [blame] | 158 | #if 0 /* unused, remove? */ |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 159 | /* XXX: optimize */ |
| 160 | static int find_prev_start_code(ByteIOContext *pb, int *size_ptr) |
Juanjo | 001e3f5 | 2002-03-17 17:44:45 | [diff] [blame] | 161 | { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 162 | int64_t pos, pos_start; |
| 163 | int max_size, start_code; |
Fabrice Bellard | da24c5e | 2003-10-29 14:20:56 | [diff] [blame] | 164 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 165 | max_size = *size_ptr; |
| 166 | pos_start = url_ftell(pb); |
| 167 | |
| 168 | /* in order to go faster, we fill the buffer */ |
| 169 | pos = pos_start - 16386; |
| 170 | if (pos < 0) |
| 171 | pos = 0; |
| 172 | url_fseek(pb, pos, SEEK_SET); |
| 173 | get_byte(pb); |
| 174 | |
| 175 | pos = pos_start; |
| 176 | for(;;) { |
| 177 | pos--; |
| 178 | if (pos < 0 || (pos_start - pos) >= max_size) { |
| 179 | start_code = -1; |
| 180 | goto the_end; |
| 181 | } |
| 182 | url_fseek(pb, pos, SEEK_SET); |
| 183 | start_code = get_be32(pb); |
| 184 | if ((start_code & 0xffffff00) == 0x100) |
| 185 | break; |
| 186 | } |
| 187 | the_end: |
| 188 | *size_ptr = pos_start - pos; |
| 189 | return start_code; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 190 | } |
Måns Rullgård | 88730be | 2005-02-24 19:08:50 | [diff] [blame] | 191 | #endif |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 192 | |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 193 | /** |
| 194 | * Extracts stream types from a program stream map |
| 195 | * According to ISO/IEC 13818-1 ('MPEG-2 Systems') table 2-35 |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 196 | * |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 197 | * @return number of bytes occupied by PSM in the bitstream |
| 198 | */ |
| 199 | static long mpegps_psm_parse(MpegDemuxContext *m, ByteIOContext *pb) |
| 200 | { |
| 201 | int psm_length, ps_info_length, es_map_length; |
| 202 | |
| 203 | psm_length = get_be16(pb); |
| 204 | get_byte(pb); |
| 205 | get_byte(pb); |
| 206 | ps_info_length = get_be16(pb); |
| 207 | |
| 208 | /* skip program_stream_info */ |
| 209 | url_fskip(pb, ps_info_length); |
| 210 | es_map_length = get_be16(pb); |
| 211 | |
| 212 | /* at least one es available? */ |
| 213 | while (es_map_length >= 4){ |
| 214 | unsigned char type = get_byte(pb); |
| 215 | unsigned char es_id = get_byte(pb); |
| 216 | uint16_t es_info_length = get_be16(pb); |
| 217 | /* remember mapping from stream id to stream type */ |
| 218 | m->psm_es_type[es_id] = type; |
| 219 | /* skip program_stream_info */ |
| 220 | url_fskip(pb, es_info_length); |
| 221 | es_map_length -= 4 + es_info_length; |
| 222 | } |
| 223 | get_be32(pb); /* crc32 */ |
| 224 | return 2 + psm_length; |
| 225 | } |
| 226 | |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 227 | /* read the next PES header. Return its position in ppos |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 228 | (if not NULL), and its start code, pts and dts. |
| 229 | */ |
| 230 | static int mpegps_read_pes_header(AVFormatContext *s, |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 231 | int64_t *ppos, int *pstart_code, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 232 | int64_t *ppts, int64_t *pdts) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 233 | { |
| 234 | MpegDemuxContext *m = s->priv_data; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 235 | int len, size, startcode, c, flags, header_len; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 236 | int pes_ext, ext2_len, id_ext, skip; |
Michael Niedermayer | e56cfad | 2007-01-17 10:19:10 | [diff] [blame] | 237 | int64_t pts, dts; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 238 | int64_t last_sync= url_ftell(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 239 | |
Michael Niedermayer | e56cfad | 2007-01-17 10:19:10 | [diff] [blame] | 240 | error_redo: |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 241 | url_fseek(s->pb, last_sync, SEEK_SET); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 242 | redo: |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 243 | /* next start code (should be immediately after) */ |
| 244 | m->header_state = 0xff; |
| 245 | size = MAX_SYNC_SIZE; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 246 | startcode = find_next_start_code(s->pb, &size, &m->header_state); |
| 247 | last_sync = url_ftell(s->pb); |
| 248 | //printf("startcode=%x pos=0x%"PRIx64"\n", startcode, url_ftell(s->pb)); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 249 | if (startcode < 0) |
Panagiotis Issaris | 6f3e0b2 | 2007-07-19 15:23:32 | [diff] [blame] | 250 | return AVERROR(EIO); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 251 | if (startcode == PACK_START_CODE) |
| 252 | goto redo; |
| 253 | if (startcode == SYSTEM_HEADER_START_CODE) |
| 254 | goto redo; |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 255 | if (startcode == PADDING_STREAM) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 256 | url_fskip(s->pb, get_be16(s->pb)); |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 257 | goto redo; |
| 258 | } |
| 259 | if (startcode == PRIVATE_STREAM_2) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 260 | len = get_be16(s->pb); |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 261 | if (!m->sofdec) { |
| 262 | while (len-- >= 6) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 263 | if (get_byte(s->pb) == 'S') { |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 264 | uint8_t buf[5]; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 265 | get_buffer(s->pb, buf, sizeof(buf)); |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 266 | m->sofdec = !memcmp(buf, "ofdec", 5); |
| 267 | len -= sizeof(buf); |
| 268 | break; |
| 269 | } |
| 270 | } |
| 271 | m->sofdec -= !m->sofdec; |
| 272 | } |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 273 | url_fskip(s->pb, len); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 274 | goto redo; |
| 275 | } |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 276 | if (startcode == PROGRAM_STREAM_MAP) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 277 | mpegps_psm_parse(m, s->pb); |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 278 | goto redo; |
| 279 | } |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 280 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 281 | /* find matching stream */ |
| 282 | if (!((startcode >= 0x1c0 && startcode <= 0x1df) || |
| 283 | (startcode >= 0x1e0 && startcode <= 0x1ef) || |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 284 | (startcode == 0x1bd) || (startcode == 0x1fd))) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 285 | goto redo; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 286 | if (ppos) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 287 | *ppos = url_ftell(s->pb) - 4; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 288 | } |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 289 | len = get_be16(s->pb); |
Michael Niedermayer | 75a9fbb | 2007-01-17 10:45:59 | [diff] [blame] | 290 | pts = |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 291 | dts = AV_NOPTS_VALUE; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 292 | /* stuffing */ |
| 293 | for(;;) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 294 | if (len < 1) |
Michael Niedermayer | e56cfad | 2007-01-17 10:19:10 | [diff] [blame] | 295 | goto error_redo; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 296 | c = get_byte(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 297 | len--; |
| 298 | /* XXX: for mpeg1, should test only bit 7 */ |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 299 | if (c != 0xff) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 300 | break; |
| 301 | } |
| 302 | if ((c & 0xc0) == 0x40) { |
| 303 | /* buffer scale & size */ |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 304 | get_byte(s->pb); |
| 305 | c = get_byte(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 306 | len -= 2; |
| 307 | } |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 308 | if ((c & 0xe0) == 0x20) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 309 | dts = pts = get_pts(s->pb, c); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 310 | len -= 4; |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 311 | if (c & 0x10){ |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 312 | dts = get_pts(s->pb, -1); |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 313 | len -= 5; |
| 314 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 315 | } else if ((c & 0xc0) == 0x80) { |
| 316 | /* mpeg 2 PES */ |
Måns Rullgård | d8bee8d | 2006-06-19 22:20:38 | [diff] [blame] | 317 | #if 0 /* some streams have this field set for no apparent reason */ |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 318 | if ((c & 0x30) != 0) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 319 | /* Encrypted multiplex not handled */ |
| 320 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 321 | } |
Måns Rullgård | d8bee8d | 2006-06-19 22:20:38 | [diff] [blame] | 322 | #endif |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 323 | flags = get_byte(s->pb); |
| 324 | header_len = get_byte(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 325 | len -= 2; |
| 326 | if (header_len > len) |
Michael Niedermayer | e56cfad | 2007-01-17 10:19:10 | [diff] [blame] | 327 | goto error_redo; |
Michael Niedermayer | 8003620 | 2007-01-17 12:06:31 | [diff] [blame] | 328 | len -= header_len; |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 329 | if (flags & 0x80) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 330 | dts = pts = get_pts(s->pb, -1); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 331 | header_len -= 5; |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 332 | if (flags & 0x40) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 333 | dts = get_pts(s->pb, -1); |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 334 | header_len -= 5; |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 335 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 336 | } |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 337 | if (flags & 0x01) { /* PES extension */ |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 338 | pes_ext = get_byte(s->pb); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 339 | header_len--; |
| 340 | if (pes_ext & 0x40) { /* pack header - should be zero in PS */ |
| 341 | goto error_redo; |
| 342 | } |
| 343 | /* Skip PES private data, program packet sequence counter and P-STD buffer */ |
| 344 | skip = (pes_ext >> 4) & 0xb; |
| 345 | skip += skip & 0x9; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 346 | url_fskip(s->pb, skip); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 347 | header_len -= skip; |
| 348 | |
| 349 | if (pes_ext & 0x01) { /* PES extension 2 */ |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 350 | ext2_len = get_byte(s->pb); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 351 | header_len--; |
| 352 | if ((ext2_len & 0x7f) > 0) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 353 | id_ext = get_byte(s->pb); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 354 | if ((id_ext & 0x80) == 0) |
| 355 | startcode = ((startcode & 0xff) << 8) | id_ext; |
| 356 | header_len--; |
| 357 | } |
| 358 | } |
| 359 | } |
Michael Niedermayer | 8003620 | 2007-01-17 12:06:31 | [diff] [blame] | 360 | if(header_len < 0) |
| 361 | goto error_redo; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 362 | url_fskip(s->pb, header_len); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 363 | } |
Dmitry Borisov | df70de1 | 2004-04-23 21:02:01 | [diff] [blame] | 364 | else if( c!= 0xf ) |
| 365 | goto redo; |
| 366 | |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 367 | if (startcode == PRIVATE_STREAM_1 && !m->psm_es_type[startcode & 0xff]) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 368 | startcode = get_byte(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 369 | len--; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 370 | if (startcode >= 0x80 && startcode <= 0xcf) { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 371 | /* audio: skip header */ |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 372 | get_byte(s->pb); |
| 373 | get_byte(s->pb); |
| 374 | get_byte(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 375 | len -= 3; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 376 | if (startcode >= 0xb0 && startcode <= 0xbf) { |
| 377 | /* MLP/TrueHD audio has a 4-byte header */ |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 378 | get_byte(s->pb); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 379 | len--; |
| 380 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 381 | } |
| 382 | } |
Michael Niedermayer | 7e4709b | 2007-01-17 10:44:57 | [diff] [blame] | 383 | if(len<0) |
| 384 | goto error_redo; |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 385 | if(dts != AV_NOPTS_VALUE && ppos){ |
| 386 | int i; |
| 387 | for(i=0; i<s->nb_streams; i++){ |
| 388 | if(startcode == s->streams[i]->id) { |
Paul Kelly | 3dea63b | 2008-01-13 13:33:37 | [diff] [blame^] | 389 | ff_reduce_index(s, i); |
Michael Niedermayer | 30a43f2 | 2006-03-01 11:29:55 | [diff] [blame] | 390 | av_add_index_entry(s->streams[i], *ppos, dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */); |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 391 | } |
| 392 | } |
| 393 | } |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 394 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 395 | *pstart_code = startcode; |
| 396 | *ppts = pts; |
| 397 | *pdts = dts; |
| 398 | return len; |
| 399 | } |
| 400 | |
| 401 | static int mpegps_read_packet(AVFormatContext *s, |
| 402 | AVPacket *pkt) |
| 403 | { |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 404 | MpegDemuxContext *m = s->priv_data; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 405 | AVStream *st; |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 406 | int len, startcode, i, type, codec_id = 0, es_type; |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 407 | int64_t pts, dts, dummy_pos; //dummy_pos is needed for the index building to work |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 408 | |
| 409 | redo: |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 410 | len = mpegps_read_pes_header(s, &dummy_pos, &startcode, &pts, &dts); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 411 | if (len < 0) |
| 412 | return len; |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 413 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 414 | /* now find stream */ |
| 415 | for(i=0;i<s->nb_streams;i++) { |
| 416 | st = s->streams[i]; |
| 417 | if (st->id == startcode) |
| 418 | goto found; |
| 419 | } |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 420 | |
| 421 | es_type = m->psm_es_type[startcode & 0xff]; |
| 422 | if(es_type > 0){ |
| 423 | if(es_type == STREAM_TYPE_VIDEO_MPEG1){ |
| 424 | codec_id = CODEC_ID_MPEG2VIDEO; |
| 425 | type = CODEC_TYPE_VIDEO; |
| 426 | } else if(es_type == STREAM_TYPE_VIDEO_MPEG2){ |
| 427 | codec_id = CODEC_ID_MPEG2VIDEO; |
| 428 | type = CODEC_TYPE_VIDEO; |
| 429 | } else if(es_type == STREAM_TYPE_AUDIO_MPEG1 || |
| 430 | es_type == STREAM_TYPE_AUDIO_MPEG2){ |
| 431 | codec_id = CODEC_ID_MP3; |
| 432 | type = CODEC_TYPE_AUDIO; |
| 433 | } else if(es_type == STREAM_TYPE_AUDIO_AAC){ |
| 434 | codec_id = CODEC_ID_AAC; |
| 435 | type = CODEC_TYPE_AUDIO; |
| 436 | } else if(es_type == STREAM_TYPE_VIDEO_MPEG4){ |
| 437 | codec_id = CODEC_ID_MPEG4; |
| 438 | type = CODEC_TYPE_VIDEO; |
| 439 | } else if(es_type == STREAM_TYPE_VIDEO_H264){ |
| 440 | codec_id = CODEC_ID_H264; |
| 441 | type = CODEC_TYPE_VIDEO; |
| 442 | } else if(es_type == STREAM_TYPE_AUDIO_AC3){ |
| 443 | codec_id = CODEC_ID_AC3; |
| 444 | type = CODEC_TYPE_AUDIO; |
| 445 | } else { |
| 446 | goto skip; |
| 447 | } |
| 448 | } else if (startcode >= 0x1e0 && startcode <= 0x1ef) { |
Måns Rullgård | 83d0731 | 2006-07-03 21:40:01 | [diff] [blame] | 449 | static const unsigned char avs_seqh[4] = { 0, 0, 1, 0xb0 }; |
| 450 | unsigned char buf[8]; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 451 | get_buffer(s->pb, buf, 8); |
| 452 | url_fseek(s->pb, -8, SEEK_CUR); |
Måns Rullgård | 83d0731 | 2006-07-03 21:40:01 | [diff] [blame] | 453 | if(!memcmp(buf, avs_seqh, 4) && (buf[6] != 0 || buf[7] != 1)) |
| 454 | codec_id = CODEC_ID_CAVS; |
| 455 | else |
| 456 | codec_id = CODEC_ID_MPEG2VIDEO; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 457 | type = CODEC_TYPE_VIDEO; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 458 | } else if (startcode >= 0x1c0 && startcode <= 0x1df) { |
| 459 | type = CODEC_TYPE_AUDIO; |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 460 | codec_id = m->sofdec > 0 ? CODEC_ID_ADPCM_ADX : CODEC_ID_MP2; |
Joakim Plate | 3f2bf07 | 2005-05-20 13:10:09 | [diff] [blame] | 461 | } else if (startcode >= 0x80 && startcode <= 0x87) { |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 462 | type = CODEC_TYPE_AUDIO; |
| 463 | codec_id = CODEC_ID_AC3; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 464 | } else if ((startcode >= 0x88 && startcode <= 0x8f) |
| 465 | ||( startcode >= 0x98 && startcode <= 0x9f)) { |
| 466 | /* 0x90 - 0x97 is reserved for SDDS in DVD specs */ |
Michael Niedermayer | 23c9925 | 2004-07-14 01:32:14 | [diff] [blame] | 467 | type = CODEC_TYPE_AUDIO; |
| 468 | codec_id = CODEC_ID_DTS; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 469 | } else if (startcode >= 0xa0 && startcode <= 0xaf) { |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 470 | type = CODEC_TYPE_AUDIO; |
| 471 | codec_id = CODEC_ID_PCM_S16BE; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 472 | } else if (startcode >= 0xb0 && startcode <= 0xbf) { |
| 473 | type = CODEC_TYPE_AUDIO; |
| 474 | codec_id = CODEC_ID_MLP; |
| 475 | } else if (startcode >= 0xc0 && startcode <= 0xcf) { |
| 476 | /* Used for both AC-3 and E-AC-3 in EVOB files */ |
| 477 | type = CODEC_TYPE_AUDIO; |
| 478 | codec_id = CODEC_ID_AC3; |
Fabrice Bellard | a9c3213 | 2005-06-03 14:01:49 | [diff] [blame] | 479 | } else if (startcode >= 0x20 && startcode <= 0x3f) { |
| 480 | type = CODEC_TYPE_SUBTITLE; |
| 481 | codec_id = CODEC_ID_DVD_SUBTITLE; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 482 | } else if (startcode >= 0xfd55 && startcode <= 0xfd5f) { |
| 483 | type = CODEC_TYPE_VIDEO; |
| 484 | codec_id = CODEC_ID_VC1; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 485 | } else { |
| 486 | skip: |
| 487 | /* skip packet */ |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 488 | url_fskip(s->pb, len); |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 489 | goto redo; |
| 490 | } |
Fabrice Bellard | 1e5c667 | 2002-10-04 15:46:59 | [diff] [blame] | 491 | /* no stream found: add a new stream */ |
| 492 | st = av_new_stream(s, startcode); |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 493 | if (!st) |
Fabrice Bellard | 1e5c667 | 2002-10-04 15:46:59 | [diff] [blame] | 494 | goto skip; |
Michael Niedermayer | 01f4895 | 2005-07-17 22:24:36 | [diff] [blame] | 495 | st->codec->codec_type = type; |
| 496 | st->codec->codec_id = codec_id; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 497 | if (codec_id != CODEC_ID_PCM_S16BE) |
Aurelien Jacobs | 57004ff | 2007-04-15 13:51:57 | [diff] [blame] | 498 | st->need_parsing = AVSTREAM_PARSE_FULL; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 499 | found: |
Michael Niedermayer | f3356e9 | 2005-03-17 01:25:01 | [diff] [blame] | 500 | if(st->discard >= AVDISCARD_ALL) |
Michael Niedermayer | b9866eb | 2005-01-22 13:36:02 | [diff] [blame] | 501 | goto skip; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 502 | if (startcode >= 0xa0 && startcode <= 0xaf) { |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 503 | int b1, freq; |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 504 | |
| 505 | /* for LPCM, we just skip the header and consider it is raw |
| 506 | audio data */ |
| 507 | if (len <= 3) |
| 508 | goto skip; |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 509 | get_byte(s->pb); /* emphasis (1), muse(1), reserved(1), frame number(5) */ |
| 510 | b1 = get_byte(s->pb); /* quant (2), freq(2), reserved(1), channels(3) */ |
| 511 | get_byte(s->pb); /* dynamic range control (0x80 = off) */ |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 512 | len -= 3; |
| 513 | freq = (b1 >> 4) & 3; |
Michael Niedermayer | 01f4895 | 2005-07-17 22:24:36 | [diff] [blame] | 514 | st->codec->sample_rate = lpcm_freq_tab[freq]; |
| 515 | st->codec->channels = 1 + (b1 & 7); |
| 516 | st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * 2; |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 517 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 518 | av_new_packet(pkt, len); |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 519 | get_buffer(s->pb, pkt->data, pkt->size); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 520 | pkt->pts = pts; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 521 | pkt->dts = dts; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 522 | pkt->stream_index = st->index; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 523 | #if 0 |
Michael Niedermayer | b9866eb | 2005-01-22 13:36:02 | [diff] [blame] | 524 | av_log(s, AV_LOG_DEBUG, "%d: pts=%0.3f dts=%0.3f size=%d\n", |
| 525 | pkt->stream_index, pkt->pts / 90000.0, pkt->dts / 90000.0, pkt->size); |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 526 | #endif |
Mike Melanson | 0bd586c | 2004-06-19 03:59:34 | [diff] [blame] | 527 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 528 | return 0; |
| 529 | } |
| 530 | |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 531 | static int mpegps_read_close(AVFormatContext *s) |
Juanjo | 001e3f5 | 2002-03-17 17:44:45 | [diff] [blame] | 532 | { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 533 | return 0; |
| 534 | } |
| 535 | |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 536 | static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 537 | int64_t *ppos, int64_t pos_limit) |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 538 | { |
| 539 | int len, startcode; |
| 540 | int64_t pos, pts, dts; |
| 541 | |
| 542 | pos = *ppos; |
| 543 | #ifdef DEBUG_SEEK |
Steve L'Homme | 949b1a1 | 2006-11-01 22:39:58 | [diff] [blame] | 544 | printf("read_dts: pos=0x%"PRIx64" next=%d -> ", pos, find_next); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 545 | #endif |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 546 | url_fseek(s->pb, pos, SEEK_SET); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 547 | for(;;) { |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 548 | len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 549 | if (len < 0) { |
| 550 | #ifdef DEBUG_SEEK |
| 551 | printf("none (ret=%d)\n", len); |
| 552 | #endif |
| 553 | return AV_NOPTS_VALUE; |
| 554 | } |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 555 | if (startcode == s->streams[stream_index]->id && |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 556 | dts != AV_NOPTS_VALUE) { |
| 557 | break; |
| 558 | } |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 559 | url_fskip(s->pb, len); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 560 | } |
| 561 | #ifdef DEBUG_SEEK |
Steve L'Homme | 949b1a1 | 2006-11-01 22:39:58 | [diff] [blame] | 562 | printf("pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n", pos, dts, dts / 90000.0); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 563 | #endif |
| 564 | *ppos = pos; |
Michael Niedermayer | cdd5034 | 2004-05-23 16:26:12 | [diff] [blame] | 565 | return dts; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 566 | } |
| 567 | |
Måns Rullgård | d2a067d | 2006-07-09 23:40:53 | [diff] [blame] | 568 | AVInputFormat mpegps_demuxer = { |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 569 | "mpeg", |
| 570 | "MPEG PS format", |
| 571 | sizeof(MpegDemuxContext), |
| 572 | mpegps_probe, |
| 573 | mpegps_read_header, |
| 574 | mpegps_read_packet, |
| 575 | mpegps_read_close, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 576 | NULL, //mpegps_read_seek, |
| 577 | mpegps_read_dts, |
Fabrice Bellard | a9c3213 | 2005-06-03 14:01:49 | [diff] [blame] | 578 | .flags = AVFMT_SHOW_IDS, |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 579 | }; |