obs-transitions: Implement fade transition

A basic fade transition that fades to/from a source via a simple cross
fade.
This commit is contained in:
jp9000
2016-01-03 17:20:15 -08:00
parent 6839ff7686
commit 4b781c7b04
6 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include <obs-module.h>
OBS_DECLARE_MODULE()
OBS_MODULE_USE_DEFAULT_LOCALE("obs-transitions", "en-US")
extern struct obs_source_info fade_transition;
bool obs_module_load(void)
{
obs_register_source(&fade_transition);
return true;
}