comparison wav.c @ 1172:6a5e58d2114b libavformat

move common stuff from avienc.c and wav.c to new file riff.c
author mru
date Wed, 12 Jul 2006 00:09:34 +0000
parents d18cc9a1fd02
children 0899bfe4105c
comparison
equal deleted inserted replaced
1171:2a0c729ac640 1172:6a5e58d2114b
16 * License along with this library; if not, write to the Free Software 16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 18 */
19 #include "avformat.h" 19 #include "avformat.h"
20 #include "allformats.h" 20 #include "allformats.h"
21 #include "avi.h" 21 #include "riff.h"
22
23 const CodecTag codec_wav_tags[] = {
24 { CODEC_ID_MP2, 0x50 },
25 { CODEC_ID_MP3, 0x55 },
26 { CODEC_ID_AC3, 0x2000 },
27 { CODEC_ID_DTS, 0x2001 },
28 { CODEC_ID_PCM_S16LE, 0x01 },
29 { CODEC_ID_PCM_U8, 0x01 }, /* must come after s16le in this list */
30 { CODEC_ID_PCM_S24LE, 0x01 },
31 { CODEC_ID_PCM_S32LE, 0x01 },
32 { CODEC_ID_PCM_ALAW, 0x06 },
33 { CODEC_ID_PCM_MULAW, 0x07 },
34 { CODEC_ID_ADPCM_MS, 0x02 },
35 { CODEC_ID_ADPCM_IMA_WAV, 0x11 },
36 { CODEC_ID_ADPCM_YAMAHA, 0x20 },
37 { CODEC_ID_ADPCM_G726, 0x45 },
38 { CODEC_ID_ADPCM_IMA_DK4, 0x61 }, /* rogue format number */
39 { CODEC_ID_ADPCM_IMA_DK3, 0x62 }, /* rogue format number */
40 { CODEC_ID_WMAV1, 0x160 },
41 { CODEC_ID_WMAV2, 0x161 },
42 { CODEC_ID_AAC, 0x706d },
43 { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id?
44 { CODEC_ID_SONIC, 0x2048 },
45 { CODEC_ID_SONIC_LS, 0x2048 },
46 { CODEC_ID_ADPCM_CT, 0x200 },
47 { CODEC_ID_ADPCM_SWF, ('S'<<8)+'F' },
48 { CODEC_ID_TRUESPEECH, 0x22 },
49
50 // for NuppelVideo (nuv.c)
51 { CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') },
52 { CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') },
53 { 0, 0 },
54 };
55
56 #ifdef CONFIG_MUXERS
57 /* WAVEFORMATEX header */
58 /* returns the size or -1 on error */
59 int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
60 {
61 int bps, blkalign, bytespersec;
62 int hdrsize = 18;
63
64 if(!enc->codec_tag || enc->codec_tag > 0xffff)
65 enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id);
66 if(!enc->codec_tag)
67 return -1;
68
69 put_le16(pb, enc->codec_tag);
70 put_le16(pb, enc->channels);
71 put_le32(pb, enc->sample_rate);
72 if (enc->codec_id == CODEC_ID_PCM_U8 ||
73 enc->codec_id == CODEC_ID_PCM_ALAW ||
74 enc->codec_id == CODEC_ID_PCM_MULAW) {
75 bps = 8;
76 } else if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
77 bps = 0;
78 } 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) { //
79 bps = 4;
80 } else if (enc->codec_id == CODEC_ID_PCM_S24LE) {
81 bps = 24;
82 } else if (enc->codec_id == CODEC_ID_PCM_S32LE) {
83 bps = 32;
84 } else {
85 bps = 16;
86 }
87
88 if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
89 blkalign = enc->frame_size; //this is wrong, but seems many demuxers dont work if this is set correctly
90 //blkalign = 144 * enc->bit_rate/enc->sample_rate;
91 } else if (enc->codec_id == CODEC_ID_ADPCM_G726) { //
92 blkalign = 1;
93 } else if (enc->block_align != 0) { /* specified by the codec */
94 blkalign = enc->block_align;
95 } else
96 blkalign = enc->channels*bps >> 3;
97 if (enc->codec_id == CODEC_ID_PCM_U8 ||
98 enc->codec_id == CODEC_ID_PCM_S24LE ||
99 enc->codec_id == CODEC_ID_PCM_S32LE ||
100 enc->codec_id == CODEC_ID_PCM_S16LE) {
101 bytespersec = enc->sample_rate * blkalign;
102 } else {
103 bytespersec = enc->bit_rate / 8;
104 }
105 put_le32(pb, bytespersec); /* bytes per second */
106 put_le16(pb, blkalign); /* block align */
107 put_le16(pb, bps); /* bits per sample */
108 if (enc->codec_id == CODEC_ID_MP3) {
109 put_le16(pb, 12); /* wav_extra_size */
110 hdrsize += 12;
111 put_le16(pb, 1); /* wID */
112 put_le32(pb, 2); /* fdwFlags */
113 put_le16(pb, 1152); /* nBlockSize */
114 put_le16(pb, 1); /* nFramesPerBlock */
115 put_le16(pb, 1393); /* nCodecDelay */
116 } else if (enc->codec_id == CODEC_ID_MP2) {
117 put_le16(pb, 22); /* wav_extra_size */
118 hdrsize += 22;
119 put_le16(pb, 2); /* fwHeadLayer */
120 put_le32(pb, enc->bit_rate); /* dwHeadBitrate */
121 put_le16(pb, enc->channels == 2 ? 1 : 8); /* fwHeadMode */
122 put_le16(pb, 0); /* fwHeadModeExt */
123 put_le16(pb, 1); /* wHeadEmphasis */
124 put_le16(pb, 16); /* fwHeadFlags */
125 put_le32(pb, 0); /* dwPTSLow */
126 put_le32(pb, 0); /* dwPTSHigh */
127 } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
128 put_le16(pb, 2); /* wav_extra_size */
129 hdrsize += 2;
130 put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */
131 } else if(enc->extradata_size){
132 put_le16(pb, enc->extradata_size);
133 put_buffer(pb, enc->extradata, enc->extradata_size);
134 hdrsize += enc->extradata_size;
135 if(hdrsize&1){
136 hdrsize++;
137 put_byte(pb, 0);
138 }
139 } else {
140 hdrsize -= 2;
141 }
142
143 return hdrsize;
144 }
145 #endif //CONFIG_MUXERS
146
147 /* We could be given one of the three possible structures here:
148 * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
149 * is an expansion of the previous one with the fields added
150 * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
151 * WAVEFORMATEX adds 'WORD cbSize' and basically makes itself
152 * an openended structure.
153 */
154 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size)
155 {
156 int id;
157
158 id = get_le16(pb);
159 codec->codec_type = CODEC_TYPE_AUDIO;
160 codec->codec_tag = id;
161 codec->channels = get_le16(pb);
162 codec->sample_rate = get_le32(pb);
163 codec->bit_rate = get_le32(pb) * 8;
164 codec->block_align = get_le16(pb);
165 if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */
166 codec->bits_per_sample = 8;
167 }else
168 codec->bits_per_sample = get_le16(pb);
169 codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample);
170
171 if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */
172 codec->extradata_size = get_le16(pb);
173 if (codec->extradata_size > 0) {
174 if (codec->extradata_size > size - 18)
175 codec->extradata_size = size - 18;
176 codec->extradata = av_mallocz(codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
177 get_buffer(pb, codec->extradata, codec->extradata_size);
178 } else
179 codec->extradata_size = 0;
180
181 /* It is possible for the chunk to contain garbage at the end */
182 if (size - codec->extradata_size - 18 > 0)
183 url_fskip(pb, size - codec->extradata_size - 18);
184 }
185 }
186
187
188 int wav_codec_get_id(unsigned int tag, int bps)
189 {
190 int id;
191 id = codec_get_id(codec_wav_tags, tag);
192 if (id <= 0)
193 return id;
194 /* handle specific u8 codec */
195 if (id == CODEC_ID_PCM_S16LE && bps == 8)
196 id = CODEC_ID_PCM_U8;
197 if (id == CODEC_ID_PCM_S16LE && bps == 24)
198 id = CODEC_ID_PCM_S24LE;
199 if (id == CODEC_ID_PCM_S16LE && bps == 32)
200 id = CODEC_ID_PCM_S32LE;
201 return id;
202 }
203 22
204 typedef struct { 23 typedef struct {
205 offset_t data; 24 offset_t data;
206 offset_t data_end; 25 offset_t data_end;
207 } WAVContext; 26 } WAVContext;