mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 12:22:22 +00:00
lua: increase subprocess stdout limit to 64MB
This commit is contained in:
parent
95d5fe1626
commit
2eab0c779a
@ -1154,7 +1154,7 @@ static int script_subprocess(lua_State *L)
|
||||
lua_pop(L, 1); // -
|
||||
|
||||
lua_getfield(L, 1, "max_size"); // m
|
||||
int64_t max_size = lua_isnil(L, -1) ? 16 * 1024 * 1024 : lua_tointeger(L, -1);
|
||||
int64_t max_size = lua_isnil(L, -1) ? 64 * 1024 * 1024 : lua_tointeger(L, -1);
|
||||
|
||||
struct subprocess_cb_ctx cb_ctx = {
|
||||
.log = ctx->log,
|
||||
|
Loading…
Reference in New Issue
Block a user