Mercurial > libavformat.hg
annotate wav.c @ 689:746b44db3a3d libavformat
go LOCO, courtesy of Kostya Shishkov
author | melanson |
---|---|
date | Tue, 01 Mar 2005 02:24:58 +0000 |
parents | 4b339414d338 |
children | 3c8a21cd6296 |
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 }, | |
232 | 24 { CODEC_ID_MP3, 0x55 }, |
0 | 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 }, | |
362
07bf7ff87eb3
* Initial implementation of the G.726 ADPCM audio codec.
romansh
parents:
309
diff
changeset
|
32 { CODEC_ID_ADPCM_G726, 0x45 }, |
226 | 33 { CODEC_ID_ADPCM_IMA_DK4, 0x61 }, /* rogue format number */ |
34 { CODEC_ID_ADPCM_IMA_DK3, 0x62 }, /* rogue format number */ | |
0 | 35 { CODEC_ID_WMAV1, 0x160 }, |
36 { CODEC_ID_WMAV2, 0x161 }, | |
550
bc2751b2c189
untested AAC in WAV/AVI patch by (Mns Rullgrd <mru at mru dot ath dot cx>)
michael
parents:
529
diff
changeset
|
37 { CODEC_ID_AAC, 0x706d }, |
411
64c347065c1b
some random id for vorbis so we can do some experiments with vorbis in various containers, anyone knows if vorbis in WAV/AVI has a official id?
michael
parents:
384
diff
changeset
|
38 { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id? |
517 | 39 { CODEC_ID_SONIC, 0x2048 }, |
40 { CODEC_ID_SONIC_LS, 0x2048 }, | |
561
d5925f47058d
Creative ADPCM decoder, format 0x200, courtesy of Konstantin Shishkov
melanson
parents:
558
diff
changeset
|
41 { CODEC_ID_ADPCM_CT, 0x200 }, |
685 | 42 { CODEC_ID_ADPCM_SWF, ('S'<<8)+'F' }, |
0 | 43 { 0, 0 }, |
44 }; | |
45 | |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
46 #ifdef CONFIG_ENCODERS |
0 | 47 /* WAVEFORMATEX header */ |
48 /* returns the size or -1 on error */ | |
49 int put_wav_header(ByteIOContext *pb, AVCodecContext *enc) | |
50 { | |
196 | 51 int bps, blkalign, bytespersec; |
0 | 52 int hdrsize = 18; |
53 | |
196 | 54 if(!enc->codec_tag) |
55 enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id); | |
56 if(!enc->codec_tag) | |
0 | 57 return -1; |
196 | 58 |
59 put_le16(pb, enc->codec_tag); | |
0 | 60 put_le16(pb, enc->channels); |
61 put_le32(pb, enc->sample_rate); | |
62 if (enc->codec_id == CODEC_ID_PCM_U8 || | |
63 enc->codec_id == CODEC_ID_PCM_ALAW || | |
64 enc->codec_id == CODEC_ID_PCM_MULAW) { | |
65 bps = 8; | |
232 | 66 } else if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) { |
0 | 67 bps = 0; |
68 } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV || enc->codec_id == CODEC_ID_ADPCM_MS) { | |
69 bps = 4; | |
70 } else { | |
71 bps = 16; | |
72 } | |
73 | |
232 | 74 if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) { |
577 | 75 blkalign = enc->frame_size; //this is wrong, but seems many demuxers dont work if this is set correctly |
0 | 76 //blkalign = 144 * enc->bit_rate/enc->sample_rate; |
77 } else if (enc->block_align != 0) { /* specified by the codec */ | |
78 blkalign = enc->block_align; | |
79 } else | |
80 blkalign = enc->channels*bps >> 3; | |
81 if (enc->codec_id == CODEC_ID_PCM_U8 || | |
82 enc->codec_id == CODEC_ID_PCM_S16LE) { | |
83 bytespersec = enc->sample_rate * blkalign; | |
84 } else { | |
85 bytespersec = enc->bit_rate / 8; | |
86 } | |
87 put_le32(pb, bytespersec); /* bytes per second */ | |
88 put_le16(pb, blkalign); /* block align */ | |
89 put_le16(pb, bps); /* bits per sample */ | |
232 | 90 if (enc->codec_id == CODEC_ID_MP3) { |
0 | 91 put_le16(pb, 12); /* wav_extra_size */ |
92 hdrsize += 12; | |
93 put_le16(pb, 1); /* wID */ | |
94 put_le32(pb, 2); /* fdwFlags */ | |
95 put_le16(pb, 1152); /* nBlockSize */ | |
96 put_le16(pb, 1); /* nFramesPerBlock */ | |
97 put_le16(pb, 1393); /* nCodecDelay */ | |
98 } else if (enc->codec_id == CODEC_ID_MP2) { | |
99 put_le16(pb, 22); /* wav_extra_size */ | |
100 hdrsize += 22; | |
101 put_le16(pb, 2); /* fwHeadLayer */ | |
102 put_le32(pb, enc->bit_rate); /* dwHeadBitrate */ | |
103 put_le16(pb, enc->channels == 2 ? 1 : 8); /* fwHeadMode */ | |
104 put_le16(pb, 0); /* fwHeadModeExt */ | |
105 put_le16(pb, 1); /* wHeadEmphasis */ | |
106 put_le16(pb, 16); /* fwHeadFlags */ | |
107 put_le32(pb, 0); /* dwPTSLow */ | |
108 put_le32(pb, 0); /* dwPTSHigh */ | |
109 } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) { | |
110 put_le16(pb, 2); /* wav_extra_size */ | |
379
b056f76ec6eb
Correcting the header size for ADPCM_IMA_WAV files patch by (Brian Becker <brian dot becker at palmone dot com>)
michael
parents:
362
diff
changeset
|
111 hdrsize += 2; |
0 | 112 put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */ |
529 | 113 } else if(enc->extradata_size){ |
412
459df3ed379e
store extradata, vorbis in avi works now, dont expect av sync though
michael
parents:
411
diff
changeset
|
114 put_le16(pb, enc->extradata_size); |
459df3ed379e
store extradata, vorbis in avi works now, dont expect av sync though
michael
parents:
411
diff
changeset
|
115 put_buffer(pb, enc->extradata, enc->extradata_size); |
459df3ed379e
store extradata, vorbis in avi works now, dont expect av sync though
michael
parents:
411
diff
changeset
|
116 hdrsize += enc->extradata_size; |
413 | 117 if(hdrsize&1){ |
118 hdrsize++; | |
119 put_byte(pb, 0); | |
120 } | |
529 | 121 } else { |
122 hdrsize -= 2; | |
412
459df3ed379e
store extradata, vorbis in avi works now, dont expect av sync though
michael
parents:
411
diff
changeset
|
123 } |
0 | 124 |
125 return hdrsize; | |
126 } | |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
127 #endif //CONFIG_ENCODERS |
0 | 128 |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
129 /* 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
|
130 * 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
|
131 * 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
|
132 * 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
|
133 * 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
|
134 * an openended structure. |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
135 */ |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
136 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size) |
0 | 137 { |
138 int id; | |
139 | |
140 id = get_le16(pb); | |
141 codec->codec_type = CODEC_TYPE_AUDIO; | |
142 codec->codec_tag = id; | |
143 codec->channels = get_le16(pb); | |
144 codec->sample_rate = get_le32(pb); | |
145 codec->bit_rate = get_le32(pb) * 8; | |
146 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
|
147 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
|
148 codec->bits_per_sample = 8; |
87 | 149 }else |
150 codec->bits_per_sample = get_le16(pb); | |
151 codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample); | |
309 | 152 |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
153 if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */ |
0 | 154 codec->extradata_size = get_le16(pb); |
155 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
|
156 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
|
157 codec->extradata_size = size - 18; |
587
fe24632a577b
allocate a few bytes more for extradata so the bitstream reader if its used by the codec for parsing extardata, doesnt read over the end
michael
parents:
577
diff
changeset
|
158 codec->extradata = av_mallocz(codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
0 | 159 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
|
160 } else |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
161 codec->extradata_size = 0; |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
162 |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
163 /* 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
|
164 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
|
165 url_fskip(pb, size - codec->extradata_size - 18); |
0 | 166 } |
167 } | |
168 | |
169 | |
170 int wav_codec_get_id(unsigned int tag, int bps) | |
171 { | |
172 int id; | |
173 id = codec_get_id(codec_wav_tags, tag); | |
174 if (id <= 0) | |
175 return id; | |
176 /* handle specific u8 codec */ | |
177 if (id == CODEC_ID_PCM_S16LE && bps == 8) | |
178 id = CODEC_ID_PCM_U8; | |
179 return id; | |
180 } | |
181 | |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
182 #ifdef CONFIG_ENCODERS |
0 | 183 typedef struct { |
184 offset_t data; | |
185 } WAVContext; | |
186 | |
187 static int wav_write_header(AVFormatContext *s) | |
188 { | |
189 WAVContext *wav = s->priv_data; | |
190 ByteIOContext *pb = &s->pb; | |
191 offset_t fmt; | |
192 | |
193 put_tag(pb, "RIFF"); | |
194 put_le32(pb, 0); /* file length */ | |
195 put_tag(pb, "WAVE"); | |
196 | |
197 /* format header */ | |
198 fmt = start_tag(pb, "fmt "); | |
199 if (put_wav_header(pb, &s->streams[0]->codec) < 0) { | |
200 av_free(wav); | |
201 return -1; | |
202 } | |
203 end_tag(pb, fmt); | |
204 | |
645
9fc2d2cc4608
wav timestamp truncation fix by (Wolfram Gloger <wmglo dent.med.uni-muenchen de>)
michael
parents:
587
diff
changeset
|
205 av_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec.sample_rate); |
9fc2d2cc4608
wav timestamp truncation fix by (Wolfram Gloger <wmglo dent.med.uni-muenchen de>)
michael
parents:
587
diff
changeset
|
206 |
0 | 207 /* data header */ |
208 wav->data = start_tag(pb, "data"); | |
209 | |
210 put_flush_packet(pb); | |
211 | |
212 return 0; | |
213 } | |
214 | |
468 | 215 static int wav_write_packet(AVFormatContext *s, AVPacket *pkt) |
0 | 216 { |
217 ByteIOContext *pb = &s->pb; | |
468 | 218 put_buffer(pb, pkt->data, pkt->size); |
0 | 219 return 0; |
220 } | |
221 | |
222 static int wav_write_trailer(AVFormatContext *s) | |
223 { | |
224 ByteIOContext *pb = &s->pb; | |
225 WAVContext *wav = s->priv_data; | |
226 offset_t file_size; | |
227 | |
228 if (!url_is_streamed(&s->pb)) { | |
229 end_tag(pb, wav->data); | |
230 | |
231 /* update file size */ | |
232 file_size = url_ftell(pb); | |
233 url_fseek(pb, 4, SEEK_SET); | |
65 | 234 put_le32(pb, (uint32_t)(file_size - 8)); |
0 | 235 url_fseek(pb, file_size, SEEK_SET); |
236 | |
237 put_flush_packet(pb); | |
238 } | |
239 return 0; | |
240 } | |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
241 #endif //CONFIG_ENCODERS |
0 | 242 |
243 /* return the size of the found tag */ | |
244 /* XXX: > 2GB ? */ | |
65 | 245 static int find_tag(ByteIOContext *pb, uint32_t tag1) |
0 | 246 { |
247 unsigned int tag; | |
248 int size; | |
249 | |
250 for(;;) { | |
251 if (url_feof(pb)) | |
252 return -1; | |
253 tag = get_le32(pb); | |
254 size = get_le32(pb); | |
255 if (tag == tag1) | |
256 break; | |
257 url_fseek(pb, size, SEEK_CUR); | |
258 } | |
259 if (size < 0) | |
260 size = 0x7fffffff; | |
261 return size; | |
262 } | |
263 | |
264 static int wav_probe(AVProbeData *p) | |
265 { | |
266 /* check file header */ | |
267 if (p->buf_size <= 32) | |
268 return 0; | |
269 if (p->buf[0] == 'R' && p->buf[1] == 'I' && | |
270 p->buf[2] == 'F' && p->buf[3] == 'F' && | |
271 p->buf[8] == 'W' && p->buf[9] == 'A' && | |
272 p->buf[10] == 'V' && p->buf[11] == 'E') | |
273 return AVPROBE_SCORE_MAX; | |
274 else | |
275 return 0; | |
276 } | |
277 | |
278 /* wav input */ | |
279 static int wav_read_header(AVFormatContext *s, | |
280 AVFormatParameters *ap) | |
281 { | |
282 int size; | |
283 unsigned int tag; | |
284 ByteIOContext *pb = &s->pb; | |
285 AVStream *st; | |
286 | |
287 /* check RIFF header */ | |
288 tag = get_le32(pb); | |
289 | |
290 if (tag != MKTAG('R', 'I', 'F', 'F')) | |
291 return -1; | |
292 get_le32(pb); /* file size */ | |
293 tag = get_le32(pb); | |
294 if (tag != MKTAG('W', 'A', 'V', 'E')) | |
295 return -1; | |
296 | |
297 /* parse fmt header */ | |
298 size = find_tag(pb, MKTAG('f', 'm', 't', ' ')); | |
299 if (size < 0) | |
300 return -1; | |
301 st = av_new_stream(s, 0); | |
302 if (!st) | |
303 return AVERROR_NOMEM; | |
304 | |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
305 get_wav_header(pb, &st->codec, size); |
309 | 306 st->need_parsing = 1; |
567 | 307 |
308 av_set_pts_info(st, 64, 1, st->codec.sample_rate); | |
309 | |
0 | 310 size = find_tag(pb, MKTAG('d', 'a', 't', 'a')); |
311 if (size < 0) | |
312 return -1; | |
313 return 0; | |
314 } | |
315 | |
316 #define MAX_SIZE 4096 | |
317 | |
318 static int wav_read_packet(AVFormatContext *s, | |
319 AVPacket *pkt) | |
320 { | |
309 | 321 int ret, size; |
322 AVStream *st; | |
0 | 323 |
324 if (url_feof(&s->pb)) | |
482 | 325 return AVERROR_IO; |
309 | 326 st = s->streams[0]; |
327 | |
328 size = MAX_SIZE; | |
329 if (st->codec.block_align > 1) { | |
330 if (size < st->codec.block_align) | |
331 size = st->codec.block_align; | |
332 size = (size / st->codec.block_align) * st->codec.block_align; | |
333 } | |
334 if (av_new_packet(pkt, size)) | |
482 | 335 return AVERROR_IO; |
0 | 336 pkt->stream_index = 0; |
337 | |
338 ret = get_buffer(&s->pb, pkt->data, pkt->size); | |
339 if (ret < 0) | |
340 av_free_packet(pkt); | |
341 /* note: we need to modify the packet size here to handle the last | |
342 packet */ | |
343 pkt->size = ret; | |
344 return ret; | |
345 } | |
346 | |
347 static int wav_read_close(AVFormatContext *s) | |
348 { | |
349 return 0; | |
350 } | |
351 | |
309 | 352 static int wav_read_seek(AVFormatContext *s, |
558 | 353 int stream_index, int64_t timestamp, int flags) |
309 | 354 { |
355 AVStream *st; | |
356 | |
357 st = s->streams[0]; | |
358 switch(st->codec.codec_id) { | |
359 case CODEC_ID_MP2: | |
360 case CODEC_ID_MP3: | |
361 case CODEC_ID_AC3: | |
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
482
diff
changeset
|
362 case CODEC_ID_DTS: |
309 | 363 /* use generic seeking with dynamically generated indexes */ |
364 return -1; | |
365 default: | |
366 break; | |
367 } | |
558 | 368 return pcm_read_seek(s, stream_index, timestamp, flags); |
309 | 369 } |
370 | |
371 | |
0 | 372 static AVInputFormat wav_iformat = { |
373 "wav", | |
374 "wav format", | |
375 0, | |
376 wav_probe, | |
377 wav_read_header, | |
378 wav_read_packet, | |
379 wav_read_close, | |
309 | 380 wav_read_seek, |
0 | 381 }; |
382 | |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
383 #ifdef CONFIG_ENCODERS |
0 | 384 static AVOutputFormat wav_oformat = { |
385 "wav", | |
386 "wav format", | |
387 "audio/x-wav", | |
388 "wav", | |
389 sizeof(WAVContext), | |
390 CODEC_ID_PCM_S16LE, | |
391 CODEC_ID_NONE, | |
392 wav_write_header, | |
393 wav_write_packet, | |
394 wav_write_trailer, | |
395 }; | |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
396 #endif //CONFIG_ENCODERS |
0 | 397 |
384
9479dac25620
fix global name conflicts patch by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
379
diff
changeset
|
398 int ff_wav_init(void) |
0 | 399 { |
400 av_register_input_format(&wav_iformat); | |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
401 #ifdef CONFIG_ENCODERS |
0 | 402 av_register_output_format(&wav_oformat); |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
241
diff
changeset
|
403 #endif //CONFIG_ENCODERS |
0 | 404 return 0; |
405 } |