[FreeSurround] Change another variable to const

This should be const anyway, as it's not written to.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
main
Christopher Snowhill 2022-07-11 18:35:43 -07:00
parent 8b418004eb
commit b0bef40386
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class decoder_impl {
}
// decode a block of data and overlap-add it into outbuf
void buffered_decode(float *input) {
void buffered_decode(const float *input) {
// demultiplex and apply window function
vDSP_vspdp(input, 2, &lt[0], 1, N);
vDSP_vspdp(input + 1, 2, &rt[0], 1, N);