0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 21:13:04 +02:00

obs-x264: Swap preset/profile parameters

The parameters for override_base_params were being used in the wrong
order.
This commit is contained in:
jp9000 2014-08-25 08:44:53 -07:00
parent 29bf574d70
commit 8bfdabd0cf

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