瀏覽代碼

fix opus early end on long tracks - release

Philippe G 4 年之前
父節點
當前提交
a87066fef6
共有 3 個文件被更改,包括 1 次插入2 次删除
  1. 二進制
      components/codecs/lib/libopus.a
  2. 二進制
      components/codecs/lib/libopusfile.a
  3. 1 2
      components/squeezelite/opus.c

二進制
components/codecs/lib/libopus.a


二進制
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);