From 2149817af7d9b97a16c485af3a5202b6196062d3 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 10 Feb 2015 19:32:35 -0800 Subject: [PATCH] obs-x264: Set lower buffer size limit to 0 0 is a common value used for recording. --- plugins/obs-x264/obs-x264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/obs-x264/obs-x264.c b/plugins/obs-x264/obs-x264.c index e668ce4a6..01564e964 100644 --- a/plugins/obs-x264/obs-x264.c +++ b/plugins/obs-x264/obs-x264.c @@ -153,7 +153,7 @@ static obs_properties_t *obs_x264_props(void *unused) p = obs_properties_add_bool(props, "use_bufsize", TEXT_CUSTOM_BUF); obs_property_set_modified_callback(p, use_bufsize_modified); - obs_properties_add_int(props, "buffer_size", TEXT_BUF_SIZE, 50, + obs_properties_add_int(props, "buffer_size", TEXT_BUF_SIZE, 0, 10000000, 1); obs_properties_add_int(props, "keyint_sec", TEXT_KEYINT_SEC, 0, 20, 1);