1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

rtp: increase queue size

This commit is contained in:
Steffen Vogel 2019-01-07 15:52:34 +01:00
parent c1c1eb1951
commit 8322b0615a

View file

@ -164,7 +164,7 @@ int rtp_start(struct node *n)
struct rtp *r = (struct rtp *) n->_vd;
/* Initialize Queue */
ret = queue_signalled_init(&r->recv_queue, 8, &memory_heap, 0);
ret = queue_signalled_init(&r->recv_queue, 1024, &memory_heap, 0);
if (ret)
return ret;