mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-03-29 07:58:06 -04:00
spa: remove async members
Some node implementations have an `async` member, but these members are not written anywhere. So remove them.
This commit is contained in:
parent
84e7b744a6
commit
00b4717c6e
3 changed files with 5 additions and 8 deletions
|
|
@ -97,7 +97,6 @@ struct impl {
|
|||
struct spa_hook_list hooks;
|
||||
struct spa_callbacks callbacks;
|
||||
|
||||
bool async;
|
||||
struct spa_source *timer_source;
|
||||
|
||||
bool started;
|
||||
|
|
@ -262,7 +261,7 @@ static int fill_buffer(struct impl *this, struct buffer *b)
|
|||
|
||||
static void set_timer(struct impl *this, bool enabled)
|
||||
{
|
||||
if (this->async || this->props.live) {
|
||||
if (this->props.live) {
|
||||
struct timespec ts = {0};
|
||||
|
||||
if (enabled) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue