mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
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:
parent
cd11a38bf0
commit
93abc06ae8
1 changed files with 1 additions and 1 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue