add defines for max buffer size

This commit is contained in:
Wim Taymans 2019-10-24 12:51:34 +02:00
parent f30b4bf506
commit 81fc595e3d
5 changed files with 11 additions and 8 deletions

View file

@ -134,8 +134,8 @@ struct impl {
#define CHECK_PORT(this,d,p) ((d) == SPA_DIRECTION_INPUT && (p) == 0)
static const uint32_t default_min_latency = 128;
static const uint32_t default_max_latency = 1024;
static const uint32_t default_min_latency = MIN_LATENCY;
static const uint32_t default_max_latency = MAX_LATENCY;
static void reset_props(struct props *props)
{