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:
Barnabás Pőcze 2026-03-27 11:06:56 +01:00
parent 84e7b744a6
commit 00b4717c6e
3 changed files with 5 additions and 8 deletions

View file

@ -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) {