obs-x264: Swap preset/profile parameters

The parameters for override_base_params were being used in the wrong
order.
master
jp9000 2014-08-25 08:44:53 -07:00
parent 29bf574d70
commit 8bfdabd0cf
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}