00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include "avcodec.h"
00024 #include "fmtconvert.h"
00025 #include "libavutil/common.h"
00026
00027 static void int32_to_float_fmul_scalar_c(float *dst, const int *src, float mul, int len){
00028 int i;
00029 for(i=0; i<len; i++)
00030 dst[i] = src[i] * mul;
00031 }
00032
00033 static av_always_inline int float_to_int16_one(const float *src){
00034 return av_clip_int16(lrintf(*src));
00035 }
00036
00037 static void float_to_int16_c(int16_t *dst, const float *src, long len)
00038 {
00039 int i;
00040 for(i=0; i<len; i++)
00041 dst[i] = float_to_int16_one(src+i);
00042 }
00043
00044 static void float_to_int16_interleave_c(int16_t *dst, const float **src,
00045 long len, int channels)
00046 {
00047 int i,j,c;
00048 if(channels==2){
00049 for(i=0; i<len; i++){
00050 dst[2*i] = float_to_int16_one(src[0]+i);
00051 dst[2*i+1] = float_to_int16_one(src[1]+i);
00052 }
00053 }else{
00054 for(c=0; c<channels; c++)
00055 for(i=0, j=c; i<len; i++, j+=channels)
00056 dst[j] = float_to_int16_one(src[c]+i);
00057 }
00058 }
00059
00060 void ff_float_interleave_c(float *dst, const float **src, unsigned int len,
00061 int channels)
00062 {
00063 int j, c;
00064 unsigned int i;
00065 if (channels == 2) {
00066 for (i = 0; i < len; i++) {
00067 dst[2*i] = src[0][i];
00068 dst[2*i+1] = src[1][i];
00069 }
00070 } else if (channels == 1 && len < INT_MAX / sizeof(float)) {
00071 memcpy(dst, src[0], len * sizeof(float));
00072 } else {
00073 for (c = 0; c < channels; c++)
00074 for (i = 0, j = c; i < len; i++, j += channels)
00075 dst[j] = src[c][i];
00076 }
00077 }
00078
00079 av_cold void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx)
00080 {
00081 c->int32_to_float_fmul_scalar = int32_to_float_fmul_scalar_c;
00082 c->float_to_int16 = float_to_int16_c;
00083 c->float_to_int16_interleave = float_to_int16_interleave_c;
00084 c->float_interleave = ff_float_interleave_c;
00085
00086 if (ARCH_ARM) ff_fmt_convert_init_arm(c, avctx);
00087 if (HAVE_ALTIVEC) ff_fmt_convert_init_altivec(c, avctx);
00088 if (HAVE_MMX) ff_fmt_convert_init_x86(c, avctx);
00089 if (HAVE_MIPSFPU) ff_fmt_convert_init_mips(c);
00090 }
00091
00092
00093 void float_interleave(float *dst, const float **src, long len, int channels)
00094 {
00095 int i,j,c;
00096 if(channels==2){
00097 for(i=0; i<len; i++){
00098 dst[2*i] = src[0][i] / 32768.0f;
00099 dst[2*i+1] = src[1][i] / 32768.0f;
00100 }
00101 }else{
00102 for(c=0; c<channels; c++)
00103 for(i=0, j=c; i<len; i++, j+=channels)
00104 dst[j] = src[c][i] / 32768.0f;
00105 }
00106 }
00107
00108 void float_interleave_noscale(float *dst, const float **src, long len, int channels)
00109 {
00110 int i,j,c;
00111 if(channels==2){
00112 for(i=0; i<len; i++){
00113 dst[2*i] = src[0][i];
00114 dst[2*i+1] = src[1][i];
00115 }
00116 }else{
00117 for(c=0; c<channels; c++)
00118 for(i=0, j=c; i<len; i++, j+=channels)
00119 dst[j] = src[c][i];
00120 }
00121 }