Browse Source

swr: fix warning: passing argument 2 of s->mix_any_f from incompatible pointer type

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

+ 1
- 1
libswresample/rematrix.c View File

@@ -361,7 +361,7 @@ int swri_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mus
int off = 0;

if(s->mix_any_f) {
s->mix_any_f(out->ch, in->ch, s->native_matrix, len);
s->mix_any_f(out->ch, (const uint8_t **)in->ch, s->native_matrix, len);
return 0;
}



Loading…
Cancel
Save