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