0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

image-source: Increase slideshow limit to 400MB

Increases the image slideshow size limit -- this is a temporary solution
until a newer revision of the image slideshow can be written.
This commit is contained in:
jp9000 2020-02-19 02:27:54 -08:00
parent 11eafbda35
commit 61fd81f7b4

View File

@ -64,7 +64,7 @@
extern uint64_t image_source_get_memory_usage(void *data);
#define BYTES_TO_MBYTES (1024 * 1024)
#define MAX_MEM_USAGE (250 * BYTES_TO_MBYTES)
#define MAX_MEM_USAGE (400 * BYTES_TO_MBYTES)
struct image_file_data {
char *path;