mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-01-19 02:02:47 +00:00
swr: fix warning: passing argument 2 of s->mix_any_f from incompatible pointer type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
338509c2e1
commit
7309451d73
@ -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…
x
Reference in New Issue
Block a user