Merge branch 'v0.15.x'

This commit is contained in:
Max Kellermann 2009-10-13 16:25:17 +02:00
commit a61d0c9567
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -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"

View File

@ -310,7 +310,7 @@ fill_buffer(struct input_stream *is)
return false; return false;
} }
return true; return !g_queue_is_empty(c->buffers);
} }
/** /**