Mercurial > libavformat.hg
annotate wav.c @ 1139:ff241582890f libavformat
do not fail av_find_stream_info() if params for all streams could not be found
author | mru |
---|---|
date | Thu, 29 Jun 2006 19:02:15 +0000 |
parents | d65cd7c3573e |
children | e3a585883bbd |
rev | line source |
---|---|
885 | 1 /* |
0 | 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 | |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
893
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 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 }, |
874
29fa250510df
DTS is 0x2001 according to: http://www1.mplayerhq.hu/MPlayer/DOCS/codecs-status.html
gpoirier
parents:
858
diff
changeset
|
26 { CODEC_ID_DTS, 0x2001 }, |
0 | 27 { CODEC_ID_PCM_S16LE, 0x01 }, |
28 { CODEC_ID_PCM_U8, 0x01 }, /* must come after s16le in this list */ | |
846
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
29 { CODEC_ID_PCM_S24LE, 0x01 }, |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
30 { CODEC_ID_PCM_S32LE, 0x01 }, |
0 | 31 { CODEC_ID_PCM_ALAW, 0x06 }, |
32 { CODEC_ID_PCM_MULAW, 0x07 }, | |
33 { CODEC_ID_ADPCM_MS, 0x02 }, | |
34 { CODEC_ID_ADPCM_IMA_WAV, 0x11 }, | |
817
8e9c4e5d157b
Yamaha ADPCM in wav patch by (Vidar Madsen: vidarino, gmail com)
michael
parents:
713
diff
changeset
|
35 { CODEC_ID_ADPCM_YAMAHA, 0x20 }, |
362
07bf7ff87eb3
* Initial implementation of the G.726 ADPCM audio codec.
romansh
parents:
309
diff
changeset
|
36 { CODEC_ID_ADPCM_G726, 0x45 }, |
226 | 37 { CODEC_ID_ADPCM_IMA_DK4, 0x61 }, /* rogue format number */ |
38 { CODEC_ID_ADPCM_IMA_DK3, 0x62 }, /* rogue format number */ | |
0 | 39 { CODEC_ID_WMAV1, 0x160 }, |
40 { 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
|
41 { 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
|
42 { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id? |
517 | 43 { CODEC_ID_SONIC, 0x2048 }, |
44 { CODEC_ID_SONIC_LS, 0x2048 }, | |
561
d5925f47058d
Creative ADPCM decoder, format 0x200, courtesy of Konstantin Shishkov
melanson
parents:
558
diff
changeset
|
45 { CODEC_ID_ADPCM_CT, 0x200 }, |
685 | 46 { CODEC_ID_ADPCM_SWF, ('S'<<8)+'F' }, |
893
1a50f1735214
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
887
diff
changeset
|
47 { CODEC_ID_TRUESPEECH, 0x22 }, |
1044
3aeb079a7e74
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
896
diff
changeset
|
48 |
3aeb079a7e74
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
896
diff
changeset
|
49 // for NuppelVideo (nuv.c) |
3aeb079a7e74
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
896
diff
changeset
|
50 { CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') }, |
3aeb079a7e74
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
896
diff
changeset
|
51 { CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') }, |
0 | 52 { 0, 0 }, |
53 }; | |
54 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
55 #ifdef CONFIG_MUXERS |
0 | 56 /* WAVEFORMATEX header */ |
57 /* returns the size or -1 on error */ | |
58 int put_wav_header(ByteIOContext *pb, AVCodecContext *enc) | |
59 { | |
196 | 60 int bps, blkalign, bytespersec; |
0 | 61 int hdrsize = 18; |
62 | |
1122
f8ee5a4b576e
use standard codec tag if the specified tag is out of range and would be
mru
parents:
1044
diff
changeset
|
63 if(!enc->codec_tag || enc->codec_tag > 0xffff) |
196 | 64 enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id); |
65 if(!enc->codec_tag) | |
0 | 66 return -1; |
196 | 67 |
68 put_le16(pb, enc->codec_tag); | |
0 | 69 put_le16(pb, enc->channels); |
70 put_le32(pb, enc->sample_rate); | |
71 if (enc->codec_id == CODEC_ID_PCM_U8 || | |
72 enc->codec_id == CODEC_ID_PCM_ALAW || | |
73 enc->codec_id == CODEC_ID_PCM_MULAW) { | |
74 bps = 8; | |
232 | 75 } else if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) { |
0 | 76 bps = 0; |
817
8e9c4e5d157b
Yamaha ADPCM in wav patch by (Vidar Madsen: vidarino, gmail com)
michael
parents:
713
diff
changeset
|
77 } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV || enc->codec_id == CODEC_ID_ADPCM_MS || enc->codec_id == CODEC_ID_ADPCM_G726 || enc->codec_id == CODEC_ID_ADPCM_YAMAHA) { // |
0 | 78 bps = 4; |
846
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
79 } else if (enc->codec_id == CODEC_ID_PCM_S24LE) { |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
80 bps = 24; |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
81 } else if (enc->codec_id == CODEC_ID_PCM_S32LE) { |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
82 bps = 32; |
0 | 83 } else { |
84 bps = 16; | |
85 } | |
885 | 86 |
232 | 87 if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) { |
577 | 88 blkalign = enc->frame_size; //this is wrong, but seems many demuxers dont work if this is set correctly |
0 | 89 //blkalign = 144 * enc->bit_rate/enc->sample_rate; |
713
3c8a21cd6296
28_fix_parameters_in_G726.patch by (Calcium | calcium nurs or jp)
michael
parents:
685
diff
changeset
|
90 } else if (enc->codec_id == CODEC_ID_ADPCM_G726) { // |
3c8a21cd6296
28_fix_parameters_in_G726.patch by (Calcium | calcium nurs or jp)
michael
parents:
685
diff
changeset
|
91 blkalign = 1; |
0 | 92 } else if (enc->block_align != 0) { /* specified by the codec */ |
93 blkalign = enc->block_align; | |
94 } else | |
95 blkalign = enc->channels*bps >> 3; | |
96 if (enc->codec_id == CODEC_ID_PCM_U8 || | |
846
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
97 enc->codec_id == CODEC_ID_PCM_S24LE || |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
98 enc->codec_id == CODEC_ID_PCM_S32LE || |
0 | 99 enc->codec_id == CODEC_ID_PCM_S16LE) { |
100 bytespersec = enc->sample_rate * blkalign; | |
101 } else { | |
102 bytespersec = enc->bit_rate / 8; | |
103 } | |
104 put_le32(pb, bytespersec); /* bytes per second */ | |
105 put_le16(pb, blkalign); /* block align */ | |
106 put_le16(pb, bps); /* bits per sample */ | |
232 | 107 if (enc->codec_id == CODEC_ID_MP3) { |
0 | 108 put_le16(pb, 12); /* wav_extra_size */ |
109 hdrsize += 12; | |
110 put_le16(pb, 1); /* wID */ | |
111 put_le32(pb, 2); /* fdwFlags */ | |
112 put_le16(pb, 1152); /* nBlockSize */ | |
113 put_le16(pb, 1); /* nFramesPerBlock */ | |
114 put_le16(pb, 1393); /* nCodecDelay */ | |
115 } else if (enc->codec_id == CODEC_ID_MP2) { | |
116 put_le16(pb, 22); /* wav_extra_size */ | |
117 hdrsize += 22; | |
118 put_le16(pb, 2); /* fwHeadLayer */ | |
119 put_le32(pb, enc->bit_rate); /* dwHeadBitrate */ | |
120 put_le16(pb, enc->channels == 2 ? 1 : 8); /* fwHeadMode */ | |
121 put_le16(pb, 0); /* fwHeadModeExt */ | |
122 put_le16(pb, 1); /* wHeadEmphasis */ | |
123 put_le16(pb, 16); /* fwHeadFlags */ | |
124 put_le32(pb, 0); /* dwPTSLow */ | |
125 put_le32(pb, 0); /* dwPTSHigh */ | |
126 } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) { | |
127 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
|
128 hdrsize += 2; |
0 | 129 put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */ |
529 | 130 } else if(enc->extradata_size){ |
412
459df3ed379e
store extradata, vorbis in avi works now, dont expect av sync though
michael
parents:
411
diff
changeset
|
131 put_le16(pb, enc->extradata_size); |
459df3ed379e
store extradata, vorbis in avi works now, dont expect av sync though
michael
parents:
411
diff
changeset
|
132 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
|
133 hdrsize += enc->extradata_size; |
413 | 134 if(hdrsize&1){ |
135 hdrsize++; | |
136 put_byte(pb, 0); | |
137 } | |
529 | 138 } else { |
139 hdrsize -= 2; | |
412
459df3ed379e
store extradata, vorbis in avi works now, dont expect av sync though
michael
parents:
411
diff
changeset
|
140 } |
0 | 141 |
142 return hdrsize; | |
143 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
144 #endif //CONFIG_MUXERS |
0 | 145 |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
146 /* 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
|
147 * 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
|
148 * 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
|
149 * 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
|
150 * 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
|
151 * an openended structure. |
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
152 */ |
885 | 153 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size) |
0 | 154 { |
155 int id; | |
156 | |
157 id = get_le16(pb); | |
158 codec->codec_type = CODEC_TYPE_AUDIO; | |
159 codec->codec_tag = id; | |
160 codec->channels = get_le16(pb); | |
161 codec->sample_rate = get_le32(pb); | |
162 codec->bit_rate = get_le32(pb) * 8; | |
163 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
|
164 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
|
165 codec->bits_per_sample = 8; |
87 | 166 }else |
167 codec->bits_per_sample = get_le16(pb); | |
168 codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample); | |
885 | 169 |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
74
diff
changeset
|
170 if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */ |
887 | 171 codec->extradata_size = get_le16(pb); |
172 if (codec->extradata_size > 0) { | |
173 if (codec->extradata_size > size - 18) | |
174 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
|
175 codec->extradata = av_mallocz(codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
0 | 176 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
|
177 } else |
887 | 178 codec->extradata_size = 0; |
885 | 179 |
887 | 180 /* It is possible for the chunk to contain garbage at the end */ |
181 if (size - codec->extradata_size - 18 > 0) | |
182 url_fskip(pb, size - codec->extradata_size - 18); | |
0 | 183 } |
184 } | |
185 | |
186 | |
187 int wav_codec_get_id(unsigned int tag, int bps) | |
188 { | |
189 int id; | |
190 id = codec_get_id(codec_wav_tags, tag); | |
191 if (id <= 0) | |
192 return id; | |
193 /* handle specific u8 codec */ | |
194 if (id == CODEC_ID_PCM_S16LE && bps == 8) | |
195 id = CODEC_ID_PCM_U8; | |
846
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
196 if (id == CODEC_ID_PCM_S16LE && bps == 24) |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
197 id = CODEC_ID_PCM_S24LE; |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
198 if (id == CODEC_ID_PCM_S16LE && bps == 32) |
fd1c2109505e
Support de-/encoding of 24 and 32 bit PCM (from and to internal 16 bit).
reimar
parents:
820
diff
changeset
|
199 id = CODEC_ID_PCM_S32LE; |
0 | 200 return id; |
201 } | |
202 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
203 #ifdef CONFIG_MUXERS |
0 | 204 typedef struct { |
205 offset_t data; | |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
206 offset_t data_end; |
0 | 207 } WAVContext; |
208 | |
209 static int wav_write_header(AVFormatContext *s) | |
210 { | |
211 WAVContext *wav = s->priv_data; | |
212 ByteIOContext *pb = &s->pb; | |
213 offset_t fmt; | |
214 | |
215 put_tag(pb, "RIFF"); | |
216 put_le32(pb, 0); /* file length */ | |
217 put_tag(pb, "WAVE"); | |
218 | |
219 /* format header */ | |
220 fmt = start_tag(pb, "fmt "); | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
221 if (put_wav_header(pb, s->streams[0]->codec) < 0) { |
0 | 222 av_free(wav); |
223 return -1; | |
224 } | |
225 end_tag(pb, fmt); | |
226 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
227 av_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate); |
645
9fc2d2cc4608
wav timestamp truncation fix by (Wolfram Gloger <wmglo dent.med.uni-muenchen de>)
michael
parents:
587
diff
changeset
|
228 |
0 | 229 /* data header */ |
230 wav->data = start_tag(pb, "data"); | |
885 | 231 |
0 | 232 put_flush_packet(pb); |
233 | |
234 return 0; | |
235 } | |
236 | |
468 | 237 static int wav_write_packet(AVFormatContext *s, AVPacket *pkt) |
0 | 238 { |
239 ByteIOContext *pb = &s->pb; | |
468 | 240 put_buffer(pb, pkt->data, pkt->size); |
0 | 241 return 0; |
242 } | |
243 | |
244 static int wav_write_trailer(AVFormatContext *s) | |
245 { | |
246 ByteIOContext *pb = &s->pb; | |
247 WAVContext *wav = s->priv_data; | |
248 offset_t file_size; | |
249 | |
250 if (!url_is_streamed(&s->pb)) { | |
251 end_tag(pb, wav->data); | |
252 | |
253 /* update file size */ | |
254 file_size = url_ftell(pb); | |
255 url_fseek(pb, 4, SEEK_SET); | |
65 | 256 put_le32(pb, (uint32_t)(file_size - 8)); |
0 | 257 url_fseek(pb, file_size, SEEK_SET); |
258 | |
259 put_flush_packet(pb); | |
260 } | |
261 return 0; | |
262 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
263 #endif //CONFIG_MUXERS |
0 | 264 |
265 /* return the size of the found tag */ | |
266 /* XXX: > 2GB ? */ | |
65 | 267 static int find_tag(ByteIOContext *pb, uint32_t tag1) |
0 | 268 { |
269 unsigned int tag; | |
270 int size; | |
271 | |
272 for(;;) { | |
273 if (url_feof(pb)) | |
274 return -1; | |
275 tag = get_le32(pb); | |
276 size = get_le32(pb); | |
277 if (tag == tag1) | |
278 break; | |
279 url_fseek(pb, size, SEEK_CUR); | |
280 } | |
281 if (size < 0) | |
282 size = 0x7fffffff; | |
283 return size; | |
284 } | |
285 | |
286 static int wav_probe(AVProbeData *p) | |
287 { | |
288 /* check file header */ | |
289 if (p->buf_size <= 32) | |
290 return 0; | |
291 if (p->buf[0] == 'R' && p->buf[1] == 'I' && | |
292 p->buf[2] == 'F' && p->buf[3] == 'F' && | |
293 p->buf[8] == 'W' && p->buf[9] == 'A' && | |
294 p->buf[10] == 'V' && p->buf[11] == 'E') | |
295 return AVPROBE_SCORE_MAX; | |
296 else | |
297 return 0; | |
298 } | |
299 | |
300 /* wav input */ | |
301 static int wav_read_header(AVFormatContext *s, | |
302 AVFormatParameters *ap) | |
303 { | |
304 int size; | |
305 unsigned int tag; | |
306 ByteIOContext *pb = &s->pb; | |
307 AVStream *st; | |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
308 WAVContext *wav = s->priv_data; |
0 | 309 |
310 /* check RIFF header */ | |
311 tag = get_le32(pb); | |
312 | |
313 if (tag != MKTAG('R', 'I', 'F', 'F')) | |
314 return -1; | |
315 get_le32(pb); /* file size */ | |
316 tag = get_le32(pb); | |
317 if (tag != MKTAG('W', 'A', 'V', 'E')) | |
318 return -1; | |
885 | 319 |
0 | 320 /* parse fmt header */ |
321 size = find_tag(pb, MKTAG('f', 'm', 't', ' ')); | |
322 if (size < 0) | |
323 return -1; | |
324 st = av_new_stream(s, 0); | |
325 if (!st) | |
326 return AVERROR_NOMEM; | |
327 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
328 get_wav_header(pb, st->codec, size); |
309 | 329 st->need_parsing = 1; |
567 | 330 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
331 av_set_pts_info(st, 64, 1, st->codec->sample_rate); |
567 | 332 |
0 | 333 size = find_tag(pb, MKTAG('d', 'a', 't', 'a')); |
334 if (size < 0) | |
335 return -1; | |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
336 wav->data_end= url_ftell(pb) + size; |
0 | 337 return 0; |
338 } | |
339 | |
340 #define MAX_SIZE 4096 | |
341 | |
342 static int wav_read_packet(AVFormatContext *s, | |
343 AVPacket *pkt) | |
344 { | |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
345 int ret, size, left; |
309 | 346 AVStream *st; |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
347 WAVContext *wav = s->priv_data; |
0 | 348 |
349 if (url_feof(&s->pb)) | |
482 | 350 return AVERROR_IO; |
309 | 351 st = s->streams[0]; |
352 | |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
353 left= wav->data_end - url_ftell(&s->pb); |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
354 if(left <= 0){ |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
355 left = find_tag(&(s->pb), MKTAG('d', 'a', 't', 'a')); |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
356 if (left < 0) { |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
357 return AVERROR_IO; |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
358 } |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
359 wav->data_end= url_ftell(&s->pb) + left; |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
360 } |
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
361 |
309 | 362 size = MAX_SIZE; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
363 if (st->codec->block_align > 1) { |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
364 if (size < st->codec->block_align) |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
365 size = st->codec->block_align; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
366 size = (size / st->codec->block_align) * st->codec->block_align; |
309 | 367 } |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
368 size= FFMIN(size, left); |
309 | 369 if (av_new_packet(pkt, size)) |
482 | 370 return AVERROR_IO; |
0 | 371 pkt->stream_index = 0; |
372 | |
373 ret = get_buffer(&s->pb, pkt->data, pkt->size); | |
374 if (ret < 0) | |
375 av_free_packet(pkt); | |
376 /* note: we need to modify the packet size here to handle the last | |
377 packet */ | |
378 pkt->size = ret; | |
379 return ret; | |
380 } | |
381 | |
382 static int wav_read_close(AVFormatContext *s) | |
383 { | |
384 return 0; | |
385 } | |
386 | |
885 | 387 static int wav_read_seek(AVFormatContext *s, |
558 | 388 int stream_index, int64_t timestamp, int flags) |
309 | 389 { |
390 AVStream *st; | |
391 | |
392 st = s->streams[0]; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
817
diff
changeset
|
393 switch(st->codec->codec_id) { |
309 | 394 case CODEC_ID_MP2: |
395 case CODEC_ID_MP3: | |
396 case CODEC_ID_AC3: | |
496
112057e05179
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
482
diff
changeset
|
397 case CODEC_ID_DTS: |
309 | 398 /* use generic seeking with dynamically generated indexes */ |
399 return -1; | |
400 default: | |
401 break; | |
402 } | |
558 | 403 return pcm_read_seek(s, stream_index, timestamp, flags); |
309 | 404 } |
405 | |
406 | |
0 | 407 static AVInputFormat wav_iformat = { |
408 "wav", | |
409 "wav format", | |
1136
d65cd7c3573e
dont read over the end of a data chunk and at the end search for the next
michael
parents:
1122
diff
changeset
|
410 sizeof(WAVContext), |
0 | 411 wav_probe, |
412 wav_read_header, | |
413 wav_read_packet, | |
414 wav_read_close, | |
309 | 415 wav_read_seek, |
0 | 416 }; |
417 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
418 #ifdef CONFIG_MUXERS |
0 | 419 static AVOutputFormat wav_oformat = { |
420 "wav", | |
421 "wav format", | |
422 "audio/x-wav", | |
423 "wav", | |
424 sizeof(WAVContext), | |
425 CODEC_ID_PCM_S16LE, | |
426 CODEC_ID_NONE, | |
427 wav_write_header, | |
428 wav_write_packet, | |
429 wav_write_trailer, | |
430 }; | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
431 #endif //CONFIG_MUXERS |
0 | 432 |
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
|
433 int ff_wav_init(void) |
0 | 434 { |
435 av_register_input_format(&wav_iformat); | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
436 #ifdef CONFIG_MUXERS |
0 | 437 av_register_output_format(&wav_oformat); |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
846
diff
changeset
|
438 #endif //CONFIG_MUXERS |
0 | 439 return 0; |
440 } |