Remove version parameter from obs_module_load
Replaced by obs_get_version() API
This commit is contained in:
@@ -6,12 +6,10 @@ OBS_MODULE_USE_DEFAULT_LOCALE("obs-ffmpeg", "en-US")
|
||||
extern struct obs_output_info ffmpeg_output;
|
||||
extern struct obs_encoder_info aac_encoder_info;
|
||||
|
||||
bool obs_module_load(uint32_t obs_version)
|
||||
bool obs_module_load(void)
|
||||
{
|
||||
obs_register_output(&ffmpeg_output);
|
||||
obs_register_encoder(&aac_encoder_info);
|
||||
|
||||
UNUSED_PARAMETER(obs_version);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user