Revert "rtmp-services: Add ability to specify tune param"

This reverts commit 4b0f22d05a41680c1406efcc4078eac23cf79ca4.

Services should not force tunes.
This commit is contained in:
jp9000 2016-09-19 17:57:59 -07:00
parent 2cf5c5f7f7
commit ba47bcafc8

View File

@ -346,12 +346,6 @@ static void apply_video_encoder_settings(obs_data_t *settings,
}
}
item = json_object_get(recommended, "tune");
if (item && json_is_string(item)) {
const char *tune = json_string_value(item);
obs_data_set_string(settings, "tune", tune);
}
item = json_object_get(recommended, "x264opts");
if (item && json_is_string(item)) {
const char *x264_settings = json_string_value(item);