mirror of https://git.ffmpeg.org/ffmpeg.git
swr: fix warning: passing argument 2 of ctx->simd_f from incompatible pointer type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
04b5eb47a6
commit
087d067a99
|
@ -182,10 +182,10 @@ int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len
|
|||
if(out->planar == in->planar){
|
||||
int planes = out->planar ? out->ch_count : 1;
|
||||
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{
|
||||
ctx->simd_f(out->ch, in->ch, off);
|
||||
ctx->simd_f(out->ch, (const uint8_t **)in->ch, off);
|
||||
}
|
||||
}
|
||||
if(off == len)
|
||||
|
|
Loading…
Reference in New Issue