]> git.sesse.net Git - ffmpeg/blob - libavformat/riff.c
fix ending null entry in table
[ffmpeg] / libavformat / riff.c
1 /*
2  * RIFF codec tags
3  * Copyright (c) 2000 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 #include "avformat.h"
21 #include "avcodec.h"
22 #include "riff.h"
23
24 /* Note: when encoding, the first matching tag is used, so order is
25    important if multiple tags possible for a given codec. */
26 const CodecTag codec_bmp_tags[] = {
27     { CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
28     { CODEC_ID_H264, MKTAG('h', '2', '6', '4') },
29     { CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
30     { CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
31     { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') },
32     { CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') },
33
34     { CODEC_ID_H263, MKTAG('H', '2', '6', '3') },
35     { CODEC_ID_H263P, MKTAG('H', '2', '6', '3') },
36     { CODEC_ID_H263I, MKTAG('I', '2', '6', '3') }, /* intel h263 */
37     { CODEC_ID_H261, MKTAG('H', '2', '6', '1') },
38
39     /* added based on MPlayer */
40     { CODEC_ID_H263P, MKTAG('U', '2', '6', '3') },
41     { CODEC_ID_H263P, MKTAG('v', 'i', 'v', '1') },
42
43     { CODEC_ID_MPEG4, MKTAG('F', 'M', 'P', '4')},
44     { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X'), .invalid_asf = 1 },
45     { CODEC_ID_MPEG4, MKTAG('D', 'X', '5', '0'), .invalid_asf = 1 },
46     { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D'), .invalid_asf = 1 },
47     { CODEC_ID_MPEG4, MKTAG('M', 'P', '4', 'S') },
48     { CODEC_ID_MPEG4, MKTAG('M', '4', 'S', '2') },
49     { CODEC_ID_MPEG4, MKTAG(0x04, 0, 0, 0) }, /* some broken avi use this */
50
51     /* added based on MPlayer */
52     { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', '1') },
53     { CODEC_ID_MPEG4, MKTAG('B', 'L', 'Z', '0') },
54     { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') },
55     { CODEC_ID_MPEG4, MKTAG('U', 'M', 'P', '4') },
56     { CODEC_ID_MPEG4, MKTAG('W', 'V', '1', 'F') },
57     { CODEC_ID_MPEG4, MKTAG('S', 'E', 'D', 'G') },
58
59     { CODEC_ID_MPEG4, MKTAG('R', 'M', 'P', '4') },
60
61     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '3'), .invalid_asf = 1 }, /* default signature when using MSMPEG4 */
62     { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', '4', '3') },
63
64     /* added based on MPlayer */
65     { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', 'G', '3') },
66     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '5') },
67     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '6') },
68     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '4') },
69     { CODEC_ID_MSMPEG4V3, MKTAG('A', 'P', '4', '1') },
70     { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '1') },
71     { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '0') },
72
73     { CODEC_ID_MSMPEG4V2, MKTAG('M', 'P', '4', '2') },
74
75     /* added based on MPlayer */
76     { CODEC_ID_MSMPEG4V2, MKTAG('D', 'I', 'V', '2') },
77
78     { CODEC_ID_MSMPEG4V1, MKTAG('M', 'P', 'G', '4') },
79
80     { CODEC_ID_WMV1, MKTAG('W', 'M', 'V', '1') },
81
82     /* added based on MPlayer */
83     { CODEC_ID_WMV2, MKTAG('W', 'M', 'V', '2') },
84     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'd') },
85     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', 'd') },
86     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'l') },
87     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '2', '5') },
88     { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '1') },
89     { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '2') },
90     { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'p', 'g', '2') },
91     { CODEC_ID_MPEG2VIDEO, MKTAG('M', 'P', 'E', 'G') },
92     { CODEC_ID_MPEG1VIDEO, MKTAG('P', 'I', 'M', '1') },
93     { CODEC_ID_MPEG1VIDEO, MKTAG('V', 'C', 'R', '2') },
94     { CODEC_ID_MPEG1VIDEO, 0x10000001 },
95     { CODEC_ID_MPEG2VIDEO, 0x10000002 },
96     { CODEC_ID_MPEG2VIDEO, MKTAG('D', 'V', 'R', ' ') },
97     { CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') },
98     { CODEC_ID_MJPEG, MKTAG('L', 'J', 'P', 'G') },
99     { CODEC_ID_LJPEG, MKTAG('L', 'J', 'P', 'G') },
100     { CODEC_ID_MJPEG, MKTAG('J', 'P', 'G', 'L') }, /* Pegasus lossless JPEG */
101     { CODEC_ID_MJPEG, MKTAG('M', 'J', 'L', 'S') }, /* JPEG-LS custom FOURCC for avi - decoder */
102     { CODEC_ID_JPEGLS, MKTAG('M', 'J', 'L', 'S') }, /* JPEG-LS custom FOURCC for avi - encoder */
103     { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') },
104     { CODEC_ID_FFVHUFF, MKTAG('F', 'F', 'V', 'H') },
105     { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') },
106     { CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') },
107     { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'Y', '2') },
108     { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') },
109     { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') },
110     { CODEC_ID_RAWVIDEO, MKTAG('I', 'Y', 'U', 'V') },
111     { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') },
112     { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') },
113     { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
114     { CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
115     { CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') },
116     { CODEC_ID_ASV2, MKTAG('A', 'S', 'V', '2') },
117     { CODEC_ID_VCR1, MKTAG('V', 'C', 'R', '1') },
118     { CODEC_ID_FFV1, MKTAG('F', 'F', 'V', '1') },
119     { CODEC_ID_XAN_WC4, MKTAG('X', 'x', 'a', 'n') },
120     { CODEC_ID_MSRLE, MKTAG('m', 'r', 'l', 'e') },
121     { CODEC_ID_MSRLE, MKTAG(0x1, 0x0, 0x0, 0x0) },
122     { CODEC_ID_MSVIDEO1, MKTAG('M', 'S', 'V', 'C') },
123     { CODEC_ID_MSVIDEO1, MKTAG('m', 's', 'v', 'c') },
124     { CODEC_ID_MSVIDEO1, MKTAG('C', 'R', 'A', 'M') },
125     { CODEC_ID_MSVIDEO1, MKTAG('c', 'r', 'a', 'm') },
126     { CODEC_ID_MSVIDEO1, MKTAG('W', 'H', 'A', 'M') },
127     { CODEC_ID_MSVIDEO1, MKTAG('w', 'h', 'a', 'm') },
128     { CODEC_ID_CINEPAK, MKTAG('c', 'v', 'i', 'd') },
129     { CODEC_ID_TRUEMOTION1, MKTAG('D', 'U', 'C', 'K') },
130     { CODEC_ID_MSZH, MKTAG('M', 'S', 'Z', 'H') },
131     { CODEC_ID_ZLIB, MKTAG('Z', 'L', 'I', 'B') },
132     { CODEC_ID_SNOW, MKTAG('S', 'N', 'O', 'W') },
133     { CODEC_ID_4XM, MKTAG('4', 'X', 'M', 'V') },
134     { CODEC_ID_FLV1, MKTAG('F', 'L', 'V', '1') },
135     { CODEC_ID_FLASHSV, MKTAG('F', 'S', 'V', '1') },
136     { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') },
137     { CODEC_ID_TSCC, MKTAG('t', 's', 'c', 'c') },
138     { CODEC_ID_ULTI, MKTAG('U', 'L', 'T', 'I') },
139     { CODEC_ID_VIXL, MKTAG('V', 'I', 'X', 'L') },
140     { CODEC_ID_QPEG, MKTAG('Q', 'P', 'E', 'G') },
141     { CODEC_ID_QPEG, MKTAG('Q', '1', '.', '0') },
142     { CODEC_ID_QPEG, MKTAG('Q', '1', '.', '1') },
143     { CODEC_ID_WMV3, MKTAG('W', 'M', 'V', '3') },
144     { CODEC_ID_LOCO, MKTAG('L', 'O', 'C', 'O') },
145     { CODEC_ID_WNV1, MKTAG('W', 'N', 'V', '1') },
146     { CODEC_ID_AASC, MKTAG('A', 'A', 'S', 'C') },
147     { CODEC_ID_INDEO2, MKTAG('R', 'T', '2', '1') },
148     { CODEC_ID_FRAPS, MKTAG('F', 'P', 'S', '1') },
149     { CODEC_ID_THEORA, MKTAG('t', 'h', 'e', 'o') },
150     { CODEC_ID_TRUEMOTION2, MKTAG('T', 'M', '2', '0') },
151     { CODEC_ID_CSCD, MKTAG('C', 'S', 'C', 'D') },
152     { CODEC_ID_ZMBV, MKTAG('Z', 'M', 'B', 'V') },
153     { CODEC_ID_KMVC, MKTAG('K', 'M', 'V', 'C') },
154     { CODEC_ID_CAVS, MKTAG('C', 'A', 'V', 'S') },
155     { CODEC_ID_RAWVIDEO, 0 },
156     { CODEC_ID_NONE, 0 },
157 };
158
159 const CodecTag codec_wav_tags[] = {
160     { CODEC_ID_MP2, 0x50 },
161     { CODEC_ID_MP3, 0x55 },
162     { CODEC_ID_AC3, 0x2000 },
163     { CODEC_ID_DTS, 0x2001 },
164     { CODEC_ID_PCM_S16LE, 0x01 },
165     { CODEC_ID_PCM_U8, 0x01 }, /* must come after s16le in this list */
166     { CODEC_ID_PCM_S24LE, 0x01 },
167     { CODEC_ID_PCM_S32LE, 0x01 },
168     { CODEC_ID_PCM_ALAW, 0x06 },
169     { CODEC_ID_PCM_MULAW, 0x07 },
170     { CODEC_ID_ADPCM_MS, 0x02 },
171     { CODEC_ID_ADPCM_IMA_WAV, 0x11 },
172     { CODEC_ID_ADPCM_YAMAHA, 0x20 },
173     { CODEC_ID_ADPCM_G726, 0x45 },
174     { CODEC_ID_ADPCM_IMA_DK4, 0x61 },  /* rogue format number */
175     { CODEC_ID_ADPCM_IMA_DK3, 0x62 },  /* rogue format number */
176     { CODEC_ID_WMAV1, 0x160 },
177     { CODEC_ID_WMAV2, 0x161 },
178     { CODEC_ID_AAC, 0x706d },
179     { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id?
180     { CODEC_ID_SONIC, 0x2048 },
181     { CODEC_ID_SONIC_LS, 0x2048 },
182     { CODEC_ID_ADPCM_CT, 0x200 },
183     { CODEC_ID_ADPCM_SWF, ('S'<<8)+'F' },
184     { CODEC_ID_TRUESPEECH, 0x22 },
185
186     // for NuppelVideo (nuv.c)
187     { CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') },
188     { CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') },
189     { 0, 0 },
190 };
191
192 unsigned int codec_get_tag(const CodecTag *tags, int id)
193 {
194     while (tags->id != CODEC_ID_NONE) {
195         if (tags->id == id)
196             return tags->tag;
197         tags++;
198     }
199     return 0;
200 }
201
202 unsigned int codec_get_asf_tag(const CodecTag *tags, unsigned int id)
203 {
204     while (tags->id != CODEC_ID_NONE) {
205         if (!tags->invalid_asf && tags->id == id)
206             return tags->tag;
207         tags++;
208     }
209     return 0;
210 }
211
212 enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag)
213 {
214     while (tags->id != CODEC_ID_NONE) {
215         if(   toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF)
216            && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF)
217            && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF)
218            && toupper((tag >>24)&0xFF) == toupper((tags->tag >>24)&0xFF))
219             return tags->id;
220         tags++;
221     }
222     return CODEC_ID_NONE;
223 }
224
225 unsigned int codec_get_bmp_tag(int id)
226 {
227     return codec_get_tag(codec_bmp_tags, id);
228 }
229
230 unsigned int codec_get_wav_tag(int id)
231 {
232     return codec_get_tag(codec_wav_tags, id);
233 }
234
235 enum CodecID codec_get_bmp_id(unsigned int tag)
236 {
237     return codec_get_id(codec_bmp_tags, tag);
238 }
239
240 enum CodecID codec_get_wav_id(unsigned int tag)
241 {
242     return codec_get_id(codec_wav_tags, tag);
243 }
244
245 #ifdef CONFIG_MUXERS
246 offset_t start_tag(ByteIOContext *pb, const char *tag)
247 {
248     put_tag(pb, tag);
249     put_le32(pb, 0);
250     return url_ftell(pb);
251 }
252
253 void end_tag(ByteIOContext *pb, offset_t start)
254 {
255     offset_t pos;
256
257     pos = url_ftell(pb);
258     url_fseek(pb, start - 4, SEEK_SET);
259     put_le32(pb, (uint32_t)(pos - start));
260     url_fseek(pb, pos, SEEK_SET);
261 }
262
263 /* WAVEFORMATEX header */
264 /* returns the size or -1 on error */
265 int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
266 {
267     int bps, blkalign, bytespersec;
268     int hdrsize = 18;
269
270     if(!enc->codec_tag || enc->codec_tag > 0xffff)
271        enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id);
272     if(!enc->codec_tag)
273         return -1;
274
275     put_le16(pb, enc->codec_tag);
276     put_le16(pb, enc->channels);
277     put_le32(pb, enc->sample_rate);
278     if (enc->codec_id == CODEC_ID_PCM_U8 ||
279         enc->codec_id == CODEC_ID_PCM_ALAW ||
280         enc->codec_id == CODEC_ID_PCM_MULAW) {
281         bps = 8;
282     } else if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
283         bps = 0;
284     } 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) { //
285         bps = 4;
286     } else if (enc->codec_id == CODEC_ID_PCM_S24LE) {
287         bps = 24;
288     } else if (enc->codec_id == CODEC_ID_PCM_S32LE) {
289         bps = 32;
290     } else {
291         bps = 16;
292     }
293
294     if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
295         blkalign = enc->frame_size; //this is wrong, but seems many demuxers dont work if this is set correctly
296         //blkalign = 144 * enc->bit_rate/enc->sample_rate;
297     } else if (enc->codec_id == CODEC_ID_ADPCM_G726) { //
298         blkalign = 1;
299     } else if (enc->block_align != 0) { /* specified by the codec */
300         blkalign = enc->block_align;
301     } else
302         blkalign = enc->channels*bps >> 3;
303     if (enc->codec_id == CODEC_ID_PCM_U8 ||
304         enc->codec_id == CODEC_ID_PCM_S24LE ||
305         enc->codec_id == CODEC_ID_PCM_S32LE ||
306         enc->codec_id == CODEC_ID_PCM_S16LE) {
307         bytespersec = enc->sample_rate * blkalign;
308     } else {
309         bytespersec = enc->bit_rate / 8;
310     }
311     put_le32(pb, bytespersec); /* bytes per second */
312     put_le16(pb, blkalign); /* block align */
313     put_le16(pb, bps); /* bits per sample */
314     if (enc->codec_id == CODEC_ID_MP3) {
315         put_le16(pb, 12); /* wav_extra_size */
316         hdrsize += 12;
317         put_le16(pb, 1); /* wID */
318         put_le32(pb, 2); /* fdwFlags */
319         put_le16(pb, 1152); /* nBlockSize */
320         put_le16(pb, 1); /* nFramesPerBlock */
321         put_le16(pb, 1393); /* nCodecDelay */
322     } else if (enc->codec_id == CODEC_ID_MP2) {
323         put_le16(pb, 22); /* wav_extra_size */
324         hdrsize += 22;
325         put_le16(pb, 2);  /* fwHeadLayer */
326         put_le32(pb, enc->bit_rate); /* dwHeadBitrate */
327         put_le16(pb, enc->channels == 2 ? 1 : 8); /* fwHeadMode */
328         put_le16(pb, 0);  /* fwHeadModeExt */
329         put_le16(pb, 1);  /* wHeadEmphasis */
330         put_le16(pb, 16); /* fwHeadFlags */
331         put_le32(pb, 0);  /* dwPTSLow */
332         put_le32(pb, 0);  /* dwPTSHigh */
333     } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
334         put_le16(pb, 2); /* wav_extra_size */
335         hdrsize += 2;
336         put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */
337     } else if(enc->extradata_size){
338         put_le16(pb, enc->extradata_size);
339         put_buffer(pb, enc->extradata, enc->extradata_size);
340         hdrsize += enc->extradata_size;
341         if(hdrsize&1){
342             hdrsize++;
343             put_byte(pb, 0);
344         }
345     } else {
346         hdrsize -= 2;
347     }
348
349     return hdrsize;
350 }
351
352 /* BITMAPINFOHEADER header */
353 void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const CodecTag *tags, int for_asf)
354 {
355     put_le32(pb, 40 + enc->extradata_size); /* size */
356     put_le32(pb, enc->width);
357     put_le32(pb, enc->height);
358     put_le16(pb, 1); /* planes */
359
360     put_le16(pb, enc->bits_per_sample ? enc->bits_per_sample : 24); /* depth */
361     /* compression type */
362     put_le32(pb, for_asf ? (enc->codec_tag ? enc->codec_tag : codec_get_asf_tag(tags, enc->codec_id)) : enc->codec_tag); //
363     put_le32(pb, enc->width * enc->height * 3);
364     put_le32(pb, 0);
365     put_le32(pb, 0);
366     put_le32(pb, 0);
367     put_le32(pb, 0);
368
369     put_buffer(pb, enc->extradata, enc->extradata_size);
370
371     if (enc->extradata_size & 1)
372         put_byte(pb, 0);
373 }
374 #endif //CONFIG_MUXERS
375
376 #ifdef CONFIG_DEMUXERS
377 /* We could be given one of the three possible structures here:
378  * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
379  * is an expansion of the previous one with the fields added
380  * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
381  * WAVEFORMATEX adds 'WORD  cbSize' and basically makes itself
382  * an openended structure.
383  */
384 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size)
385 {
386     int id;
387
388     id = get_le16(pb);
389     codec->codec_type = CODEC_TYPE_AUDIO;
390     codec->codec_tag = id;
391     codec->channels = get_le16(pb);
392     codec->sample_rate = get_le32(pb);
393     codec->bit_rate = get_le32(pb) * 8;
394     codec->block_align = get_le16(pb);
395     if (size == 14) {  /* We're dealing with plain vanilla WAVEFORMAT */
396         codec->bits_per_sample = 8;
397     }else
398         codec->bits_per_sample = get_le16(pb);
399     codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample);
400
401     if (size > 16) {  /* We're obviously dealing with WAVEFORMATEX */
402         codec->extradata_size = get_le16(pb);
403         if (codec->extradata_size > 0) {
404             if (codec->extradata_size > size - 18)
405                 codec->extradata_size = size - 18;
406             codec->extradata = av_mallocz(codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
407             get_buffer(pb, codec->extradata, codec->extradata_size);
408         } else
409             codec->extradata_size = 0;
410
411         /* It is possible for the chunk to contain garbage at the end */
412         if (size - codec->extradata_size - 18 > 0)
413             url_fskip(pb, size - codec->extradata_size - 18);
414     }
415 }
416
417
418 int wav_codec_get_id(unsigned int tag, int bps)
419 {
420     int id;
421     id = codec_get_id(codec_wav_tags, tag);
422     if (id <= 0)
423         return id;
424     /* handle specific u8 codec */
425     if (id == CODEC_ID_PCM_S16LE && bps == 8)
426         id = CODEC_ID_PCM_U8;
427     if (id == CODEC_ID_PCM_S16LE && bps == 24)
428         id = CODEC_ID_PCM_S24LE;
429     if (id == CODEC_ID_PCM_S16LE && bps == 32)
430         id = CODEC_ID_PCM_S32LE;
431     return id;
432 }
433 #endif // CONFIG_DEMUXERS
434
435 void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale)
436 {
437     int gcd;
438
439     *au_ssize= stream->block_align;
440     if(stream->frame_size && stream->sample_rate){
441         *au_scale=stream->frame_size;
442         *au_rate= stream->sample_rate;
443     }else if(stream->codec_type == CODEC_TYPE_VIDEO){
444         *au_scale= stream->time_base.num;
445         *au_rate = stream->time_base.den;
446     }else{
447         *au_scale= stream->block_align ? stream->block_align*8 : 8;
448         *au_rate = stream->bit_rate;
449     }
450     gcd= ff_gcd(*au_scale, *au_rate);
451     *au_scale /= gcd;
452     *au_rate /= gcd;
453 }