35 #define CONV_FUNC_NAME(dst_fmt, src_fmt) conv_ ## src_fmt ## _to_ ## dst_fmt
38 #define CONV_FUNC(ofmt, otype, ifmt, expr)\
39 static void CONV_FUNC_NAME(ofmt, ifmt)(uint8_t *po, const uint8_t *pi, int is, int os, uint8_t *end)\
41 uint8_t *end2 = end - 3*os;\
43 *(otype*)po = expr; pi += is; po += os;\
44 *(otype*)po = expr; pi += is; po += os;\
45 *(otype*)po = expr; pi += is; po += os;\
46 *(otype*)po = expr; pi += is; po += os;\
49 *(otype*)po = expr; pi += is; po += os;\
59 CONV_FUNC(AV_SAMPLE_FMT_U8 ,
uint8_t, AV_SAMPLE_FMT_S16, (*(const int16_t*)pi>>8) + 0x80)
60 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S16, *(const int16_t*)pi)
61 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S16, *(const int16_t*)pi<<16)
62 CONV_FUNC(AV_SAMPLE_FMT_FLT,
float , AV_SAMPLE_FMT_S16, *(const int16_t*)pi*(1.0f/ (1<<15)))
63 CONV_FUNC(AV_SAMPLE_FMT_DBL,
double , AV_SAMPLE_FMT_S16, *(const int16_t*)pi*(1.0 / (1<<15)))
64 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_S32, (*(const int32_t*)pi>>24) + 0x80)
65 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S32, *(const int32_t*)pi>>16)
66 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S32, *(const int32_t*)pi)
67 CONV_FUNC(AV_SAMPLE_FMT_FLT,
float , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0f/ (1
U<<31)))
68 CONV_FUNC(AV_SAMPLE_FMT_DBL,
double , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0 / (1
U<<31)))
69 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8(
lrintf(*(const
float*)pi * (1<<7)) + 0x80))
70 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16(
lrintf(*(const
float*)pi * (1<<15))))
71 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const
float*)pi * (1
U<<31))))
72 CONV_FUNC(AV_SAMPLE_FMT_FLT,
float , AV_SAMPLE_FMT_FLT, *(const
float*)pi)
73 CONV_FUNC(AV_SAMPLE_FMT_DBL,
double , AV_SAMPLE_FMT_FLT, *(const
float*)pi)
74 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8(
lrint(*(const
double*)pi * (1<<7)) + 0x80))
75 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16(
lrint(*(const
double*)pi * (1<<15))))
76 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const
double*)pi * (1
U<<31))))
77 CONV_FUNC(AV_SAMPLE_FMT_FLT,
float , AV_SAMPLE_FMT_DBL, *(const
double*)pi)
78 CONV_FUNC(AV_SAMPLE_FMT_DBL,
double , AV_SAMPLE_FMT_DBL, *(const
double*)pi)
80 #define FMT_PAIR_FUNC(out, in) [out + AV_SAMPLE_FMT_NB*in] = CONV_FUNC_NAME(out, in)
110 static void cpy1(uint8_t **dst,
const uint8_t **
src,
int len){
111 memcpy(*dst, *src, len);
113 static void cpy2(uint8_t **dst,
const uint8_t **
src,
int len){
114 memcpy(*dst, *src, 2*len);
116 static void cpy4(uint8_t **dst,
const uint8_t **
src,
int len){
117 memcpy(*dst, *src, 4*len);
119 static void cpy8(uint8_t **dst,
const uint8_t **
src,
int len){
120 memcpy(*dst, *src, 8*len);
125 int channels,
const int *ch_map,
148 if(out_fmt == in_fmt && !ch_map) {
150 case 1:ctx->
simd_f = cpy1;
break;
151 case 2:ctx->
simd_f = cpy2;
break;
152 case 4:ctx->
simd_f = cpy4;
break;
153 case 8:ctx->
simd_f = cpy8;
break;
173 unsigned misaligned = 0;
180 for (ch = 0; ch < planes; ch++)
181 m |= (intptr_t)in->
ch[ch];
187 for (ch = 0; ch < planes; ch++)
188 m |= (intptr_t)out->
ch[ch];
202 for(ch=0; ch<planes; ch++){
206 ctx->
simd_f(out->
ch, (
const uint8_t **)in->
ch, off);
216 const uint8_t *pi= ich < 0 ? ctx->silence : in->
ch[ich];
217 uint8_t *po= out->
ch[ch];
218 uint8_t *
end= po + os*len;
221 ctx->
conv_f(po+off*os, pi+off*is, is, os,
end);