From 8bfdabd0cfc45b0394c0740282334d7edb384007 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Mon, 25 Aug 2014 08:44:53 -0700 Subject: [PATCH] obs-x264: Swap preset/profile parameters The parameters for override_base_params were being used in the wrong order. --- 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 0927760f0..542ac1da9 100644 --- a/plugins/obs-x264/obs-x264.c +++ b/plugins/obs-x264/obs-x264.c @@ -362,7 +362,7 @@ static bool update_settings(struct obs_x264 *obsx264, obs_data_t settings) if (!obsx264->context) { override_base_params(obsx264, paramlist, - &preset, &tune, &profile); + &preset, &profile, &tune); success = reset_x264_params(obsx264, preset, tune); }