Mercurial > libavformat.hg
annotate wav.c @ 151:ec4d9190d3b1 libavformat
dynamic array functions
author | bellard |
---|---|
date | Fri, 13 Jun 2003 14:22:23 +0000 |
parents | b43e201588dc |
children | 01bec1059bdf |
rev | line source |
---|---|
0 | 1 /* |
2 * WAV encoder and decoder | |
3 * Copyright (c) 2001, 2002 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 #include "avformat.h" | |
20 #include "avi.h" | |
21 | |
22 const CodecTag codec_wav_tags[] = { | |
23 { CODEC_ID_MP2, 0x50 }, | |
24 { CODEC_ID_MP3LAME, 0x55 }, | |
25 { CODEC_ID_AC3, 0x2000 }, | |
26 { CODEC_ID_PCM_S16LE, 0x01 }, | |
27 { CODEC_ID_PCM_U8, 0x01 }, /* must come after s16le in this list */ | |
28 { CODEC_ID_PCM_ALAW, 0x06 }, | |
29 { CODEC_ID_PCM_MULAW, 0x07 }, | |
30 { CODEC_ID_ADPCM_MS, 0x02 }, | |
31 { CODEC_ID_ADPCM_IMA_WAV, 0x11 }, | |
32 { CODEC_ID_WMAV1, 0x160 }, | |
33 { CODEC_ID_WMAV2, 0x161 }, | |
34 { 0, 0 }, | |
35 }; | |
36 | |
37 /* WAVEFORMATEX header */ | |
38 /* returns the size or -1 on error */ | |
39 int put_wav_header(ByteIOContext *pb, AVCodecContext *enc) | |
40 { | |
41 int tag, bps, blkalign, bytespersec; | |
42 int hdrsize = 18; | |
43 | |
44 tag = codec_get_tag(codec_wav_tags, enc->codec_id); | |
45 if (tag == 0) | |
46 return -1; | |
47 put_le16(pb, tag); | |
48 put_le16(pb, enc->channels); | |
49 put_le32(pb, enc->sample_rate); | |
50 if (enc->codec_id == CODEC_ID_PCM_U8 || | |
51 enc->codec_id == CODEC_ID_PCM_ALAW || | |
52 enc->codec_id == CODEC_ID_PCM_MULAW) { | |
53 bps = 8; | |
54 } else if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3LAME) { | |
55 bps = 0; | |
56 } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV || enc->codec_id == CODEC_ID_ADPCM_MS) { | |
57 bps = 4; | |
58 } else { | |
59 bps = 16; | |
60 } | |
61 | |
62 if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3LAME) { | |
63 blkalign = 1; | |
64 //blkalign = 144 * enc->bit_rate/enc->sample_rate; | |
65 } else if (enc->block_align != 0) { /* specified by the codec */ | |
66 blkalign = enc->block_align; | |
67 } else | |
68 blkalign = enc->channels*bps >> 3; | |
69 if (enc->codec_id == CODEC_ID_PCM_U8 || | |
70 enc->codec_id == CODEC_ID_PCM_S16LE) { | |
71 bytespersec = enc->sample_rate * blkalign; | |
72 } else { | |
73 bytespersec = enc->bit_rate / 8; | |
74 } | |
75 put_le32(pb, bytespersec); /* bytes per second */ | |
76 put_le16(pb, blkalign); /* block align */ | |
77 put_le16(pb, bps); /* bits per sample */ | |
78 if (enc->codec_id == CODEC_ID_MP3LAME) { | |
79 put_le16(pb, 12); /* wav_extra_size */ | |
80 hdrsize += 12; | |
81 put_le16(pb, 1); /* wID */ | |
82 put_le32(pb, 2); /* fdwFlags */ | |
83 put_le16(pb, 1152); /* nBlockSize */ | |
84 put_le16(pb, 1); /* nFramesPerBlock */ | |
85 put_le16(pb, 1393); /* nCodecDelay */ | |
86 } else if (enc->codec_id == CODEC_ID_MP2) { | |
87 put_le16(pb, 22); /* wav_extra_size */ | |
88 hdrsize += 22; | |
89 put_le16(pb, 2); /* fwHeadLayer */ | |
90 put_le32(pb, enc->bit_rate); /* dwHeadBitrate */ | |
91 put_le16(pb, enc->channels == 2 ? 1 : 8); /* fwHeadMode */ | |
92 put_le16(pb, 0); /* fwHeadModeExt */ | |
93 put_le16(pb, 1); /* wHeadEmphasis */ | |
94 put_le16(pb, 16); /* fwHeadFlags */ | |
95 put_le32(pb, 0); /* dwPTSLow */ | |
96 put_le32(pb, 0); /* dwPTSHigh */ | |
97 } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) { | |
98 put_le16(pb, 2); /* wav_extra_size */ | |
99 put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */ | |
100 } else | |
101 put_le16(pb, 0); /* wav_extra_size */ | |
102 | |
103 return hdrsize; | |
104 } | |
105 | |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
106 /* We could be given one of the three possible structures here: |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
107 * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
108 * is an expansion of the previous one with the fields added |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
109 * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
110 * WAVEFORMATEX adds 'WORD cbSize' and basically makes itself |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
111 * an openended structure. |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
112 */ |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
113 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size) |
0 | 114 { |
115 int id; | |
116 | |
117 id = get_le16(pb); | |
118 codec->codec_type = CODEC_TYPE_AUDIO; | |
119 codec->codec_tag = id; | |
120 codec->channels = get_le16(pb); | |
121 codec->sample_rate = get_le32(pb); | |
122 codec->bit_rate = get_le32(pb) * 8; | |
123 codec->block_align = get_le16(pb); | |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
124 if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */ |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
125 codec->bits_per_sample = 8; |
87 | 126 }else |
127 codec->bits_per_sample = get_le16(pb); | |
128 codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample); | |
129 | |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
130 if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */ |
0 | 131 codec->extradata_size = get_le16(pb); |
132 if (codec->extradata_size > 0) { | |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
133 if (codec->extradata_size > size - 18) |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
134 codec->extradata_size = size - 18; |
0 | 135 codec->extradata = av_mallocz(codec->extradata_size); |
136 get_buffer(pb, codec->extradata, codec->extradata_size); | |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
137 } else |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
138 codec->extradata_size = 0; |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
139 |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
140 /* It is possible for the chunk to contain garbage at the end */ |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
141 if (size - codec->extradata_size - 18 > 0) |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
142 url_fskip(pb, size - codec->extradata_size - 18); |
0 | 143 } |
144 } | |
145 | |
146 | |
147 int wav_codec_get_id(unsigned int tag, int bps) | |
148 { | |
149 int id; | |
150 id = codec_get_id(codec_wav_tags, tag); | |
151 if (id <= 0) | |
152 return id; | |
153 /* handle specific u8 codec */ | |
154 if (id == CODEC_ID_PCM_S16LE && bps == 8) | |
155 id = CODEC_ID_PCM_U8; | |
156 return id; | |
157 } | |
158 | |
159 typedef struct { | |
160 offset_t data; | |
161 } WAVContext; | |
162 | |
163 static int wav_write_header(AVFormatContext *s) | |
164 { | |
165 WAVContext *wav = s->priv_data; | |
166 ByteIOContext *pb = &s->pb; | |
167 offset_t fmt; | |
168 | |
169 put_tag(pb, "RIFF"); | |
170 put_le32(pb, 0); /* file length */ | |
171 put_tag(pb, "WAVE"); | |
172 | |
173 /* format header */ | |
174 fmt = start_tag(pb, "fmt "); | |
175 if (put_wav_header(pb, &s->streams[0]->codec) < 0) { | |
176 av_free(wav); | |
177 return -1; | |
178 } | |
179 end_tag(pb, fmt); | |
180 | |
181 /* data header */ | |
182 wav->data = start_tag(pb, "data"); | |
183 | |
184 put_flush_packet(pb); | |
185 | |
186 return 0; | |
187 } | |
188 | |
189 static int wav_write_packet(AVFormatContext *s, int stream_index_ptr, | |
65 | 190 uint8_t *buf, int size, int force_pts) |
0 | 191 { |
192 ByteIOContext *pb = &s->pb; | |
193 put_buffer(pb, buf, size); | |
194 return 0; | |
195 } | |
196 | |
197 static int wav_write_trailer(AVFormatContext *s) | |
198 { | |
199 ByteIOContext *pb = &s->pb; | |
200 WAVContext *wav = s->priv_data; | |
201 offset_t file_size; | |
202 | |
203 if (!url_is_streamed(&s->pb)) { | |
204 end_tag(pb, wav->data); | |
205 | |
206 /* update file size */ | |
207 file_size = url_ftell(pb); | |
208 url_fseek(pb, 4, SEEK_SET); | |
65 | 209 put_le32(pb, (uint32_t)(file_size - 8)); |
0 | 210 url_fseek(pb, file_size, SEEK_SET); |
211 | |
212 put_flush_packet(pb); | |
213 } | |
214 return 0; | |
215 } | |
216 | |
217 /* return the size of the found tag */ | |
218 /* XXX: > 2GB ? */ | |
65 | 219 static int find_tag(ByteIOContext *pb, uint32_t tag1) |
0 | 220 { |
221 unsigned int tag; | |
222 int size; | |
223 | |
224 for(;;) { | |
225 if (url_feof(pb)) | |
226 return -1; | |
227 tag = get_le32(pb); | |
228 size = get_le32(pb); | |
229 if (tag == tag1) | |
230 break; | |
231 url_fseek(pb, size, SEEK_CUR); | |
232 } | |
233 if (size < 0) | |
234 size = 0x7fffffff; | |
235 return size; | |
236 } | |
237 | |
238 static int wav_probe(AVProbeData *p) | |
239 { | |
240 /* check file header */ | |
241 if (p->buf_size <= 32) | |
242 return 0; | |
243 if (p->buf[0] == 'R' && p->buf[1] == 'I' && | |
244 p->buf[2] == 'F' && p->buf[3] == 'F' && | |
245 p->buf[8] == 'W' && p->buf[9] == 'A' && | |
246 p->buf[10] == 'V' && p->buf[11] == 'E') | |
247 return AVPROBE_SCORE_MAX; | |
248 else | |
249 return 0; | |
250 } | |
251 | |
252 /* wav input */ | |
253 static int wav_read_header(AVFormatContext *s, | |
254 AVFormatParameters *ap) | |
255 { | |
256 int size; | |
257 unsigned int tag; | |
258 ByteIOContext *pb = &s->pb; | |
259 AVStream *st; | |
260 | |
261 /* check RIFF header */ | |
262 tag = get_le32(pb); | |
263 | |
264 if (tag != MKTAG('R', 'I', 'F', 'F')) | |
265 return -1; | |
266 get_le32(pb); /* file size */ | |
267 tag = get_le32(pb); | |
268 if (tag != MKTAG('W', 'A', 'V', 'E')) | |
269 return -1; | |
270 | |
271 /* parse fmt header */ | |
272 size = find_tag(pb, MKTAG('f', 'm', 't', ' ')); | |
273 if (size < 0) | |
274 return -1; | |
275 st = av_new_stream(s, 0); | |
276 if (!st) | |
277 return AVERROR_NOMEM; | |
278 | |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
279 get_wav_header(pb, &st->codec, size); |
0 | 280 |
281 size = find_tag(pb, MKTAG('d', 'a', 't', 'a')); | |
282 if (size < 0) | |
283 return -1; | |
284 return 0; | |
285 } | |
286 | |
287 #define MAX_SIZE 4096 | |
288 | |
289 static int wav_read_packet(AVFormatContext *s, | |
290 AVPacket *pkt) | |
291 { | |
292 int ret; | |
293 | |
294 if (url_feof(&s->pb)) | |
295 return -EIO; | |
296 if (av_new_packet(pkt, MAX_SIZE)) | |
297 return -EIO; | |
298 pkt->stream_index = 0; | |
299 | |
300 ret = get_buffer(&s->pb, pkt->data, pkt->size); | |
301 if (ret < 0) | |
302 av_free_packet(pkt); | |
303 /* note: we need to modify the packet size here to handle the last | |
304 packet */ | |
305 pkt->size = ret; | |
306 return ret; | |
307 } | |
308 | |
309 static int wav_read_close(AVFormatContext *s) | |
310 { | |
311 return 0; | |
312 } | |
313 | |
314 static AVInputFormat wav_iformat = { | |
315 "wav", | |
316 "wav format", | |
317 0, | |
318 wav_probe, | |
319 wav_read_header, | |
320 wav_read_packet, | |
321 wav_read_close, | |
322 }; | |
323 | |
324 static AVOutputFormat wav_oformat = { | |
325 "wav", | |
326 "wav format", | |
327 "audio/x-wav", | |
328 "wav", | |
329 sizeof(WAVContext), | |
330 CODEC_ID_PCM_S16LE, | |
331 CODEC_ID_NONE, | |
332 wav_write_header, | |
333 wav_write_packet, | |
334 wav_write_trailer, | |
335 }; | |
336 | |
337 int wav_init(void) | |
338 { | |
339 av_register_input_format(&wav_iformat); | |
340 av_register_output_format(&wav_oformat); | |
341 return 0; | |
342 } |