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

rtmp-output: Remove unused properties

This commit is contained in:
jp9000 2014-07-01 15:05:15 -07:00
parent 058f3ca7b0
commit a527f30b94

View File

@ -549,12 +549,6 @@ static obs_properties_t rtmp_stream_properties(void)
obs_properties_t props = obs_properties_create();
/* TODO: locale */
obs_properties_add_text(props, "path", "Stream URL", OBS_TEXT_DEFAULT);
obs_properties_add_text(props, "key", "Stream Key", OBS_TEXT_PASSWORD);
obs_properties_add_text(props, "username", "User Name",
OBS_TEXT_DEFAULT);
obs_properties_add_text(props, "password", "Password",
OBS_TEXT_PASSWORD);
return props;
}