Merge branch 'v0.15.x'
This commit is contained in:
commit
a61d0c9567
1
NEWS
1
NEWS
|
@ -47,6 +47,7 @@ ver 0.16 (20??/??/??)
|
|||
ver 0.15.5 (2009/??/??)
|
||||
* input:
|
||||
- curl: don't abort if a packet has only metadata
|
||||
- curl: fixed endless loop during buffering
|
||||
* tags:
|
||||
- riff, aiff: fixed "limited range" gcc warning
|
||||
* decoder_thread: change the fallback decoder name to "mad"
|
||||
|
|
|
@ -310,7 +310,7 @@ fill_buffer(struct input_stream *is)
|
|||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
return !g_queue_is_empty(c->buffers);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue