feat: bump video max filesize limit

This commit is contained in:
2026-03-31 10:29:09 +02:00
parent ef380db992
commit a443d7e1a1
+1 -1
View File
@@ -36,7 +36,7 @@ static constexpr int FONT_SIZE_LG = 22;
static constexpr int MAX_FILES = 128;
static constexpr int MAX_PATH = 256;
static constexpr int MAX_FILTER = 64;
static constexpr uint64_t MAX_FILE_SIZE = 512ull * 1024ull * 1024ull;
static constexpr uint64_t MAX_FILE_SIZE = 1024ull * 1024ull * 1024ull;
static constexpr int AUDIO_OUT_CHANNELS = 2;
static constexpr int AUDIO_OUT_BITS = 16;
static constexpr int AUDIO_RING_BYTES = 0x8000;