Mercurial > libavcodec.hg
annotate audioconvert.c @ 4468:5455cb5a759c libavcodec
fix decoding of takethat.mp3
author | michael |
---|---|
date | Sat, 03 Feb 2007 12:42:12 +0000 |
parents | c8c591fe26f8 |
children | 4dbe6578f811 |
rev | line source |
---|---|
3594 | 1 /* |
3596 | 2 * audio conversion |
3594 | 3 * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> |
4 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3596
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3596
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3596
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
3594 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3596
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
3594 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3596
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
3594 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3596
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3594 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 * | |
21 */ | |
22 | |
23 /** | |
24 * @file audioconvert.c | |
3596 | 25 * audio conversion |
3594 | 26 * @author Michael Niedermayer <michaelni@gmx.at> |
27 */ | |
28 | |
29 #include "avcodec.h" | |
30 | |
31 int av_audio_convert(void *maybe_dspcontext_or_something_av_convert_specific, | |
32 void *out[6], int out_stride[6], enum SampleFormat out_fmt, | |
33 void * in[6], int in_stride[6], enum SampleFormat in_fmt, int len){ | |
34 int ch; | |
35 const int isize= FFMIN( in_fmt+1, 4); | |
36 const int osize= FFMIN(out_fmt+1, 4); | |
37 const int fmt_pair= out_fmt + 5*in_fmt; | |
38 | |
39 //FIXME optimize common cases | |
40 | |
41 for(ch=0; ch<6; ch++){ | |
42 const int is= in_stride[ch] * isize; | |
43 const int os= out_stride[ch] * osize; | |
44 uint8_t *pi= in[ch]; | |
45 uint8_t *po= out[ch]; | |
46 uint8_t *end= po + os; | |
47 if(!out[ch]) | |
48 continue; | |
49 | |
50 #define CONV(ofmt, otype, ifmt, expr)\ | |
51 if(fmt_pair == ofmt + 5*ifmt){\ | |
52 do{\ | |
53 *(otype*)po = expr; pi += is; po += os;\ | |
54 }while(po < end);\ | |
55 } | |
56 | |
57 //FIXME put things below under ifdefs so we dont waste space for cases no codec will need | |
58 //FIXME rounding and cliping ? | |
59 | |
60 CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_U8 , *(uint8_t*)pi) | |
61 else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_U8 , (*(uint8_t*)pi - 0x80)<<8) | |
62 else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_U8 , (*(uint8_t*)pi - 0x80)<<24) | |
63 else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_U8 , (*(uint8_t*)pi - 0x80)*(1.0 / (1<<7))) | |
64 else CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_S16, (*(int16_t*)pi>>8) + 0x80) | |
65 else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_S16, *(int16_t*)pi) | |
66 else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_S16, *(int16_t*)pi<<16) | |
67 else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_S16, *(int16_t*)pi*(1.0 / (1<<15))) | |
68 else CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_S32, (*(int32_t*)pi>>24) + 0x80) | |
69 else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_S32, *(int32_t*)pi>>16) | |
70 else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_S32, *(int32_t*)pi) | |
71 else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_S32, *(int32_t*)pi*(1.0 / (1<<31))) | |
72 else CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_FLT, lrintf(*(float*)pi * (1<<7)) + 0x80) | |
73 else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_FLT, lrintf(*(float*)pi * (1<<15))) | |
74 else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_FLT, lrintf(*(float*)pi * (1<<31))) | |
75 else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_FLT, *(float*)pi) | |
76 else return -1; | |
77 } | |
78 return 0; | |
79 } |