mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-16 03:50:05 +01:00
swresample/rematrix: Constify
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -581,7 +581,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, (const uint8_t **)in->ch, s->native_matrix, len);
|
||||
s->mix_any_f(out->ch, (const uint8_t *const *)in->ch, s->native_matrix, len);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user