mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
svolume: Make volume pointer parameter const for pa_volume_float32re_c()
const obviously missing Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
c6bc835e45
commit
5d7b5e509c
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ static void pa_volume_float32ne_c(float *samples, const float *volumes, unsigned
|
|||
}
|
||||
}
|
||||
|
||||
static void pa_volume_float32re_c(float *samples, float *volumes, unsigned channels, unsigned length) {
|
||||
static void pa_volume_float32re_c(float *samples, const float *volumes, unsigned channels, unsigned length) {
|
||||
unsigned channel;
|
||||
|
||||
length /= sizeof(float);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue