jp9000 966b943d5b Remove majority of warnings
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.
2014-02-14 15:13:36 -07:00

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