diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-06-23 02:15:00 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-07-03 18:17:56 +0200 |
commit | 2db60f90dfcdfef308b80846dcd7779aaf3b2983 (patch) | |
tree | e8434b389bd5b82fbacc995dd7d2026921c97249 /libswresample/rematrix.c | |
parent | 589f1e5cc7286e76f196d27fb55dec94e83ff3ab (diff) | |
download | ffmpeg-2db60f90dfcdfef308b80846dcd7779aaf3b2983.tar.gz |
swresample/rematrix: Constify
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libswresample/rematrix.c')
-rw-r--r-- | libswresample/rematrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c index ed2d9fd883..6e1fb0c66f 100644 --- a/libswresample/rematrix.c +++ b/libswresample/rematrix.c @@ -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; } |