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.
This commit is contained in:
Olivier Crête 2014-01-03 11:16:42 -05:00
parent cd11a38bf0
commit 93abc06ae8

View file

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