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