|
@@ -182,10 +182,10 @@ int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len |
|
|
if(out->planar == in->planar){ |
|
|
if(out->planar == in->planar){ |
|
|
int planes = out->planar ? out->ch_count : 1; |
|
|
int planes = out->planar ? out->ch_count : 1; |
|
|
for(ch=0; ch<planes; ch++){ |
|
|
for(ch=0; ch<planes; ch++){ |
|
|
ctx->simd_f(out->ch+ch, in->ch+ch, off * (out->planar ? 1 :out->ch_count)); |
|
|
|
|
|
|
|
|
ctx->simd_f(out->ch+ch, (const uint8_t **)in->ch+ch, off * (out->planar ? 1 :out->ch_count)); |
|
|
} |
|
|
} |
|
|
}else{ |
|
|
}else{ |
|
|
ctx->simd_f(out->ch, in->ch, off); |
|
|
|
|
|
|
|
|
ctx->simd_f(out->ch, (const uint8_t **)in->ch, off); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
if(off == len) |
|
|
if(off == len) |
|
|