mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
*testsrc: async == live for now
This commit is contained in:
parent
65a8bc8b34
commit
530caf35db
2 changed files with 2 additions and 2 deletions
|
|
@ -841,7 +841,7 @@ static int impl_node_process_output(struct spa_node *node)
|
||||||
this->io->buffer_id = SPA_ID_INVALID;
|
this->io->buffer_id = SPA_ID_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this->async && (io->status == SPA_RESULT_NEED_BUFFER))
|
if (!this->props.live && (io->status == SPA_RESULT_NEED_BUFFER))
|
||||||
return make_buffer(this);
|
return make_buffer(this);
|
||||||
else
|
else
|
||||||
return SPA_RESULT_OK;
|
return SPA_RESULT_OK;
|
||||||
|
|
|
||||||
|
|
@ -785,7 +785,7 @@ static int impl_node_process_output(struct spa_node *node)
|
||||||
this->io->buffer_id = SPA_ID_INVALID;
|
this->io->buffer_id = SPA_ID_INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this->async && (io->status == SPA_RESULT_NEED_BUFFER))
|
if (!this->props.live && (io->status == SPA_RESULT_NEED_BUFFER))
|
||||||
return make_buffer(this);
|
return make_buffer(this);
|
||||||
else
|
else
|
||||||
return SPA_RESULT_OK;
|
return SPA_RESULT_OK;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue