diff --git a/components/codecs/lib/libopus.a b/components/codecs/lib/libopus.a index 7fa38f15..6b5356c2 100644 Binary files a/components/codecs/lib/libopus.a and b/components/codecs/lib/libopus.a differ diff --git a/components/codecs/lib/libopusfile.a b/components/codecs/lib/libopusfile.a index c5e9f3ab..c9fbe24e 100644 Binary files a/components/codecs/lib/libopusfile.a and b/components/codecs/lib/libopusfile.a differ diff --git a/components/squeezelite/opus.c b/components/squeezelite/opus.c index 9a3d2286..9a90fd76 100644 --- a/components/squeezelite/opus.c +++ b/components/squeezelite/opus.c @@ -101,7 +101,7 @@ static int _read_cb(void *datasource, char *ptr, int size) { bytes = min(_buf_used(streambuf), _buf_cont_read(streambuf)); bytes = min(bytes, size); - + memcpy(ptr, streambuf->readp, bytes); _buf_inc_readp(streambuf, bytes); @@ -171,7 +171,6 @@ static decode_state opus_decompress(void) { write_buf = process.inbuf; ); - //printf("processing %u frames\n", frames); // write the decoded frames into outputbuf then unpack them (they are 16 bits) n = OP(u, read, u->of, (opus_int16*) write_buf, frames * channels, NULL);