966b943d5b
There were a *lot* of warnings, managed to remove most of them. Also, put warning flags before C_FLAGS and CXX_FLAGS, rather than after, as -Wall -Wextra was overwriting flags that came before it.
14 lines
225 B
C
14 lines
225 B
C
#include <obs-module.h>
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
extern struct obs_output_info ffmpeg_output;
|
|
|
|
bool obs_module_load(uint32_t obs_version)
|
|
{
|
|
obs_register_output(&ffmpeg_output);
|
|
|
|
UNUSED_PARAMETER(obs_version);
|
|
return true;
|
|
}
|