From 93abc06ae85cbb91422e3848ddc6ec3416c37ec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Fri, 3 Jan 2014 11:16:42 -0500 Subject: [PATCH] shmsink: Change default shm size to 64 MiB The original size of 256k was too small for anything where one would want to use shm. If the buffer's size needs to be limit, it is better to use buffer-time in most cases anyway. --- sys/shm/gstshmsink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/shm/gstshmsink.c b/sys/shm/gstshmsink.c index cbebdf5efe..d13b228e7a 100644 --- a/sys/shm/gstshmsink.c +++ b/sys/shm/gstshmsink.c @@ -65,7 +65,7 @@ struct GstShmClient GstPollFD pollfd; }; -#define DEFAULT_SIZE ( 256 * 1024 ) +#define DEFAULT_SIZE ( 64 * 1024 * 1024 ) #define DEFAULT_WAIT_FOR_CONNECTION (TRUE) /* Default is user read/write, group read */ #define DEFAULT_PERMS ( S_IRUSR | S_IWUSR | S_IRGRP )