decoder_api: fixed shadow warning, rename "wait"
The parameter name "wait" overlaps with the POSIX wait() function. Rename it.
This commit is contained in:
parent
e7131b5da2
commit
adea76a6ed
@ -137,13 +137,13 @@ size_t decoder_read(struct decoder *decoder,
|
|||||||
* one.
|
* one.
|
||||||
*/
|
*/
|
||||||
static enum decoder_command
|
static enum decoder_command
|
||||||
need_chunks(struct input_stream *is, bool wait)
|
need_chunks(struct input_stream *is, bool do_wait)
|
||||||
{
|
{
|
||||||
if (dc.command == DECODE_COMMAND_STOP ||
|
if (dc.command == DECODE_COMMAND_STOP ||
|
||||||
dc.command == DECODE_COMMAND_SEEK)
|
dc.command == DECODE_COMMAND_SEEK)
|
||||||
return dc.command;
|
return dc.command;
|
||||||
|
|
||||||
if ((is == NULL || input_stream_buffer(is) <= 0) && wait) {
|
if ((is == NULL || input_stream_buffer(is) <= 0) && do_wait) {
|
||||||
notify_wait(&dc.notify);
|
notify_wait(&dc.notify);
|
||||||
notify_signal(&pc.notify);
|
notify_signal(&pc.notify);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user