Browse Source

swr: fix warning: passing argument 2 of ctx->simd_f from incompatible pointer type

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
087d067a99
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswresample/audioconvert.c

+ 2
- 2
libswresample/audioconvert.c View File

@@ -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…
Cancel
Save