test-resample: fix unit test

Caller should not have to resubmit old samples anymore.

Fixes #551
This commit is contained in:
Wim Taymans 2021-01-09 10:55:51 +01:00
parent 0c2b4df8e5
commit 540011f1e3

View file

@ -112,7 +112,7 @@ static void pull_blocks(struct resample *r, uint32_t size)
in_len, pin_len, out_len, pout_len,
resample_in_len(r, size));
spa_assert(in_len == pin_len + (resample_delay(r) * 2));
spa_assert(in_len == pin_len);
spa_assert(out_len == pout_len);
}
}