Commit 3146706d authored by Julian Scheel's avatar Julian Scheel Committed by Jean-Baptiste Kempf

mmal: Reduce buffer count to 30

Save some memory by allocating fewer buffers. This is still not optimal, but
close to where we can get with the current implementation.
Signed-off-by: default avatarJulian Scheel <julian@jusst.de>
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a9f5941b
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include <interface/mmal/mmal.h> #include <interface/mmal/mmal.h>
/* Think twice before changing this. Incorrect values cause havoc. */ /* Think twice before changing this. Incorrect values cause havoc. */
#define NUM_ACTUAL_OPAQUE_BUFFERS 40 #define NUM_ACTUAL_OPAQUE_BUFFERS 30
struct picture_sys_t { struct picture_sys_t {
vlc_object_t *owner; vlc_object_t *owner;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment