[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>xcode15
parent
8034054d72
commit
7cb0054d77
|
@ -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, <[0], 1, N);
|
||||
vDSP_vspdp(input + 1, 2, &rt[0], 1, N);
|
||||
|
|
Loading…
Reference in New Issue