Mercurial > libavformat.hg
annotate rmdec.c @ 4058:dcdf236c9909 libavformat
Delete unnecessary 'extern' keywords.
author | diego |
---|---|
date | Wed, 03 Dec 2008 15:23:30 +0000 |
parents | 1349c277efbd |
children | 56204ba7a2c5 |
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 */ |
3286 | 21 |
22 #include "libavutil/avstring.h" | |
0 | 23 #include "avformat.h" |
2103 | 24 #include "rm.h" |
0 | 25 |
2291 | 26 static inline void get_strl(ByteIOContext *pb, char *buf, int buf_size, int len) |
0 | 27 { |
2291 | 28 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
|
29 char *q, r; |
0 | 30 |
31 q = buf; | |
32 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
|
33 r = get_byte(pb); |
0 | 34 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
|
35 *q++ = r; |
0 | 36 } |
2290
572f7077ba40
Fix get_str/get_str8() to also work if the target string is not long enough to
diego
parents:
2274
diff
changeset
|
37 if (buf_size > 0) *q = '\0'; |
0 | 38 } |
39 | |
2291 | 40 static void get_str16(ByteIOContext *pb, char *buf, int buf_size) |
41 { | |
42 get_strl(pb, buf, buf_size, get_be16(pb)); | |
43 } | |
44 | |
0 | 45 static void get_str8(ByteIOContext *pb, char *buf, int buf_size) |
46 { | |
2291 | 47 get_strl(pb, buf, buf_size, get_byte(pb)); |
0 | 48 } |
49 | |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
50 static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb, |
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
51 AVStream *st, int read_all) |
194 | 52 { |
879 | 53 RMContext *rm = s->priv_data; |
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); |
3945 | 129 } else if ((!strcmp(buf, "cook")) || (!strcmp(buf, "atrc")) || (!strcmp(buf, "sipr"))) { |
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 | |
4014
2e7994e45100
Check sub_packet_size against 0 to avoid div by zero later.
michael
parents:
3945
diff
changeset
|
140 if(sub_packet_size <= 0){ |
2e7994e45100
Check sub_packet_size against 0 to avoid div by zero later.
michael
parents:
3945
diff
changeset
|
141 av_log(s, AV_LOG_ERROR, "sub_packet_size is invalid\n"); |
2e7994e45100
Check sub_packet_size against 0 to avoid div by zero later.
michael
parents:
3945
diff
changeset
|
142 return -1; |
2e7994e45100
Check sub_packet_size against 0 to avoid div by zero later.
michael
parents:
3945
diff
changeset
|
143 } |
2e7994e45100
Check sub_packet_size against 0 to avoid div by zero later.
michael
parents:
3945
diff
changeset
|
144 |
2024 | 145 if (!strcmp(buf, "cook")) st->codec->codec_id = CODEC_ID_COOK; |
3945 | 146 else if (!strcmp(buf, "sipr")) st->codec->codec_id = CODEC_ID_SIPR; |
2024 | 147 else st->codec->codec_id = CODEC_ID_ATRAC3; |
879 | 148 st->codec->extradata_size= codecdata_length; |
884
2ece9c9dd94c
malloc padding to avoid reading past the malloc()ed area.
henry
parents:
879
diff
changeset
|
149 st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
879 | 150 for(i = 0; i < codecdata_length; i++) |
151 ((uint8_t*)st->codec->extradata)[i] = get_byte(pb); | |
152 rm->audio_framesize = st->codec->block_align; | |
153 st->codec->block_align = rm->sub_packet_size; | |
1079 | 154 |
155 if(rm->audio_framesize >= UINT_MAX / sub_packet_h){ | |
156 av_log(s, AV_LOG_ERROR, "rm->audio_framesize * sub_packet_h too large\n"); | |
157 return -1; | |
158 } | |
159 | |
879 | 160 rm->audiobuf = av_malloc(rm->audio_framesize * sub_packet_h); |
1105 | 161 } else if (!strcmp(buf, "raac") || !strcmp(buf, "racp")) { |
162 int codecdata_length, i; | |
163 get_be16(pb); get_byte(pb); | |
164 if (((version >> 16) & 0xff) == 5) | |
165 get_byte(pb); | |
166 st->codec->codec_id = CODEC_ID_AAC; | |
167 codecdata_length = get_be32(pb); | |
1106 | 168 if(codecdata_length + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)codecdata_length){ |
169 av_log(s, AV_LOG_ERROR, "codecdata_length too large\n"); | |
170 return -1; | |
171 } | |
1105 | 172 if (codecdata_length >= 1) { |
173 st->codec->extradata_size = codecdata_length - 1; | |
174 st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); | |
175 get_byte(pb); | |
176 for(i = 0; i < st->codec->extradata_size; i++) | |
177 ((uint8_t*)st->codec->extradata)[i] = get_byte(pb); | |
178 } | |
194 | 179 } 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
|
180 st->codec->codec_id = CODEC_ID_NONE; |
2189 | 181 av_strlcpy(st->codec->codec_name, buf, sizeof(st->codec->codec_name)); |
194 | 182 } |
183 if (read_all) { | |
184 get_byte(pb); | |
185 get_byte(pb); | |
186 get_byte(pb); | |
885 | 187 |
194 | 188 get_str8(pb, s->title, sizeof(s->title)); |
189 get_str8(pb, s->author, sizeof(s->author)); | |
190 get_str8(pb, s->copyright, sizeof(s->copyright)); | |
191 get_str8(pb, s->comment, sizeof(s->comment)); | |
192 } | |
193 } | |
1106 | 194 return 0; |
194 | 195 } |
196 | |
2889 | 197 int |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
198 ff_rm_read_mdpr_codecdata (AVFormatContext *s, ByteIOContext *pb, |
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
199 AVStream *st, int codec_data_size) |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
200 { |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
201 unsigned int v; |
3873
9a589ae59655
Use chunk-size in function calling mdpr_read_codecdata() rather than in the
rbultje
parents:
3497
diff
changeset
|
202 int size; |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
203 int64_t codec_pos; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
204 |
3874
d50c5556cb82
Move av_set_pts_info() inside the mdpr_read_codecdata() call, so that it is
rbultje
parents:
3873
diff
changeset
|
205 av_set_pts_info(st, 64, 1, 1000); |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
206 codec_pos = url_ftell(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
207 v = get_be32(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
208 if (v == MKTAG(0xfd, 'a', 'r', '.')) { |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
209 /* ra type header */ |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
210 if (rm_read_audio_stream_info(s, pb, st, 0)) |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
211 return -1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
212 } else { |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
213 int fps, fps2; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
214 if (get_le32(pb) != MKTAG('V', 'I', 'D', 'O')) { |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
215 fail1: |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
216 av_log(st->codec, AV_LOG_ERROR, "Unsupported video codec\n"); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
217 goto skip; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
218 } |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
219 st->codec->codec_tag = get_le32(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
220 // av_log(NULL, AV_LOG_DEBUG, "%X %X\n", st->codec->codec_tag, MKTAG('R', 'V', '2', '0')); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
221 if ( st->codec->codec_tag != MKTAG('R', 'V', '1', '0') |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
222 && st->codec->codec_tag != MKTAG('R', 'V', '2', '0') |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
223 && st->codec->codec_tag != MKTAG('R', 'V', '3', '0') |
3930 | 224 && st->codec->codec_tag != MKTAG('R', 'V', '4', '0') |
225 && st->codec->codec_tag != MKTAG('R', 'V', 'T', 'R')) | |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
226 goto fail1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
227 st->codec->width = get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
228 st->codec->height = get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
229 st->codec->time_base.num= 1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
230 fps= get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
231 st->codec->codec_type = CODEC_TYPE_VIDEO; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
232 get_be32(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
233 fps2= get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
234 get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
235 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
236 st->codec->extradata_size= codec_data_size - (url_ftell(pb) - codec_pos); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
237 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
238 if(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){ |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
239 //check is redundant as get_buffer() will catch this |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
240 av_log(s, AV_LOG_ERROR, "st->codec->extradata_size too large\n"); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
241 return -1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
242 } |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
243 st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
3410
18239c59049b
Check whether the memory allocation for extradata succeeded. Fixes issue 472.
takis
parents:
3286
diff
changeset
|
244 if (!st->codec->extradata) |
18239c59049b
Check whether the memory allocation for extradata succeeded. Fixes issue 472.
takis
parents:
3286
diff
changeset
|
245 return AVERROR(ENOMEM); |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
246 get_buffer(pb, st->codec->extradata, st->codec->extradata_size); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
247 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
248 // av_log(NULL, AV_LOG_DEBUG, "fps= %d fps2= %d\n", fps, fps2); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
249 st->codec->time_base.den = fps * st->codec->time_base.num; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
250 switch(((uint8_t*)st->codec->extradata)[4]>>4){ |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
251 case 1: st->codec->codec_id = CODEC_ID_RV10; break; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
252 case 2: st->codec->codec_id = CODEC_ID_RV20; break; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
253 case 3: st->codec->codec_id = CODEC_ID_RV30; break; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
254 case 4: st->codec->codec_id = CODEC_ID_RV40; break; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
255 default: goto fail1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
256 } |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
257 } |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
258 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
259 skip: |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
260 /* skip codec info */ |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
261 size = url_ftell(pb) - codec_pos; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
262 url_fskip(pb, codec_data_size - size); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
263 |
2719
6469205c08e4
Change ff_rm_read_mdpr_codecdata to get back to old behavior.
benoit
parents:
2707
diff
changeset
|
264 return 0; |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
265 } |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
266 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
267 |
194 | 268 static int rm_read_header_old(AVFormatContext *s, AVFormatParameters *ap) |
269 { | |
270 RMContext *rm = s->priv_data; | |
271 AVStream *st; | |
272 | |
273 rm->old_format = 1; | |
274 st = av_new_stream(s, 0); | |
275 if (!st) | |
1106 | 276 return -1; |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
277 return rm_read_audio_stream_info(s, s->pb, st, 1); |
194 | 278 } |
279 | |
0 | 280 static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap) |
281 { | |
282 RMContext *rm = s->priv_data; | |
283 AVStream *st; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
284 ByteIOContext *pb = s->pb; |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
285 unsigned int tag; |
3497 | 286 int tag_size; |
1350
f77cf5a063a8
Remove unused variables and the corresponding warnings along with them.
diego
parents:
1344
diff
changeset
|
287 unsigned int start_time, duration; |
0 | 288 char buf[128]; |
289 int flags = 0; | |
290 | |
194 | 291 tag = get_le32(pb); |
292 if (tag == MKTAG('.', 'r', 'a', 0xfd)) { | |
293 /* very old .ra format */ | |
294 return rm_read_header_old(s, ap); | |
295 } else if (tag != MKTAG('.', 'R', 'M', 'F')) { | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2237
diff
changeset
|
296 return AVERROR(EIO); |
194 | 297 } |
0 | 298 |
299 get_be32(pb); /* header size */ | |
300 get_be16(pb); | |
301 get_be32(pb); | |
302 get_be32(pb); /* number of headers */ | |
885 | 303 |
0 | 304 for(;;) { |
305 if (url_feof(pb)) | |
3486 | 306 return -1; |
0 | 307 tag = get_le32(pb); |
308 tag_size = get_be32(pb); | |
309 get_be16(pb); | |
310 #if 0 | |
885 | 311 printf("tag=%c%c%c%c (%08x) size=%d\n", |
0 | 312 (tag) & 0xff, |
313 (tag >> 8) & 0xff, | |
314 (tag >> 16) & 0xff, | |
315 (tag >> 24) & 0xff, | |
316 tag, | |
317 tag_size); | |
318 #endif | |
736 | 319 if (tag_size < 10 && tag != MKTAG('D', 'A', 'T', 'A')) |
3486 | 320 return -1; |
0 | 321 switch(tag) { |
322 case MKTAG('P', 'R', 'O', 'P'): | |
323 /* file header */ | |
324 get_be32(pb); /* max bit rate */ | |
325 get_be32(pb); /* avg bit rate */ | |
326 get_be32(pb); /* max packet size */ | |
327 get_be32(pb); /* avg packet size */ | |
328 get_be32(pb); /* nb packets */ | |
329 get_be32(pb); /* duration */ | |
330 get_be32(pb); /* preroll */ | |
331 get_be32(pb); /* index offset */ | |
332 get_be32(pb); /* data offset */ | |
333 get_be16(pb); /* nb streams */ | |
334 flags = get_be16(pb); /* flags */ | |
335 break; | |
336 case MKTAG('C', 'O', 'N', 'T'): | |
2291 | 337 get_str16(pb, s->title, sizeof(s->title)); |
338 get_str16(pb, s->author, sizeof(s->author)); | |
339 get_str16(pb, s->copyright, sizeof(s->copyright)); | |
340 get_str16(pb, s->comment, sizeof(s->comment)); | |
0 | 341 break; |
342 case MKTAG('M', 'D', 'P', 'R'): | |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
343 st = av_new_stream(s, 0); |
0 | 344 if (!st) |
3486 | 345 return AVERROR(ENOMEM); |
0 | 346 st->id = get_be16(pb); |
347 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
|
348 st->codec->bit_rate = get_be32(pb); /* bit rate */ |
0 | 349 get_be32(pb); /* max packet size */ |
350 get_be32(pb); /* avg packet size */ | |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
351 start_time = get_be32(pb); /* start time */ |
0 | 352 get_be32(pb); /* preroll */ |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
353 duration = get_be32(pb); /* duration */ |
743 | 354 st->start_time = start_time; |
355 st->duration = duration; | |
0 | 356 get_str8(pb, buf, sizeof(buf)); /* desc */ |
357 get_str8(pb, buf, sizeof(buf)); /* mimetype */ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
358 st->codec->codec_type = CODEC_TYPE_DATA; |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
359 if (ff_rm_read_mdpr_codecdata(s, s->pb, st, get_be32(pb)) < 0) |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
360 return -1; |
0 | 361 break; |
362 case MKTAG('D', 'A', 'T', 'A'): | |
363 goto header_end; | |
364 default: | |
365 /* unknown tag: skip it */ | |
366 url_fskip(pb, tag_size - 10); | |
367 break; | |
368 } | |
369 } | |
370 header_end: | |
371 rm->nb_packets = get_be32(pb); /* number of packets */ | |
372 if (!rm->nb_packets && (flags & 4)) | |
373 rm->nb_packets = 3600 * 25; | |
374 get_be32(pb); /* next data header */ | |
2653 | 375 rm->curpic_num = -1; |
0 | 376 return 0; |
377 } | |
378 | |
379 static int get_num(ByteIOContext *pb, int *len) | |
380 { | |
381 int n, n1; | |
382 | |
383 n = get_be16(pb); | |
384 (*len)-=2; | |
2791
5d0fecceff17
Revert r10892, it's wrong and no longer needed to prevent crashes
rtogni
parents:
2771
diff
changeset
|
385 n &= 0x7FFF; |
0 | 386 if (n >= 0x4000) { |
387 return n - 0x4000; | |
388 } else { | |
389 n1 = get_be16(pb); | |
390 (*len)-=2; | |
391 return (n << 16) | n1; | |
392 } | |
393 } | |
394 | |
194 | 395 /* multiple of 20 bytes for ra144 (ugly) */ |
396 #define RAW_PACKET_SIZE 1000 | |
397 | |
613 | 398 static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_index, int64_t *pos){ |
612 | 399 RMContext *rm = s->priv_data; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
400 ByteIOContext *pb = s->pb; |
612 | 401 int len, num, res, i; |
402 AVStream *st; | |
632 | 403 uint32_t state=0xFFFFFFFF; |
612 | 404 |
405 while(!url_feof(pb)){ | |
3207 | 406 *pos= url_ftell(pb) - 3; |
612 | 407 if(rm->remaining_len > 0){ |
408 num= rm->current_stream; | |
409 len= rm->remaining_len; | |
410 *timestamp = AV_NOPTS_VALUE; | |
411 *flags= 0; | |
412 }else{ | |
632 | 413 state= (state<<8) + get_byte(pb); |
885 | 414 |
632 | 415 if(state == MKBETAG('I', 'N', 'D', 'X')){ |
416 len = get_be16(pb) - 6; | |
417 if(len<0) | |
418 continue; | |
419 goto skip; | |
420 } | |
885 | 421 |
632 | 422 if(state > (unsigned)0xFFFF || state < 12) |
612 | 423 continue; |
632 | 424 len=state; |
425 state= 0xFFFFFFFF; | |
426 | |
612 | 427 num = get_be16(pb); |
428 *timestamp = get_be32(pb); | |
429 res= get_byte(pb); /* reserved */ | |
430 *flags = get_byte(pb); /* flags */ | |
613 | 431 |
885 | 432 |
612 | 433 len -= 12; |
434 } | |
435 for(i=0;i<s->nb_streams;i++) { | |
436 st = s->streams[i]; | |
437 if (num == st->id) | |
438 break; | |
439 } | |
440 if (i == s->nb_streams) { | |
632 | 441 skip: |
612 | 442 /* skip packet if unknown number */ |
443 url_fskip(pb, len); | |
444 rm->remaining_len -= len; | |
445 continue; | |
446 } | |
447 *stream_index= i; | |
885 | 448 |
612 | 449 return len; |
450 } | |
451 return -1; | |
452 } | |
453 | |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
454 static int rm_assemble_video_frame(AVFormatContext *s, ByteIOContext *pb, |
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
455 RMContext *rm, AVPacket *pkt, int len) |
2653 | 456 { |
457 int hdr, seq, pic_num, len2, pos; | |
458 int type; | |
459 | |
460 hdr = get_byte(pb); len--; | |
461 type = hdr >> 6; | |
462 switch(type){ | |
463 case 0: // slice | |
464 case 2: // last slice | |
465 seq = get_byte(pb); len--; | |
466 len2 = get_num(pb, &len); | |
467 pos = get_num(pb, &len); | |
468 pic_num = get_byte(pb); len--; | |
469 rm->remaining_len = len; | |
470 break; | |
471 case 1: //whole frame | |
472 seq = get_byte(pb); len--; | |
473 if(av_new_packet(pkt, len + 9) < 0) | |
474 return AVERROR(EIO); | |
475 pkt->data[0] = 0; | |
476 AV_WL32(pkt->data + 1, 1); | |
477 AV_WL32(pkt->data + 5, 0); | |
478 get_buffer(pb, pkt->data + 9, len); | |
479 rm->remaining_len = 0; | |
480 return 0; | |
481 case 3: //frame as a part of packet | |
482 len2 = get_num(pb, &len); | |
483 pos = get_num(pb, &len); | |
484 pic_num = get_byte(pb); len--; | |
485 rm->remaining_len = len - len2; | |
486 if(av_new_packet(pkt, len2 + 9) < 0) | |
487 return AVERROR(EIO); | |
488 pkt->data[0] = 0; | |
489 AV_WL32(pkt->data + 1, 1); | |
490 AV_WL32(pkt->data + 5, 0); | |
491 get_buffer(pb, pkt->data + 9, len2); | |
492 return 0; | |
493 } | |
494 //now we have to deal with single slice | |
495 | |
496 if((seq & 0x7F) == 1 || rm->curpic_num != pic_num){ | |
497 rm->slices = ((hdr & 0x3F) << 1) + 1; | |
2764 | 498 rm->videobufsize = len2 + 8*rm->slices + 1; |
2770
a7e42cf4b364
Replace realloc with free+malloc, the previous content of the buffer is
rtogni
parents:
2766
diff
changeset
|
499 av_free(rm->videobuf); |
a7e42cf4b364
Replace realloc with free+malloc, the previous content of the buffer is
rtogni
parents:
2766
diff
changeset
|
500 if(!(rm->videobuf = av_malloc(rm->videobufsize))) |
2763 | 501 return AVERROR(ENOMEM); |
2653 | 502 rm->videobufpos = 8*rm->slices + 1; |
503 rm->cur_slice = 0; | |
504 rm->curpic_num = pic_num; | |
2696 | 505 rm->pktpos = url_ftell(pb); |
2653 | 506 } |
2766 | 507 if(type == 2) |
2653 | 508 len = FFMIN(len, pos); |
509 | |
2754 | 510 if(++rm->cur_slice > rm->slices) |
2653 | 511 return 1; |
512 AV_WL32(rm->videobuf - 7 + 8*rm->cur_slice, 1); | |
513 AV_WL32(rm->videobuf - 3 + 8*rm->cur_slice, rm->videobufpos - 8*rm->slices - 1); | |
514 if(rm->videobufpos + len > rm->videobufsize) | |
515 return 1; | |
516 if (get_buffer(pb, rm->videobuf + rm->videobufpos, len) != len) | |
517 return AVERROR(EIO); | |
2808 | 518 rm->videobufpos += len; |
2653 | 519 rm->remaining_len-= len; |
520 | |
521 if(type == 2 || (rm->videobufpos) == rm->videobufsize){ | |
522 rm->videobuf[0] = rm->cur_slice-1; | |
2762
137eec75e3df
Optimize memory management to create an av_packet from multiple slices:
rtogni
parents:
2754
diff
changeset
|
523 if(av_new_packet(pkt, rm->videobufpos - 8*(rm->slices - rm->cur_slice)) < 0) |
2653 | 524 return AVERROR(ENOMEM); |
2762
137eec75e3df
Optimize memory management to create an av_packet from multiple slices:
rtogni
parents:
2754
diff
changeset
|
525 memcpy(pkt->data, rm->videobuf, 1 + 8*rm->cur_slice); |
2766 | 526 memcpy(pkt->data + 1 + 8*rm->cur_slice, rm->videobuf + 1 + 8*rm->slices, |
527 rm->videobufpos - 1 - 8*rm->slices); | |
2696 | 528 pkt->pts = AV_NOPTS_VALUE; |
529 pkt->pos = rm->pktpos; | |
2653 | 530 return 0; |
531 } | |
532 | |
533 return 1; | |
534 } | |
535 | |
2725 | 536 static inline void |
537 rm_ac3_swap_bytes (AVStream *st, AVPacket *pkt) | |
538 { | |
539 uint8_t *ptr; | |
540 int j; | |
541 | |
542 if (st->codec->codec_id == CODEC_ID_AC3) { | |
543 ptr = pkt->data; | |
544 for (j=0;j<pkt->size;j+=2) { | |
545 FFSWAP(int, ptr[0], ptr[1]); | |
546 ptr += 2; | |
547 } | |
548 } | |
549 } | |
550 | |
2889 | 551 int |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
552 ff_rm_parse_packet (AVFormatContext *s, ByteIOContext *pb, |
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
553 AVStream *st, int len, AVPacket *pkt, |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
554 int *seq, int *flags, int64_t *timestamp) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
555 { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
556 RMContext *rm = s->priv_data; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
557 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
558 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
559 rm->current_stream= st->id; |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
560 if(rm_assemble_video_frame(s, pb, rm, pkt, len) == 1) |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
561 return -1; //got partial frame |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
562 } else if (st->codec->codec_type == CODEC_TYPE_AUDIO) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
563 if ((st->codec->codec_id == CODEC_ID_RA_288) || |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
564 (st->codec->codec_id == CODEC_ID_COOK) || |
3945 | 565 (st->codec->codec_id == CODEC_ID_ATRAC3) || |
566 (st->codec->codec_id == CODEC_ID_SIPR)) { | |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
567 int x; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
568 int sps = rm->sub_packet_size; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
569 int cfs = rm->coded_framesize; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
570 int h = rm->sub_packet_h; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
571 int y = rm->sub_packet_cnt; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
572 int w = rm->audio_framesize; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
573 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
574 if (*flags & 2) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
575 y = rm->sub_packet_cnt = 0; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
576 if (!y) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
577 rm->audiotimestamp = *timestamp; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
578 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
579 switch(st->codec->codec_id) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
580 case CODEC_ID_RA_288: |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
581 for (x = 0; x < h/2; x++) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
582 get_buffer(pb, rm->audiobuf+x*2*w+y*cfs, cfs); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
583 break; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
584 case CODEC_ID_ATRAC3: |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
585 case CODEC_ID_COOK: |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
586 for (x = 0; x < w/sps; x++) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
587 get_buffer(pb, rm->audiobuf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), sps); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
588 break; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
589 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
590 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
591 if (++(rm->sub_packet_cnt) < h) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
592 return -1; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
593 else { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
594 rm->sub_packet_cnt = 0; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
595 rm->audio_stream_num = st->index; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
596 rm->audio_pkt_cnt = h * w / st->codec->block_align - 1; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
597 // Release first audio packet |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
598 av_new_packet(pkt, st->codec->block_align); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
599 memcpy(pkt->data, rm->audiobuf, st->codec->block_align); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
600 *timestamp = rm->audiotimestamp; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
601 *flags = 2; // Mark first packet as keyframe |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
602 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
603 } else if (st->codec->codec_id == CODEC_ID_AAC) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
604 int x; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
605 rm->audio_stream_num = st->index; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
606 rm->sub_packet_cnt = (get_be16(pb) & 0xf0) >> 4; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
607 if (rm->sub_packet_cnt) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
608 for (x = 0; x < rm->sub_packet_cnt; x++) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
609 rm->sub_packet_lengths[x] = get_be16(pb); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
610 // Release first audio packet |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
611 rm->audio_pkt_cnt = rm->sub_packet_cnt - 1; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
612 av_get_packet(pb, pkt, rm->sub_packet_lengths[0]); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
613 *flags = 2; // Mark first packet as keyframe |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
614 } |
2940 | 615 } else { |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
616 av_get_packet(pb, pkt, len); |
2753
b55dad23bfcb
Move dnet-ac3 byte-swapping code close to audio packet read code
rtogni
parents:
2725
diff
changeset
|
617 rm_ac3_swap_bytes(st, pkt); |
2940 | 618 } |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
619 } else |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
620 av_get_packet(pb, pkt, len); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
621 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
622 if( (st->discard >= AVDISCARD_NONKEY && !(*flags&2)) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
623 || st->discard >= AVDISCARD_ALL){ |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
624 av_free_packet(pkt); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
625 return -1; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
626 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
627 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
628 pkt->stream_index = st->index; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
629 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
630 #if 0 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
631 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
632 if(st->codec->codec_id == CODEC_ID_RV20){ |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
633 int seq= 128*(pkt->data[2]&0x7F) + (pkt->data[3]>>1); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
634 av_log(NULL, AV_LOG_DEBUG, "%d %"PRId64" %d\n", *timestamp, *timestamp*512LL/25, seq); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
635 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
636 seq |= (*timestamp&~0x3FFF); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
637 if(seq - *timestamp > 0x2000) seq -= 0x4000; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
638 if(seq - *timestamp < -0x2000) seq += 0x4000; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
639 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
640 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
641 #endif |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
642 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
643 pkt->pts= *timestamp; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
644 if (*flags & 2) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
645 pkt->flags |= PKT_FLAG_KEY; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
646 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
647 return 0; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
648 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
649 |
2889 | 650 void |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
651 ff_rm_retrieve_cache (AVFormatContext *s, ByteIOContext *pb, |
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
652 AVStream *st, AVPacket *pkt) |
2724
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
653 { |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
654 RMContext *rm = s->priv_data; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
655 |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
656 assert (rm->audio_pkt_cnt > 0); |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
657 |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
658 if (st->codec->codec_id == CODEC_ID_AAC) |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
659 av_get_packet(pb, pkt, rm->sub_packet_lengths[rm->sub_packet_cnt - rm->audio_pkt_cnt]); |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
660 else { |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
661 av_new_packet(pkt, st->codec->block_align); |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
662 memcpy(pkt->data, rm->audiobuf + st->codec->block_align * |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
663 (rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - rm->audio_pkt_cnt), |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
664 st->codec->block_align); |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
665 } |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
666 rm->audio_pkt_cnt--; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
667 pkt->flags = 0; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
668 pkt->stream_index = st->index; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
669 } |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
670 |
0 | 671 static int rm_read_packet(AVFormatContext *s, AVPacket *pkt) |
672 { | |
673 RMContext *rm = s->priv_data; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
674 ByteIOContext *pb = s->pb; |
0 | 675 AVStream *st; |
2725 | 676 int i, len; |
613 | 677 int64_t timestamp, pos; |
612 | 678 int flags; |
0 | 679 |
888 | 680 if (rm->audio_pkt_cnt) { |
879 | 681 // If there are queued audio packet return them first |
682 st = s->streams[rm->audio_stream_num]; | |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
683 ff_rm_retrieve_cache(s, s->pb, st, pkt); |
888 | 684 } else if (rm->old_format) { |
685 st = s->streams[0]; | |
686 if (st->codec->codec_id == CODEC_ID_RA_288) { | |
687 int x, y; | |
688 | |
689 for (y = 0; y < rm->sub_packet_h; y++) | |
690 for (x = 0; x < rm->sub_packet_h/2; x++) | |
691 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
|
692 return AVERROR(EIO); |
888 | 693 rm->audio_stream_num = 0; |
694 rm->audio_pkt_cnt = rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - 1; | |
695 // Release first audio packet | |
696 av_new_packet(pkt, st->codec->block_align); | |
697 memcpy(pkt->data, rm->audiobuf, st->codec->block_align); | |
698 pkt->flags |= PKT_FLAG_KEY; // Mark first packet as keyframe | |
699 pkt->stream_index = 0; | |
700 } else { | |
701 /* just read raw bytes */ | |
702 len = RAW_PACKET_SIZE; | |
703 len= av_get_packet(pb, pkt, len); | |
704 pkt->stream_index = 0; | |
705 if (len <= 0) { | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2237
diff
changeset
|
706 return AVERROR(EIO); |
888 | 707 } |
708 pkt->size = len; | |
709 } | |
2753
b55dad23bfcb
Move dnet-ac3 byte-swapping code close to audio packet read code
rtogni
parents:
2725
diff
changeset
|
710 rm_ac3_swap_bytes(st, pkt); |
194 | 711 } else { |
613 | 712 int seq=1; |
652 | 713 resync: |
613 | 714 len=sync(s, ×tamp, &flags, &i, &pos); |
612 | 715 if(len<0) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2237
diff
changeset
|
716 return AVERROR(EIO); |
612 | 717 st = s->streams[i]; |
718 | |
4036
1349c277efbd
Add ByteIOContext argument to public ff_rm_* functions so that we can
rbultje
parents:
4014
diff
changeset
|
719 if (ff_rm_parse_packet (s, s->pb, st, len, pkt, &seq, &flags, ×tamp) < 0) |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
720 goto resync; |
879 | 721 |
2937
f3070076d901
Remove some spaces to keep certain people's eyes from hurting.
diego
parents:
2904
diff
changeset
|
722 if((flags&2) && (seq&0x7F) == 1) |
2883 | 723 av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME); |
0 | 724 } |
725 | |
726 return 0; | |
727 } | |
728 | |
729 static int rm_read_close(AVFormatContext *s) | |
730 { | |
879 | 731 RMContext *rm = s->priv_data; |
732 | |
733 av_free(rm->audiobuf); | |
2653 | 734 av_free(rm->videobuf); |
0 | 735 return 0; |
736 } | |
737 | |
738 static int rm_probe(AVProbeData *p) | |
739 { | |
740 /* check file header */ | |
194 | 741 if ((p->buf[0] == '.' && p->buf[1] == 'R' && |
742 p->buf[2] == 'M' && p->buf[3] == 'F' && | |
743 p->buf[4] == 0 && p->buf[5] == 0) || | |
744 (p->buf[0] == '.' && p->buf[1] == 'r' && | |
745 p->buf[2] == 'a' && p->buf[3] == 0xfd)) | |
0 | 746 return AVPROBE_SCORE_MAX; |
747 else | |
748 return 0; | |
749 } | |
750 | |
885 | 751 static int64_t rm_read_dts(AVFormatContext *s, int stream_index, |
612 | 752 int64_t *ppos, int64_t pos_limit) |
753 { | |
754 RMContext *rm = s->priv_data; | |
755 int64_t pos, dts; | |
613 | 756 int stream_index2, flags, len, h; |
612 | 757 |
758 pos = *ppos; | |
885 | 759 |
612 | 760 if(rm->old_format) |
761 return AV_NOPTS_VALUE; | |
762 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
763 url_fseek(s->pb, pos, SEEK_SET); |
612 | 764 rm->remaining_len=0; |
765 for(;;){ | |
613 | 766 int seq=1; |
767 AVStream *st; | |
768 | |
769 len=sync(s, &dts, &flags, &stream_index2, &pos); | |
612 | 770 if(len<0) |
771 return AV_NOPTS_VALUE; | |
613 | 772 |
773 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
|
774 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
775 h= get_byte(s->pb); len--; |
613 | 776 if(!(h & 0x40)){ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
777 seq = get_byte(s->pb); len--; |
612 | 778 } |
779 } | |
885 | 780 |
613 | 781 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
|
782 // av_log(s, AV_LOG_DEBUG, "%d %d-%d %"PRId64" %d\n", flags, stream_index2, stream_index, dts, seq); |
979 | 783 av_add_index_entry(st, pos, dts, 0, 0, AVINDEX_KEYFRAME); |
613 | 784 if(stream_index2 == stream_index) |
785 break; | |
786 } | |
787 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
788 url_fskip(s->pb, len); |
612 | 789 } |
790 *ppos = pos; | |
791 return dts; | |
792 } | |
793 | |
1169 | 794 AVInputFormat rm_demuxer = { |
0 | 795 "rm", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3410
diff
changeset
|
796 NULL_IF_CONFIG_SMALL("RM format"), |
0 | 797 sizeof(RMContext), |
798 rm_probe, | |
799 rm_read_header, | |
800 rm_read_packet, | |
801 rm_read_close, | |
612 | 802 NULL, |
803 rm_read_dts, | |
0 | 804 }; |
3902
5f9bec099c69
Add dynamic payload handlers to rdt.c. These follow the same API as the ones
rbultje
parents:
3874
diff
changeset
|
805 |
5f9bec099c69
Add dynamic payload handlers to rdt.c. These follow the same API as the ones
rbultje
parents:
3874
diff
changeset
|
806 AVInputFormat rdt_demuxer = { |
5f9bec099c69
Add dynamic payload handlers to rdt.c. These follow the same API as the ones
rbultje
parents:
3874
diff
changeset
|
807 "rdt", |
5f9bec099c69
Add dynamic payload handlers to rdt.c. These follow the same API as the ones
rbultje
parents:
3874
diff
changeset
|
808 NULL_IF_CONFIG_SMALL("RDT demuxer"), |
5f9bec099c69
Add dynamic payload handlers to rdt.c. These follow the same API as the ones
rbultje
parents:
3874
diff
changeset
|
809 sizeof(RMContext), |
5f9bec099c69
Add dynamic payload handlers to rdt.c. These follow the same API as the ones
rbultje
parents:
3874
diff
changeset
|
810 NULL, NULL, NULL, rm_read_close, NULL, NULL |
5f9bec099c69
Add dynamic payload handlers to rdt.c. These follow the same API as the ones
rbultje
parents:
3874
diff
changeset
|
811 }; |