Mercurial > libavformat.hg
annotate rmdec.c @ 2195:ab9e3ecd5583 libavformat
use more Vorbis metadata tags
author | mru |
---|---|
date | Sun, 24 Jun 2007 12:12:04 +0000 |
parents | da71207a7cf1 |
children | db097a051c65 |
rev | line source |
---|---|
0 | 1 /* |
2103 | 2 * "Real" compatible demuxer. |
0 | 3 * Copyright (c) 2000, 2001 Fabrice Bellard. |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1350
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1350
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1350
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1350
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1350
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1350
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
888
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
21 #include "avformat.h" | |
2103 | 22 #include "rm.h" |
2189 | 23 #include "avstring.h" |
0 | 24 |
25 static void get_str(ByteIOContext *pb, char *buf, int buf_size) | |
26 { | |
27 int len, i; | |
28 char *q; | |
29 | |
30 len = get_be16(pb); | |
31 q = buf; | |
32 for(i=0;i<len;i++) { | |
33 if (i < buf_size - 1) | |
34 *q++ = get_byte(pb); | |
35 } | |
36 *q = '\0'; | |
37 } | |
38 | |
39 static void get_str8(ByteIOContext *pb, char *buf, int buf_size) | |
40 { | |
41 int len, i; | |
42 char *q; | |
43 | |
44 len = get_byte(pb); | |
45 q = buf; | |
46 for(i=0;i<len;i++) { | |
47 if (i < buf_size - 1) | |
48 *q++ = get_byte(pb); | |
49 } | |
50 *q = '\0'; | |
51 } | |
52 | |
1106 | 53 static int rm_read_audio_stream_info(AVFormatContext *s, AVStream *st, |
194 | 54 int read_all) |
55 { | |
879 | 56 RMContext *rm = s->priv_data; |
194 | 57 ByteIOContext *pb = &s->pb; |
886
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
58 char buf[256]; |
194 | 59 uint32_t version; |
60 int i; | |
61 | |
62 /* ra type header */ | |
63 version = get_be32(pb); /* version */ | |
64 if (((version >> 16) & 0xff) == 3) { | |
886
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
65 int64_t startpos = url_ftell(pb); |
194 | 66 /* very old version */ |
67 for(i = 0; i < 14; i++) | |
68 get_byte(pb); | |
69 get_str8(pb, s->title, sizeof(s->title)); | |
70 get_str8(pb, s->author, sizeof(s->author)); | |
71 get_str8(pb, s->copyright, sizeof(s->copyright)); | |
72 get_str8(pb, s->comment, sizeof(s->comment)); | |
886
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
73 if ((startpos + (version & 0xffff)) >= url_ftell(pb) + 2) { |
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
74 // fourcc (should always be "lpcJ") |
194 | 75 get_byte(pb); |
76 get_str8(pb, buf, sizeof(buf)); | |
886
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
77 } |
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
78 // Skip extra header crap (this should never happen) |
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
79 if ((startpos + (version & 0xffff)) > url_ftell(pb)) |
7ed1351f8c7e
Fix for Real "old" files version 3 with no 4cc. Fixes thankyou144.ra
rtognimp
parents:
885
diff
changeset
|
80 url_fskip(pb, (version & 0xffff) + startpos - url_ftell(pb)); |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
81 st->codec->sample_rate = 8000; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
82 st->codec->channels = 1; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
83 st->codec->codec_type = CODEC_TYPE_AUDIO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
84 st->codec->codec_id = CODEC_ID_RA_144; |
194 | 85 } else { |
879 | 86 int flavor, sub_packet_h, coded_framesize, sub_packet_size; |
194 | 87 /* old version (4) */ |
88 get_be32(pb); /* .ra4 */ | |
687
561f27e36bc4
ra288 demuxing support (doesnt really work, might be demuxer or decoder bug)
michael
parents:
652
diff
changeset
|
89 get_be32(pb); /* data size */ |
561f27e36bc4
ra288 demuxing support (doesnt really work, might be demuxer or decoder bug)
michael
parents:
652
diff
changeset
|
90 get_be16(pb); /* version2 */ |
194 | 91 get_be32(pb); /* header size */ |
687
561f27e36bc4
ra288 demuxing support (doesnt really work, might be demuxer or decoder bug)
michael
parents:
652
diff
changeset
|
92 flavor= get_be16(pb); /* add codec info / flavor */ |
879 | 93 rm->coded_framesize = coded_framesize = get_be32(pb); /* coded frame size */ |
194 | 94 get_be32(pb); /* ??? */ |
95 get_be32(pb); /* ??? */ | |
96 get_be32(pb); /* ??? */ | |
885 | 97 rm->sub_packet_h = sub_packet_h = get_be16(pb); /* 1 */ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
98 st->codec->block_align= get_be16(pb); /* frame size */ |
879 | 99 rm->sub_packet_size = sub_packet_size = get_be16(pb); /* sub packet size */ |
687
561f27e36bc4
ra288 demuxing support (doesnt really work, might be demuxer or decoder bug)
michael
parents:
652
diff
changeset
|
100 get_be16(pb); /* ??? */ |
879 | 101 if (((version >> 16) & 0xff) == 5) { |
102 get_be16(pb); get_be16(pb); get_be16(pb); } | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
103 st->codec->sample_rate = get_be16(pb); |
194 | 104 get_be32(pb); |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
105 st->codec->channels = get_be16(pb); |
879 | 106 if (((version >> 16) & 0xff) == 5) { |
107 get_be32(pb); | |
887 | 108 buf[0] = get_byte(pb); |
109 buf[1] = get_byte(pb); | |
110 buf[2] = get_byte(pb); | |
111 buf[3] = get_byte(pb); | |
112 buf[4] = 0; | |
113 } else { | |
1441
ad3b03b7b142
reindentation, patch by From: Steve Lhomme, slhomme divxcorp com
diego
parents:
1415
diff
changeset
|
114 get_str8(pb, buf, sizeof(buf)); /* desc */ |
ad3b03b7b142
reindentation, patch by From: Steve Lhomme, slhomme divxcorp com
diego
parents:
1415
diff
changeset
|
115 get_str8(pb, buf, sizeof(buf)); /* desc */ |
887 | 116 } |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
117 st->codec->codec_type = CODEC_TYPE_AUDIO; |
194 | 118 if (!strcmp(buf, "dnet")) { |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
119 st->codec->codec_id = CODEC_ID_AC3; |
687
561f27e36bc4
ra288 demuxing support (doesnt really work, might be demuxer or decoder bug)
michael
parents:
652
diff
changeset
|
120 } else if (!strcmp(buf, "28_8")) { |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
121 st->codec->codec_id = CODEC_ID_RA_288; |
879 | 122 st->codec->extradata_size= 0; |
123 rm->audio_framesize = st->codec->block_align; | |
124 st->codec->block_align = coded_framesize; | |
1079 | 125 |
126 if(rm->audio_framesize >= UINT_MAX / sub_packet_h){ | |
127 av_log(s, AV_LOG_ERROR, "rm->audio_framesize * sub_packet_h too large\n"); | |
128 return -1; | |
129 } | |
130 | |
879 | 131 rm->audiobuf = av_malloc(rm->audio_framesize * sub_packet_h); |
2024 | 132 } else if ((!strcmp(buf, "cook")) || (!strcmp(buf, "atrc"))) { |
879 | 133 int codecdata_length, i; |
134 get_be16(pb); get_byte(pb); | |
135 if (((version >> 16) & 0xff) == 5) | |
136 get_byte(pb); | |
137 codecdata_length = get_be32(pb); | |
1079 | 138 if(codecdata_length + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)codecdata_length){ |
139 av_log(s, AV_LOG_ERROR, "codecdata_length too large\n"); | |
140 return -1; | |
141 } | |
142 | |
2024 | 143 if (!strcmp(buf, "cook")) st->codec->codec_id = CODEC_ID_COOK; |
144 else st->codec->codec_id = CODEC_ID_ATRAC3; | |
879 | 145 st->codec->extradata_size= codecdata_length; |
884
2ece9c9dd94c
malloc padding to avoid reading past the malloc()ed area.
henry
parents:
879
diff
changeset
|
146 st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
879 | 147 for(i = 0; i < codecdata_length; i++) |
148 ((uint8_t*)st->codec->extradata)[i] = get_byte(pb); | |
149 rm->audio_framesize = st->codec->block_align; | |
150 st->codec->block_align = rm->sub_packet_size; | |
1079 | 151 |
152 if(rm->audio_framesize >= UINT_MAX / sub_packet_h){ | |
153 av_log(s, AV_LOG_ERROR, "rm->audio_framesize * sub_packet_h too large\n"); | |
154 return -1; | |
155 } | |
156 | |
879 | 157 rm->audiobuf = av_malloc(rm->audio_framesize * sub_packet_h); |
1105 | 158 } else if (!strcmp(buf, "raac") || !strcmp(buf, "racp")) { |
159 int codecdata_length, i; | |
160 get_be16(pb); get_byte(pb); | |
161 if (((version >> 16) & 0xff) == 5) | |
162 get_byte(pb); | |
163 st->codec->codec_id = CODEC_ID_AAC; | |
164 codecdata_length = get_be32(pb); | |
1106 | 165 if(codecdata_length + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)codecdata_length){ |
166 av_log(s, AV_LOG_ERROR, "codecdata_length too large\n"); | |
167 return -1; | |
168 } | |
1105 | 169 if (codecdata_length >= 1) { |
170 st->codec->extradata_size = codecdata_length - 1; | |
171 st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); | |
172 get_byte(pb); | |
173 for(i = 0; i < st->codec->extradata_size; i++) | |
174 ((uint8_t*)st->codec->extradata)[i] = get_byte(pb); | |
175 } | |
194 | 176 } else { |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
177 st->codec->codec_id = CODEC_ID_NONE; |
2189 | 178 av_strlcpy(st->codec->codec_name, buf, sizeof(st->codec->codec_name)); |
194 | 179 } |
180 if (read_all) { | |
181 get_byte(pb); | |
182 get_byte(pb); | |
183 get_byte(pb); | |
885 | 184 |
194 | 185 get_str8(pb, s->title, sizeof(s->title)); |
186 get_str8(pb, s->author, sizeof(s->author)); | |
187 get_str8(pb, s->copyright, sizeof(s->copyright)); | |
188 get_str8(pb, s->comment, sizeof(s->comment)); | |
189 } | |
190 } | |
1106 | 191 return 0; |
194 | 192 } |
193 | |
194 static int rm_read_header_old(AVFormatContext *s, AVFormatParameters *ap) | |
195 { | |
196 RMContext *rm = s->priv_data; | |
197 AVStream *st; | |
198 | |
199 rm->old_format = 1; | |
200 st = av_new_stream(s, 0); | |
201 if (!st) | |
1106 | 202 return -1; |
203 return rm_read_audio_stream_info(s, st, 1); | |
194 | 204 } |
205 | |
0 | 206 static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap) |
207 { | |
208 RMContext *rm = s->priv_data; | |
209 AVStream *st; | |
210 ByteIOContext *pb = &s->pb; | |
211 unsigned int tag, v; | |
212 int tag_size, size, codec_data_size, i; | |
65 | 213 int64_t codec_pos; |
1350
f77cf5a063a8
Remove unused variables and the corresponding warnings along with them.
diego
parents:
1344
diff
changeset
|
214 unsigned int start_time, duration; |
0 | 215 char buf[128]; |
216 int flags = 0; | |
217 | |
194 | 218 tag = get_le32(pb); |
219 if (tag == MKTAG('.', 'r', 'a', 0xfd)) { | |
220 /* very old .ra format */ | |
221 return rm_read_header_old(s, ap); | |
222 } else if (tag != MKTAG('.', 'R', 'M', 'F')) { | |
482 | 223 return AVERROR_IO; |
194 | 224 } |
0 | 225 |
226 get_be32(pb); /* header size */ | |
227 get_be16(pb); | |
228 get_be32(pb); | |
229 get_be32(pb); /* number of headers */ | |
885 | 230 |
0 | 231 for(;;) { |
232 if (url_feof(pb)) | |
233 goto fail; | |
234 tag = get_le32(pb); | |
235 tag_size = get_be32(pb); | |
236 get_be16(pb); | |
237 #if 0 | |
885 | 238 printf("tag=%c%c%c%c (%08x) size=%d\n", |
0 | 239 (tag) & 0xff, |
240 (tag >> 8) & 0xff, | |
241 (tag >> 16) & 0xff, | |
242 (tag >> 24) & 0xff, | |
243 tag, | |
244 tag_size); | |
245 #endif | |
736 | 246 if (tag_size < 10 && tag != MKTAG('D', 'A', 'T', 'A')) |
0 | 247 goto fail; |
248 switch(tag) { | |
249 case MKTAG('P', 'R', 'O', 'P'): | |
250 /* file header */ | |
251 get_be32(pb); /* max bit rate */ | |
252 get_be32(pb); /* avg bit rate */ | |
253 get_be32(pb); /* max packet size */ | |
254 get_be32(pb); /* avg packet size */ | |
255 get_be32(pb); /* nb packets */ | |
256 get_be32(pb); /* duration */ | |
257 get_be32(pb); /* preroll */ | |
258 get_be32(pb); /* index offset */ | |
259 get_be32(pb); /* data offset */ | |
260 get_be16(pb); /* nb streams */ | |
261 flags = get_be16(pb); /* flags */ | |
262 break; | |
263 case MKTAG('C', 'O', 'N', 'T'): | |
264 get_str(pb, s->title, sizeof(s->title)); | |
265 get_str(pb, s->author, sizeof(s->author)); | |
266 get_str(pb, s->copyright, sizeof(s->copyright)); | |
267 get_str(pb, s->comment, sizeof(s->comment)); | |
268 break; | |
269 case MKTAG('M', 'D', 'P', 'R'): | |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
270 st = av_new_stream(s, 0); |
0 | 271 if (!st) |
272 goto fail; | |
273 st->id = get_be16(pb); | |
274 get_be32(pb); /* max bit rate */ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
275 st->codec->bit_rate = get_be32(pb); /* bit rate */ |
0 | 276 get_be32(pb); /* max packet size */ |
277 get_be32(pb); /* avg packet size */ | |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
278 start_time = get_be32(pb); /* start time */ |
0 | 279 get_be32(pb); /* preroll */ |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
280 duration = get_be32(pb); /* duration */ |
743 | 281 st->start_time = start_time; |
282 st->duration = duration; | |
0 | 283 get_str8(pb, buf, sizeof(buf)); /* desc */ |
284 get_str8(pb, buf, sizeof(buf)); /* mimetype */ | |
285 codec_data_size = get_be32(pb); | |
286 codec_pos = url_ftell(pb); | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
287 st->codec->codec_type = CODEC_TYPE_DATA; |
607 | 288 av_set_pts_info(st, 64, 1, 1000); |
0 | 289 |
290 v = get_be32(pb); | |
291 if (v == MKTAG(0xfd, 'a', 'r', '.')) { | |
292 /* ra type header */ | |
1106 | 293 if (rm_read_audio_stream_info(s, st, 0)) |
294 return -1; | |
0 | 295 } else { |
604 | 296 int fps, fps2; |
0 | 297 if (get_le32(pb) != MKTAG('V', 'I', 'D', 'O')) { |
298 fail1: | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
299 av_log(st->codec, AV_LOG_ERROR, "Unsupported video codec\n"); |
593 | 300 goto skip; |
0 | 301 } |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
302 st->codec->codec_tag = get_le32(pb); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
303 // av_log(NULL, AV_LOG_DEBUG, "%X %X\n", st->codec->codec_tag, MKTAG('R', 'V', '2', '0')); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
304 if ( st->codec->codec_tag != MKTAG('R', 'V', '1', '0') |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
305 && st->codec->codec_tag != MKTAG('R', 'V', '2', '0') |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
306 && st->codec->codec_tag != MKTAG('R', 'V', '3', '0') |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
307 && st->codec->codec_tag != MKTAG('R', 'V', '4', '0')) |
0 | 308 goto fail1; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
309 st->codec->width = get_be16(pb); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
310 st->codec->height = get_be16(pb); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
311 st->codec->time_base.num= 1; |
604 | 312 fps= get_be16(pb); |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
313 st->codec->codec_type = CODEC_TYPE_VIDEO; |
0 | 314 get_be32(pb); |
604 | 315 fps2= get_be16(pb); |
0 | 316 get_be16(pb); |
885 | 317 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
318 st->codec->extradata_size= codec_data_size - (url_ftell(pb) - codec_pos); |
1079 | 319 |
320 if(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){ | |
321 //check is redundant as get_buffer() will catch this | |
322 av_log(s, AV_LOG_ERROR, "st->codec->extradata_size too large\n"); | |
323 return -1; | |
324 } | |
884
2ece9c9dd94c
malloc padding to avoid reading past the malloc()ed area.
henry
parents:
879
diff
changeset
|
325 st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
326 get_buffer(pb, st->codec->extradata, st->codec->extradata_size); |
885 | 327 |
604 | 328 // av_log(NULL, AV_LOG_DEBUG, "fps= %d fps2= %d\n", fps, fps2); |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
329 st->codec->time_base.den = fps * st->codec->time_base.num; |
1344
770363b669aa
dont set sub_id as its completly redundant and silly
michael
parents:
1169
diff
changeset
|
330 switch(((uint8_t*)st->codec->extradata)[4]>>4){ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
331 case 1: st->codec->codec_id = CODEC_ID_RV10; break; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
332 case 2: st->codec->codec_id = CODEC_ID_RV20; break; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
333 case 3: st->codec->codec_id = CODEC_ID_RV30; break; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
334 case 4: st->codec->codec_id = CODEC_ID_RV40; break; |
638 | 335 default: goto fail1; |
336 } | |
0 | 337 } |
593 | 338 skip: |
0 | 339 /* skip codec info */ |
340 size = url_ftell(pb) - codec_pos; | |
341 url_fskip(pb, codec_data_size - size); | |
342 break; | |
343 case MKTAG('D', 'A', 'T', 'A'): | |
344 goto header_end; | |
345 default: | |
346 /* unknown tag: skip it */ | |
347 url_fskip(pb, tag_size - 10); | |
348 break; | |
349 } | |
350 } | |
351 header_end: | |
352 rm->nb_packets = get_be32(pb); /* number of packets */ | |
353 if (!rm->nb_packets && (flags & 4)) | |
354 rm->nb_packets = 3600 * 25; | |
355 get_be32(pb); /* next data header */ | |
356 return 0; | |
357 | |
358 fail: | |
359 for(i=0;i<s->nb_streams;i++) { | |
360 av_free(s->streams[i]); | |
361 } | |
482 | 362 return AVERROR_IO; |
0 | 363 } |
364 | |
365 static int get_num(ByteIOContext *pb, int *len) | |
366 { | |
367 int n, n1; | |
368 | |
369 n = get_be16(pb); | |
370 (*len)-=2; | |
371 if (n >= 0x4000) { | |
372 return n - 0x4000; | |
373 } else { | |
374 n1 = get_be16(pb); | |
375 (*len)-=2; | |
376 return (n << 16) | n1; | |
377 } | |
378 } | |
379 | |
194 | 380 /* multiple of 20 bytes for ra144 (ugly) */ |
381 #define RAW_PACKET_SIZE 1000 | |
382 | |
613 | 383 static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_index, int64_t *pos){ |
612 | 384 RMContext *rm = s->priv_data; |
385 ByteIOContext *pb = &s->pb; | |
386 int len, num, res, i; | |
387 AVStream *st; | |
632 | 388 uint32_t state=0xFFFFFFFF; |
612 | 389 |
390 while(!url_feof(pb)){ | |
613 | 391 *pos= url_ftell(pb); |
612 | 392 if(rm->remaining_len > 0){ |
393 num= rm->current_stream; | |
394 len= rm->remaining_len; | |
395 *timestamp = AV_NOPTS_VALUE; | |
396 *flags= 0; | |
397 }else{ | |
632 | 398 state= (state<<8) + get_byte(pb); |
885 | 399 |
632 | 400 if(state == MKBETAG('I', 'N', 'D', 'X')){ |
401 len = get_be16(pb) - 6; | |
402 if(len<0) | |
403 continue; | |
404 goto skip; | |
405 } | |
885 | 406 |
632 | 407 if(state > (unsigned)0xFFFF || state < 12) |
612 | 408 continue; |
632 | 409 len=state; |
410 state= 0xFFFFFFFF; | |
411 | |
612 | 412 num = get_be16(pb); |
413 *timestamp = get_be32(pb); | |
414 res= get_byte(pb); /* reserved */ | |
415 *flags = get_byte(pb); /* flags */ | |
613 | 416 |
885 | 417 |
612 | 418 len -= 12; |
419 } | |
420 for(i=0;i<s->nb_streams;i++) { | |
421 st = s->streams[i]; | |
422 if (num == st->id) | |
423 break; | |
424 } | |
425 if (i == s->nb_streams) { | |
632 | 426 skip: |
612 | 427 /* skip packet if unknown number */ |
428 url_fskip(pb, len); | |
429 rm->remaining_len -= len; | |
430 continue; | |
431 } | |
432 *stream_index= i; | |
885 | 433 |
612 | 434 return len; |
435 } | |
436 return -1; | |
437 } | |
438 | |
0 | 439 static int rm_read_packet(AVFormatContext *s, AVPacket *pkt) |
440 { | |
441 RMContext *rm = s->priv_data; | |
442 ByteIOContext *pb = &s->pb; | |
443 AVStream *st; | |
2105 | 444 int i, len, j; |
613 | 445 int64_t timestamp, pos; |
65 | 446 uint8_t *ptr; |
612 | 447 int flags; |
0 | 448 |
888 | 449 if (rm->audio_pkt_cnt) { |
879 | 450 // If there are queued audio packet return them first |
451 st = s->streams[rm->audio_stream_num]; | |
1105 | 452 if (st->codec->codec_id == CODEC_ID_AAC) |
453 av_get_packet(pb, pkt, rm->sub_packet_lengths[rm->sub_packet_cnt - rm->audio_pkt_cnt]); | |
454 else { | |
879 | 455 av_new_packet(pkt, st->codec->block_align); |
456 memcpy(pkt->data, rm->audiobuf + st->codec->block_align * | |
457 (rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - rm->audio_pkt_cnt), | |
458 st->codec->block_align); | |
1105 | 459 } |
879 | 460 rm->audio_pkt_cnt--; |
461 pkt->flags = 0; | |
462 pkt->stream_index = rm->audio_stream_num; | |
888 | 463 } else if (rm->old_format) { |
464 st = s->streams[0]; | |
465 if (st->codec->codec_id == CODEC_ID_RA_288) { | |
466 int x, y; | |
467 | |
468 for (y = 0; y < rm->sub_packet_h; y++) | |
469 for (x = 0; x < rm->sub_packet_h/2; x++) | |
470 if (get_buffer(pb, rm->audiobuf+x*2*rm->audio_framesize+y*rm->coded_framesize, rm->coded_framesize) <= 0) | |
471 return AVERROR_IO; | |
472 rm->audio_stream_num = 0; | |
473 rm->audio_pkt_cnt = rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - 1; | |
474 // Release first audio packet | |
475 av_new_packet(pkt, st->codec->block_align); | |
476 memcpy(pkt->data, rm->audiobuf, st->codec->block_align); | |
477 pkt->flags |= PKT_FLAG_KEY; // Mark first packet as keyframe | |
478 pkt->stream_index = 0; | |
479 } else { | |
480 /* just read raw bytes */ | |
481 len = RAW_PACKET_SIZE; | |
482 len= av_get_packet(pb, pkt, len); | |
483 pkt->stream_index = 0; | |
484 if (len <= 0) { | |
485 return AVERROR_IO; | |
486 } | |
487 pkt->size = len; | |
488 } | |
194 | 489 } else { |
613 | 490 int seq=1; |
652 | 491 resync: |
613 | 492 len=sync(s, ×tamp, &flags, &i, &pos); |
612 | 493 if(len<0) |
610
1ab7b989f475
try to recover from errors instead of failing fataly
michael
parents:
609
diff
changeset
|
494 return AVERROR_IO; |
612 | 495 st = s->streams[i]; |
496 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
497 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
609 | 498 int h, pic_num, len2, pos; |
499 | |
500 h= get_byte(pb); len--; | |
501 if(!(h & 0x40)){ | |
613 | 502 seq = get_byte(pb); len--; |
609 | 503 } |
504 | |
505 if((h & 0xc0) == 0x40){ | |
506 len2= pos= 0; | |
507 }else{ | |
508 len2 = get_num(pb, &len); | |
194 | 509 pos = get_num(pb, &len); |
510 } | |
511 /* picture number */ | |
609 | 512 pic_num= get_byte(pb); len--; |
513 rm->remaining_len= len; | |
514 rm->current_stream= st->id; | |
515 | |
516 // av_log(NULL, AV_LOG_DEBUG, "%X len:%d pos:%d len2:%d pic_num:%d\n",h, len, pos, len2, pic_num); | |
517 if(len2 && len2<len) | |
518 len=len2; | |
519 rm->remaining_len-= len; | |
879 | 520 av_get_packet(pb, pkt, len); |
521 | |
1970
a27976be3394
Do not return invalid pointer for non-audio or video streams.
rtogni
parents:
1443
diff
changeset
|
522 } else if (st->codec->codec_type == CODEC_TYPE_AUDIO) { |
879 | 523 if ((st->codec->codec_id == CODEC_ID_RA_288) || |
2024 | 524 (st->codec->codec_id == CODEC_ID_COOK) || |
525 (st->codec->codec_id == CODEC_ID_ATRAC3)) { | |
879 | 526 int x; |
527 int sps = rm->sub_packet_size; | |
528 int cfs = rm->coded_framesize; | |
529 int h = rm->sub_packet_h; | |
530 int y = rm->sub_packet_cnt; | |
531 int w = rm->audio_framesize; | |
532 | |
533 if (flags & 2) | |
534 y = rm->sub_packet_cnt = 0; | |
535 if (!y) | |
536 rm->audiotimestamp = timestamp; | |
537 | |
538 switch(st->codec->codec_id) { | |
539 case CODEC_ID_RA_288: | |
540 for (x = 0; x < h/2; x++) | |
541 get_buffer(pb, rm->audiobuf+x*2*w+y*cfs, cfs); | |
542 break; | |
2024 | 543 case CODEC_ID_ATRAC3: |
879 | 544 case CODEC_ID_COOK: |
545 for (x = 0; x < w/sps; x++) | |
546 get_buffer(pb, rm->audiobuf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), sps); | |
547 break; | |
548 } | |
549 | |
550 if (++(rm->sub_packet_cnt) < h) | |
551 goto resync; | |
552 else { | |
553 rm->sub_packet_cnt = 0; | |
554 rm->audio_stream_num = i; | |
555 rm->audio_pkt_cnt = h * w / st->codec->block_align - 1; | |
556 // Release first audio packet | |
557 av_new_packet(pkt, st->codec->block_align); | |
558 memcpy(pkt->data, rm->audiobuf, st->codec->block_align); | |
559 timestamp = rm->audiotimestamp; | |
560 flags = 2; // Mark first packet as keyframe | |
561 } | |
1105 | 562 } else if (st->codec->codec_id == CODEC_ID_AAC) { |
563 int x; | |
564 rm->audio_stream_num = i; | |
565 rm->sub_packet_cnt = (get_be16(pb) & 0xf0) >> 4; | |
566 if (rm->sub_packet_cnt) { | |
567 for (x = 0; x < rm->sub_packet_cnt; x++) | |
568 rm->sub_packet_lengths[x] = get_be16(pb); | |
569 // Release first audio packet | |
570 rm->audio_pkt_cnt = rm->sub_packet_cnt - 1; | |
571 av_get_packet(pb, pkt, rm->sub_packet_lengths[0]); | |
572 flags = 2; // Mark first packet as keyframe | |
573 } | |
879 | 574 } else |
575 av_get_packet(pb, pkt, len); | |
1970
a27976be3394
Do not return invalid pointer for non-audio or video streams.
rtogni
parents:
1443
diff
changeset
|
576 |
a27976be3394
Do not return invalid pointer for non-audio or video streams.
rtogni
parents:
1443
diff
changeset
|
577 } else |
a27976be3394
Do not return invalid pointer for non-audio or video streams.
rtogni
parents:
1443
diff
changeset
|
578 av_get_packet(pb, pkt, len); |
652 | 579 |
708 | 580 if( (st->discard >= AVDISCARD_NONKEY && !(flags&2)) |
581 || st->discard >= AVDISCARD_ALL){ | |
879 | 582 av_free_packet(pkt); |
652 | 583 goto resync; |
584 } | |
885 | 585 |
194 | 586 pkt->stream_index = i; |
607 | 587 |
588 #if 0 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
589 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
590 if(st->codec->codec_id == CODEC_ID_RV20){ |
607 | 591 int seq= 128*(pkt->data[2]&0x7F) + (pkt->data[3]>>1); |
1443
404048ea11bc
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents:
1441
diff
changeset
|
592 av_log(NULL, AV_LOG_DEBUG, "%d %"PRId64" %d\n", timestamp, timestamp*512LL/25, seq); |
607 | 593 |
594 seq |= (timestamp&~0x3FFF); | |
595 if(seq - timestamp > 0x2000) seq -= 0x4000; | |
596 if(seq - timestamp < -0x2000) seq += 0x4000; | |
597 } | |
598 } | |
599 #endif | |
600 pkt->pts= timestamp; | |
613 | 601 if(flags&2){ |
607 | 602 pkt->flags |= PKT_FLAG_KEY; |
613 | 603 if((seq&0x7F) == 1) |
979 | 604 av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME); |
613 | 605 } |
0 | 606 } |
607 | |
608 /* for AC3, needs to swap bytes */ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
609 if (st->codec->codec_id == CODEC_ID_AC3) { |
0 | 610 ptr = pkt->data; |
611 for(j=0;j<len;j+=2) { | |
2105 | 612 FFSWAP(int, ptr[0], ptr[1]); |
2104 | 613 ptr += 2; |
0 | 614 } |
615 } | |
616 return 0; | |
617 } | |
618 | |
619 static int rm_read_close(AVFormatContext *s) | |
620 { | |
879 | 621 RMContext *rm = s->priv_data; |
622 | |
623 av_free(rm->audiobuf); | |
0 | 624 return 0; |
625 } | |
626 | |
627 static int rm_probe(AVProbeData *p) | |
628 { | |
629 /* check file header */ | |
194 | 630 if ((p->buf[0] == '.' && p->buf[1] == 'R' && |
631 p->buf[2] == 'M' && p->buf[3] == 'F' && | |
632 p->buf[4] == 0 && p->buf[5] == 0) || | |
633 (p->buf[0] == '.' && p->buf[1] == 'r' && | |
634 p->buf[2] == 'a' && p->buf[3] == 0xfd)) | |
0 | 635 return AVPROBE_SCORE_MAX; |
636 else | |
637 return 0; | |
638 } | |
639 | |
885 | 640 static int64_t rm_read_dts(AVFormatContext *s, int stream_index, |
612 | 641 int64_t *ppos, int64_t pos_limit) |
642 { | |
643 RMContext *rm = s->priv_data; | |
644 int64_t pos, dts; | |
613 | 645 int stream_index2, flags, len, h; |
612 | 646 |
647 pos = *ppos; | |
885 | 648 |
612 | 649 if(rm->old_format) |
650 return AV_NOPTS_VALUE; | |
651 | |
652 url_fseek(&s->pb, pos, SEEK_SET); | |
653 rm->remaining_len=0; | |
654 for(;;){ | |
613 | 655 int seq=1; |
656 AVStream *st; | |
657 | |
658 len=sync(s, &dts, &flags, &stream_index2, &pos); | |
612 | 659 if(len<0) |
660 return AV_NOPTS_VALUE; | |
613 | 661 |
662 st = s->streams[stream_index2]; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
663 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
613 | 664 h= get_byte(&s->pb); len--; |
665 if(!(h & 0x40)){ | |
666 seq = get_byte(&s->pb); len--; | |
612 | 667 } |
668 } | |
885 | 669 |
613 | 670 if((flags&2) && (seq&0x7F) == 1){ |
1443
404048ea11bc
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents:
1441
diff
changeset
|
671 // av_log(s, AV_LOG_DEBUG, "%d %d-%d %"PRId64" %d\n", flags, stream_index2, stream_index, dts, seq); |
979 | 672 av_add_index_entry(st, pos, dts, 0, 0, AVINDEX_KEYFRAME); |
613 | 673 if(stream_index2 == stream_index) |
674 break; | |
675 } | |
676 | |
612 | 677 url_fskip(&s->pb, len); |
678 } | |
679 *ppos = pos; | |
680 return dts; | |
681 } | |
682 | |
1169 | 683 AVInputFormat rm_demuxer = { |
0 | 684 "rm", |
685 "rm format", | |
686 sizeof(RMContext), | |
687 rm_probe, | |
688 rm_read_header, | |
689 rm_read_packet, | |
690 rm_read_close, | |
612 | 691 NULL, |
692 rm_read_dts, | |
0 | 693 }; |