Mercurial > libavformat.hg
annotate rmdec.c @ 3083:100182d3aefe libavformat
indentation
author | bcoudurier |
---|---|
date | Tue, 26 Feb 2008 14:41:40 +0000 |
parents | 60b898a8e4d0 |
children | 8f1c183e5193 |
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; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
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 | |
2889 | 191 int |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
192 ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVStream *st) |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
193 { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
194 ByteIOContext *pb = s->pb; |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
195 unsigned int v; |
2719
6469205c08e4
Change ff_rm_read_mdpr_codecdata to get back to old behavior.
benoit
parents:
2707
diff
changeset
|
196 int codec_data_size, size; |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
197 int64_t codec_pos; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
198 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
199 codec_data_size = get_be32(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
200 codec_pos = url_ftell(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
201 v = get_be32(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
202 if (v == MKTAG(0xfd, 'a', 'r', '.')) { |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
203 /* ra type header */ |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
204 if (rm_read_audio_stream_info(s, st, 0)) |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
205 return -1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
206 } else { |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
207 int fps, fps2; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
208 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
|
209 fail1: |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
210 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
|
211 goto skip; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
212 } |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
213 st->codec->codec_tag = get_le32(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
214 // 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
|
215 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
|
216 && 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
|
217 && st->codec->codec_tag != MKTAG('R', 'V', '3', '0') |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
218 && st->codec->codec_tag != MKTAG('R', 'V', '4', '0')) |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
219 goto fail1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
220 st->codec->width = get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
221 st->codec->height = get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
222 st->codec->time_base.num= 1; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
223 fps= get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
224 st->codec->codec_type = CODEC_TYPE_VIDEO; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
225 get_be32(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
226 fps2= get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
227 get_be16(pb); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
228 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
229 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
|
230 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
231 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
|
232 //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
|
233 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
|
234 return -1; |
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= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
237 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
|
238 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
239 // 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
|
240 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
|
241 switch(((uint8_t*)st->codec->extradata)[4]>>4){ |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
242 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
|
243 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
|
244 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
|
245 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
|
246 default: goto fail1; |
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 } |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
249 |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
250 skip: |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
251 /* skip codec info */ |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
252 size = url_ftell(pb) - codec_pos; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
253 url_fskip(pb, codec_data_size - size); |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
254 |
2719
6469205c08e4
Change ff_rm_read_mdpr_codecdata to get back to old behavior.
benoit
parents:
2707
diff
changeset
|
255 return 0; |
2707
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 |
194 | 259 static int rm_read_header_old(AVFormatContext *s, AVFormatParameters *ap) |
260 { | |
261 RMContext *rm = s->priv_data; | |
262 AVStream *st; | |
263 | |
264 rm->old_format = 1; | |
265 st = av_new_stream(s, 0); | |
266 if (!st) | |
1106 | 267 return -1; |
268 return rm_read_audio_stream_info(s, st, 1); | |
194 | 269 } |
270 | |
0 | 271 static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap) |
272 { | |
273 RMContext *rm = s->priv_data; | |
274 AVStream *st; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
275 ByteIOContext *pb = s->pb; |
2707
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
276 unsigned int tag; |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
277 int tag_size, i; |
1350
f77cf5a063a8
Remove unused variables and the corresponding warnings along with them.
diego
parents:
1344
diff
changeset
|
278 unsigned int start_time, duration; |
0 | 279 char buf[128]; |
280 int flags = 0; | |
281 | |
194 | 282 tag = get_le32(pb); |
283 if (tag == MKTAG('.', 'r', 'a', 0xfd)) { | |
284 /* very old .ra format */ | |
285 return rm_read_header_old(s, ap); | |
286 } else if (tag != MKTAG('.', 'R', 'M', 'F')) { | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2237
diff
changeset
|
287 return AVERROR(EIO); |
194 | 288 } |
0 | 289 |
290 get_be32(pb); /* header size */ | |
291 get_be16(pb); | |
292 get_be32(pb); | |
293 get_be32(pb); /* number of headers */ | |
885 | 294 |
0 | 295 for(;;) { |
296 if (url_feof(pb)) | |
297 goto fail; | |
298 tag = get_le32(pb); | |
299 tag_size = get_be32(pb); | |
300 get_be16(pb); | |
301 #if 0 | |
885 | 302 printf("tag=%c%c%c%c (%08x) size=%d\n", |
0 | 303 (tag) & 0xff, |
304 (tag >> 8) & 0xff, | |
305 (tag >> 16) & 0xff, | |
306 (tag >> 24) & 0xff, | |
307 tag, | |
308 tag_size); | |
309 #endif | |
736 | 310 if (tag_size < 10 && tag != MKTAG('D', 'A', 'T', 'A')) |
0 | 311 goto fail; |
312 switch(tag) { | |
313 case MKTAG('P', 'R', 'O', 'P'): | |
314 /* file header */ | |
315 get_be32(pb); /* max bit rate */ | |
316 get_be32(pb); /* avg bit rate */ | |
317 get_be32(pb); /* max packet size */ | |
318 get_be32(pb); /* avg packet size */ | |
319 get_be32(pb); /* nb packets */ | |
320 get_be32(pb); /* duration */ | |
321 get_be32(pb); /* preroll */ | |
322 get_be32(pb); /* index offset */ | |
323 get_be32(pb); /* data offset */ | |
324 get_be16(pb); /* nb streams */ | |
325 flags = get_be16(pb); /* flags */ | |
326 break; | |
327 case MKTAG('C', 'O', 'N', 'T'): | |
2291 | 328 get_str16(pb, s->title, sizeof(s->title)); |
329 get_str16(pb, s->author, sizeof(s->author)); | |
330 get_str16(pb, s->copyright, sizeof(s->copyright)); | |
331 get_str16(pb, s->comment, sizeof(s->comment)); | |
0 | 332 break; |
333 case MKTAG('M', 'D', 'P', 'R'): | |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
334 st = av_new_stream(s, 0); |
0 | 335 if (!st) |
336 goto fail; | |
337 st->id = get_be16(pb); | |
338 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
|
339 st->codec->bit_rate = get_be32(pb); /* bit rate */ |
0 | 340 get_be32(pb); /* max packet size */ |
341 get_be32(pb); /* avg packet size */ | |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
342 start_time = get_be32(pb); /* start time */ |
0 | 343 get_be32(pb); /* preroll */ |
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
85
diff
changeset
|
344 duration = get_be32(pb); /* duration */ |
743 | 345 st->start_time = start_time; |
346 st->duration = duration; | |
0 | 347 get_str8(pb, buf, sizeof(buf)); /* desc */ |
348 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
|
349 st->codec->codec_type = CODEC_TYPE_DATA; |
607 | 350 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
|
351 if (ff_rm_read_mdpr_codecdata(s, st) < 0) |
0199fcbb9d23
Split out the MDPR chunk reading into its own function.
benoit
parents:
2696
diff
changeset
|
352 return -1; |
0 | 353 break; |
354 case MKTAG('D', 'A', 'T', 'A'): | |
355 goto header_end; | |
356 default: | |
357 /* unknown tag: skip it */ | |
358 url_fskip(pb, tag_size - 10); | |
359 break; | |
360 } | |
361 } | |
362 header_end: | |
363 rm->nb_packets = get_be32(pb); /* number of packets */ | |
364 if (!rm->nb_packets && (flags & 4)) | |
365 rm->nb_packets = 3600 * 25; | |
366 get_be32(pb); /* next data header */ | |
2653 | 367 rm->curpic_num = -1; |
0 | 368 return 0; |
369 | |
370 fail: | |
371 for(i=0;i<s->nb_streams;i++) { | |
372 av_free(s->streams[i]); | |
373 } | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2237
diff
changeset
|
374 return AVERROR(EIO); |
0 | 375 } |
376 | |
377 static int get_num(ByteIOContext *pb, int *len) | |
378 { | |
379 int n, n1; | |
380 | |
381 n = get_be16(pb); | |
382 (*len)-=2; | |
2791
5d0fecceff17
Revert r10892, it's wrong and no longer needed to prevent crashes
rtogni
parents:
2771
diff
changeset
|
383 n &= 0x7FFF; |
0 | 384 if (n >= 0x4000) { |
385 return n - 0x4000; | |
386 } else { | |
387 n1 = get_be16(pb); | |
388 (*len)-=2; | |
389 return (n << 16) | n1; | |
390 } | |
391 } | |
392 | |
194 | 393 /* multiple of 20 bytes for ra144 (ugly) */ |
394 #define RAW_PACKET_SIZE 1000 | |
395 | |
613 | 396 static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_index, int64_t *pos){ |
612 | 397 RMContext *rm = s->priv_data; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
398 ByteIOContext *pb = s->pb; |
612 | 399 int len, num, res, i; |
400 AVStream *st; | |
632 | 401 uint32_t state=0xFFFFFFFF; |
612 | 402 |
403 while(!url_feof(pb)){ | |
613 | 404 *pos= url_ftell(pb); |
612 | 405 if(rm->remaining_len > 0){ |
406 num= rm->current_stream; | |
407 len= rm->remaining_len; | |
408 *timestamp = AV_NOPTS_VALUE; | |
409 *flags= 0; | |
410 }else{ | |
632 | 411 state= (state<<8) + get_byte(pb); |
885 | 412 |
632 | 413 if(state == MKBETAG('I', 'N', 'D', 'X')){ |
414 len = get_be16(pb) - 6; | |
415 if(len<0) | |
416 continue; | |
417 goto skip; | |
418 } | |
885 | 419 |
632 | 420 if(state > (unsigned)0xFFFF || state < 12) |
612 | 421 continue; |
632 | 422 len=state; |
423 state= 0xFFFFFFFF; | |
424 | |
612 | 425 num = get_be16(pb); |
426 *timestamp = get_be32(pb); | |
427 res= get_byte(pb); /* reserved */ | |
428 *flags = get_byte(pb); /* flags */ | |
613 | 429 |
885 | 430 |
612 | 431 len -= 12; |
432 } | |
433 for(i=0;i<s->nb_streams;i++) { | |
434 st = s->streams[i]; | |
435 if (num == st->id) | |
436 break; | |
437 } | |
438 if (i == s->nb_streams) { | |
632 | 439 skip: |
612 | 440 /* skip packet if unknown number */ |
441 url_fskip(pb, len); | |
442 rm->remaining_len -= len; | |
443 continue; | |
444 } | |
445 *stream_index= i; | |
885 | 446 |
612 | 447 return len; |
448 } | |
449 return -1; | |
450 } | |
451 | |
2653 | 452 static int rm_assemble_video_frame(AVFormatContext *s, RMContext *rm, AVPacket *pkt, int len) |
453 { | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
454 ByteIOContext *pb = s->pb; |
2653 | 455 int hdr, seq, pic_num, len2, pos; |
456 int type; | |
457 | |
458 hdr = get_byte(pb); len--; | |
459 type = hdr >> 6; | |
460 switch(type){ | |
461 case 0: // slice | |
462 case 2: // last slice | |
463 seq = get_byte(pb); len--; | |
464 len2 = get_num(pb, &len); | |
465 pos = get_num(pb, &len); | |
466 pic_num = get_byte(pb); len--; | |
467 rm->remaining_len = len; | |
468 break; | |
469 case 1: //whole frame | |
470 seq = get_byte(pb); len--; | |
471 if(av_new_packet(pkt, len + 9) < 0) | |
472 return AVERROR(EIO); | |
473 pkt->data[0] = 0; | |
474 AV_WL32(pkt->data + 1, 1); | |
475 AV_WL32(pkt->data + 5, 0); | |
476 get_buffer(pb, pkt->data + 9, len); | |
477 rm->remaining_len = 0; | |
478 return 0; | |
479 case 3: //frame as a part of packet | |
480 len2 = get_num(pb, &len); | |
481 pos = get_num(pb, &len); | |
482 pic_num = get_byte(pb); len--; | |
483 rm->remaining_len = len - len2; | |
484 if(av_new_packet(pkt, len2 + 9) < 0) | |
485 return AVERROR(EIO); | |
486 pkt->data[0] = 0; | |
487 AV_WL32(pkt->data + 1, 1); | |
488 AV_WL32(pkt->data + 5, 0); | |
489 get_buffer(pb, pkt->data + 9, len2); | |
490 return 0; | |
491 } | |
492 //now we have to deal with single slice | |
493 | |
494 if((seq & 0x7F) == 1 || rm->curpic_num != pic_num){ | |
495 rm->slices = ((hdr & 0x3F) << 1) + 1; | |
2764 | 496 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
|
497 av_free(rm->videobuf); |
a7e42cf4b364
Replace realloc with free+malloc, the previous content of the buffer is
rtogni
parents:
2766
diff
changeset
|
498 if(!(rm->videobuf = av_malloc(rm->videobufsize))) |
2763 | 499 return AVERROR(ENOMEM); |
2653 | 500 rm->videobufpos = 8*rm->slices + 1; |
501 rm->cur_slice = 0; | |
502 rm->curpic_num = pic_num; | |
2696 | 503 rm->pktpos = url_ftell(pb); |
2653 | 504 } |
2766 | 505 if(type == 2) |
2653 | 506 len = FFMIN(len, pos); |
507 | |
2754 | 508 if(++rm->cur_slice > rm->slices) |
2653 | 509 return 1; |
510 AV_WL32(rm->videobuf - 7 + 8*rm->cur_slice, 1); | |
511 AV_WL32(rm->videobuf - 3 + 8*rm->cur_slice, rm->videobufpos - 8*rm->slices - 1); | |
512 if(rm->videobufpos + len > rm->videobufsize) | |
513 return 1; | |
514 if (get_buffer(pb, rm->videobuf + rm->videobufpos, len) != len) | |
515 return AVERROR(EIO); | |
2808 | 516 rm->videobufpos += len; |
2653 | 517 rm->remaining_len-= len; |
518 | |
519 if(type == 2 || (rm->videobufpos) == rm->videobufsize){ | |
520 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
|
521 if(av_new_packet(pkt, rm->videobufpos - 8*(rm->slices - rm->cur_slice)) < 0) |
2653 | 522 return AVERROR(ENOMEM); |
2762
137eec75e3df
Optimize memory management to create an av_packet from multiple slices:
rtogni
parents:
2754
diff
changeset
|
523 memcpy(pkt->data, rm->videobuf, 1 + 8*rm->cur_slice); |
2766 | 524 memcpy(pkt->data + 1 + 8*rm->cur_slice, rm->videobuf + 1 + 8*rm->slices, |
525 rm->videobufpos - 1 - 8*rm->slices); | |
2696 | 526 pkt->pts = AV_NOPTS_VALUE; |
527 pkt->pos = rm->pktpos; | |
2653 | 528 return 0; |
529 } | |
530 | |
531 return 1; | |
532 } | |
533 | |
2725 | 534 static inline void |
535 rm_ac3_swap_bytes (AVStream *st, AVPacket *pkt) | |
536 { | |
537 uint8_t *ptr; | |
538 int j; | |
539 | |
540 if (st->codec->codec_id == CODEC_ID_AC3) { | |
541 ptr = pkt->data; | |
542 for (j=0;j<pkt->size;j+=2) { | |
543 FFSWAP(int, ptr[0], ptr[1]); | |
544 ptr += 2; | |
545 } | |
546 } | |
547 } | |
548 | |
2889 | 549 int |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
550 ff_rm_parse_packet (AVFormatContext *s, AVStream *st, int len, AVPacket *pkt, |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
551 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
|
552 { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
553 ByteIOContext *pb = s->pb; |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
554 RMContext *rm = s->priv_data; |
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 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
|
557 rm->current_stream= st->id; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
558 if(rm_assemble_video_frame(s, rm, pkt, len) == 1) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
559 return -1; //got partial frame |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
560 } 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
|
561 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
|
562 (st->codec->codec_id == CODEC_ID_COOK) || |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
563 (st->codec->codec_id == CODEC_ID_ATRAC3)) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
564 int x; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
565 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
|
566 int cfs = rm->coded_framesize; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
567 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
|
568 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
|
569 int w = rm->audio_framesize; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
570 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
571 if (*flags & 2) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
572 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
|
573 if (!y) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
574 rm->audiotimestamp = *timestamp; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
575 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
576 switch(st->codec->codec_id) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
577 case CODEC_ID_RA_288: |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
578 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
|
579 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
|
580 break; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
581 case CODEC_ID_ATRAC3: |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
582 case CODEC_ID_COOK: |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
583 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
|
584 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
|
585 break; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
586 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
587 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
588 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
|
589 return -1; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
590 else { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
591 rm->sub_packet_cnt = 0; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
592 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
|
593 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
|
594 // Release first audio packet |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
595 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
|
596 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
|
597 *timestamp = rm->audiotimestamp; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
598 *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
|
599 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
600 } 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
|
601 int x; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
602 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
|
603 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
|
604 if (rm->sub_packet_cnt) { |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
605 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
|
606 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
|
607 // Release first audio packet |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
608 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
|
609 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
|
610 *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
|
611 } |
2940 | 612 } else { |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
613 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
|
614 rm_ac3_swap_bytes(st, pkt); |
2940 | 615 } |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
616 } else |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
617 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
|
618 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
619 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
|
620 || st->discard >= AVDISCARD_ALL){ |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
621 av_free_packet(pkt); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
622 return -1; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
623 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
624 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
625 pkt->stream_index = st->index; |
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 #if 0 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
628 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
|
629 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
|
630 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
|
631 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
|
632 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
633 seq |= (*timestamp&~0x3FFF); |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
634 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
|
635 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
|
636 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
637 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
638 #endif |
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 pkt->pts= *timestamp; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
641 if (*flags & 2) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
642 pkt->flags |= PKT_FLAG_KEY; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
643 |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
644 return 0; |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
645 } |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
646 |
2889 | 647 void |
2724
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
648 ff_rm_retrieve_cache (AVFormatContext *s, AVStream *st, AVPacket *pkt) |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
649 { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
650 ByteIOContext *pb = s->pb; |
2724
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
651 RMContext *rm = s->priv_data; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
652 |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
653 assert (rm->audio_pkt_cnt > 0); |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
654 |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
655 if (st->codec->codec_id == CODEC_ID_AAC) |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
656 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
|
657 else { |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
658 av_new_packet(pkt, st->codec->block_align); |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
659 memcpy(pkt->data, rm->audiobuf + st->codec->block_align * |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
660 (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
|
661 st->codec->block_align); |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
662 } |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
663 rm->audio_pkt_cnt--; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
664 pkt->flags = 0; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
665 pkt->stream_index = st->index; |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
666 } |
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
667 |
0 | 668 static int rm_read_packet(AVFormatContext *s, AVPacket *pkt) |
669 { | |
670 RMContext *rm = s->priv_data; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
671 ByteIOContext *pb = s->pb; |
0 | 672 AVStream *st; |
2725 | 673 int i, len; |
613 | 674 int64_t timestamp, pos; |
612 | 675 int flags; |
0 | 676 |
888 | 677 if (rm->audio_pkt_cnt) { |
879 | 678 // If there are queued audio packet return them first |
679 st = s->streams[rm->audio_stream_num]; | |
2724
1f752c3afdc8
Isolate caching of audio frames in its own function.
benoit
parents:
2723
diff
changeset
|
680 ff_rm_retrieve_cache(s, st, pkt); |
888 | 681 } else if (rm->old_format) { |
682 st = s->streams[0]; | |
683 if (st->codec->codec_id == CODEC_ID_RA_288) { | |
684 int x, y; | |
685 | |
686 for (y = 0; y < rm->sub_packet_h; y++) | |
687 for (x = 0; x < rm->sub_packet_h/2; x++) | |
688 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
|
689 return AVERROR(EIO); |
888 | 690 rm->audio_stream_num = 0; |
691 rm->audio_pkt_cnt = rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - 1; | |
692 // Release first audio packet | |
693 av_new_packet(pkt, st->codec->block_align); | |
694 memcpy(pkt->data, rm->audiobuf, st->codec->block_align); | |
695 pkt->flags |= PKT_FLAG_KEY; // Mark first packet as keyframe | |
696 pkt->stream_index = 0; | |
697 } else { | |
698 /* just read raw bytes */ | |
699 len = RAW_PACKET_SIZE; | |
700 len= av_get_packet(pb, pkt, len); | |
701 pkt->stream_index = 0; | |
702 if (len <= 0) { | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2237
diff
changeset
|
703 return AVERROR(EIO); |
888 | 704 } |
705 pkt->size = len; | |
706 } | |
2753
b55dad23bfcb
Move dnet-ac3 byte-swapping code close to audio packet read code
rtogni
parents:
2725
diff
changeset
|
707 rm_ac3_swap_bytes(st, pkt); |
194 | 708 } else { |
613 | 709 int seq=1; |
652 | 710 resync: |
613 | 711 len=sync(s, ×tamp, &flags, &i, &pos); |
612 | 712 if(len<0) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2237
diff
changeset
|
713 return AVERROR(EIO); |
612 | 714 st = s->streams[i]; |
715 | |
2722
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
716 if (ff_rm_parse_packet (s, st, len, pkt, &seq, &flags, ×tamp) < 0) |
65dcef6d93e1
Split out the packet parsing from the main function body in rmdec.c
benoit
parents:
2721
diff
changeset
|
717 goto resync; |
879 | 718 |
2937
f3070076d901
Remove some spaces to keep certain people's eyes from hurting.
diego
parents:
2904
diff
changeset
|
719 if((flags&2) && (seq&0x7F) == 1) |
2883 | 720 av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME); |
0 | 721 } |
722 | |
723 return 0; | |
724 } | |
725 | |
726 static int rm_read_close(AVFormatContext *s) | |
727 { | |
879 | 728 RMContext *rm = s->priv_data; |
729 | |
730 av_free(rm->audiobuf); | |
2653 | 731 av_free(rm->videobuf); |
0 | 732 return 0; |
733 } | |
734 | |
735 static int rm_probe(AVProbeData *p) | |
736 { | |
737 /* check file header */ | |
194 | 738 if ((p->buf[0] == '.' && p->buf[1] == 'R' && |
739 p->buf[2] == 'M' && p->buf[3] == 'F' && | |
740 p->buf[4] == 0 && p->buf[5] == 0) || | |
741 (p->buf[0] == '.' && p->buf[1] == 'r' && | |
742 p->buf[2] == 'a' && p->buf[3] == 0xfd)) | |
0 | 743 return AVPROBE_SCORE_MAX; |
744 else | |
745 return 0; | |
746 } | |
747 | |
885 | 748 static int64_t rm_read_dts(AVFormatContext *s, int stream_index, |
612 | 749 int64_t *ppos, int64_t pos_limit) |
750 { | |
751 RMContext *rm = s->priv_data; | |
752 int64_t pos, dts; | |
613 | 753 int stream_index2, flags, len, h; |
612 | 754 |
755 pos = *ppos; | |
885 | 756 |
612 | 757 if(rm->old_format) |
758 return AV_NOPTS_VALUE; | |
759 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
760 url_fseek(s->pb, pos, SEEK_SET); |
612 | 761 rm->remaining_len=0; |
762 for(;;){ | |
613 | 763 int seq=1; |
764 AVStream *st; | |
765 | |
766 len=sync(s, &dts, &flags, &stream_index2, &pos); | |
612 | 767 if(len<0) |
768 return AV_NOPTS_VALUE; | |
613 | 769 |
770 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
|
771 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
772 h= get_byte(s->pb); len--; |
613 | 773 if(!(h & 0x40)){ |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
774 seq = get_byte(s->pb); len--; |
612 | 775 } |
776 } | |
885 | 777 |
613 | 778 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
|
779 // av_log(s, AV_LOG_DEBUG, "%d %d-%d %"PRId64" %d\n", flags, stream_index2, stream_index, dts, seq); |
979 | 780 av_add_index_entry(st, pos, dts, 0, 0, AVINDEX_KEYFRAME); |
613 | 781 if(stream_index2 == stream_index) |
782 break; | |
783 } | |
784 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2770
diff
changeset
|
785 url_fskip(s->pb, len); |
612 | 786 } |
787 *ppos = pos; | |
788 return dts; | |
789 } | |
790 | |
1169 | 791 AVInputFormat rm_demuxer = { |
0 | 792 "rm", |
793 "rm format", | |
794 sizeof(RMContext), | |
795 rm_probe, | |
796 rm_read_header, | |
797 rm_read_packet, | |
798 rm_read_close, | |
612 | 799 NULL, |
800 rm_read_dts, | |
0 | 801 }; |