Ver Fonte

fix opus early end on long tracks - release

Philippe G há 4 anos atrás
pai
commit
a87066fef6

BIN
components/codecs/lib/libopus.a


BIN
components/codecs/lib/libopusfile.a


+ 1 - 2
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);