1
mirror of https://github.com/mpv-player/mpv synced 2024-11-03 03:19:24 +01:00

client API: enlarge the message buffer if log level is high

This commit is contained in:
wm4 2014-06-06 19:25:52 +02:00
parent 3b7402b51c
commit 43d46a28fe

View File

@ -1249,8 +1249,9 @@ static void recreate_message_buffer(mpv_handle *ctx)
mp_msg_log_buffer_destroy(ctx->messages);
ctx->messages = NULL;
if (ctx->messages_level >= 0) {
int size = ctx->messages_level >= MSGL_V ? 10000 : 1000;
ctx->messages =
mp_msg_log_buffer_new(ctx->mpctx->global, 1000, ctx->messages_level,
mp_msg_log_buffer_new(ctx->mpctx->global, size, ctx->messages_level,
ctx->wakeup_cb, ctx->wakeup_cb_ctx);
}
}