Commit a61d0c95 authored by Max Kellermann's avatar Max Kellermann

Merge branch 'v0.15.x'

parents eea4edd9 6037beab
...@@ -47,6 +47,7 @@ ver 0.16 (20??/??/??) ...@@ -47,6 +47,7 @@ ver 0.16 (20??/??/??)
ver 0.15.5 (2009/??/??) ver 0.15.5 (2009/??/??)
* input: * input:
- curl: don't abort if a packet has only metadata - curl: don't abort if a packet has only metadata
- curl: fixed endless loop during buffering
* tags: * tags:
- riff, aiff: fixed "limited range" gcc warning - riff, aiff: fixed "limited range" gcc warning
* decoder_thread: change the fallback decoder name to "mad" * decoder_thread: change the fallback decoder name to "mad"
......
...@@ -310,7 +310,7 @@ fill_buffer(struct input_stream *is) ...@@ -310,7 +310,7 @@ fill_buffer(struct input_stream *is)
return false; return false;
} }
return true; return !g_queue_is_empty(c->buffers);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment