diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-01-03 11:16:42 -0500 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-01-03 11:16:42 -0500 |
commit | 93abc06ae85cbb91422e3848ddc6ec3416c37ec0 (patch) | |
tree | fb5a32e16d874c130df2731e961a17467dcd8b38 /sys/shm | |
parent | cd11a38bf0780da9b20aac5e46f980f47c57786d (diff) |
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.
Diffstat (limited to 'sys/shm')
-rw-r--r-- | sys/shm/gstshmsink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/shm/gstshmsink.c b/sys/shm/gstshmsink.c index cbebdf5ef..d13b228e7 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 ) |