2013-09-30 19:37:13 -07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
2013-11-26 22:07:27 -08:00
|
|
|
#include <util/base.h>
|
|
|
|
#include <media-io/audio-resampler.h>
|
|
|
|
#include <obs.h>
|
2013-09-30 19:37:13 -07:00
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
#include <intrin.h>
|
|
|
|
|
2013-09-30 19:37:13 -07:00
|
|
|
static const int cx = 800;
|
|
|
|
static const int cy = 600;
|
|
|
|
|
|
|
|
/* --------------------------------------------------- */
|
|
|
|
|
|
|
|
class SourceContext {
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_source_t source;
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
public:
|
2013-10-14 12:37:52 -07:00
|
|
|
inline SourceContext(obs_source_t source) : source(source) {}
|
2013-11-20 14:00:16 -08:00
|
|
|
inline ~SourceContext() {obs_source_release(source);}
|
2013-10-14 12:37:52 -07:00
|
|
|
inline operator obs_source_t() {return source;}
|
2013-09-30 19:37:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/* --------------------------------------------------- */
|
|
|
|
|
|
|
|
class SceneContext {
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_scene_t scene;
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
public:
|
2013-10-14 12:37:52 -07:00
|
|
|
inline SceneContext(obs_scene_t scene) : scene(scene) {}
|
|
|
|
inline ~SceneContext() {obs_scene_destroy(scene);}
|
|
|
|
inline operator obs_scene_t() {return scene;}
|
2013-09-30 19:37:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/* --------------------------------------------------- */
|
|
|
|
|
|
|
|
static LRESULT CALLBACK sceneProc(HWND hwnd, UINT message, WPARAM wParam,
|
|
|
|
LPARAM lParam)
|
|
|
|
{
|
|
|
|
switch (message) {
|
|
|
|
|
|
|
|
case WM_CLOSE:
|
|
|
|
PostQuitMessage(0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return DefWindowProc(hwnd, message, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_log(enum log_type type, const char *msg, va_list args)
|
|
|
|
{
|
|
|
|
char bla[4096];
|
|
|
|
vsnprintf(bla, 4095, msg, args);
|
|
|
|
|
|
|
|
OutputDebugStringA(bla);
|
|
|
|
OutputDebugStringA("\n");
|
2013-10-14 12:37:52 -07:00
|
|
|
|
2013-10-29 06:01:19 -07:00
|
|
|
if (type >= LOG_WARNING)
|
|
|
|
__debugbreak();
|
2013-09-30 19:37:13 -07:00
|
|
|
}
|
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
static void CreateOBS(HWND hwnd)
|
2013-09-30 19:37:13 -07:00
|
|
|
{
|
2013-10-16 23:31:18 -07:00
|
|
|
RECT rc;
|
|
|
|
GetClientRect(hwnd, &rc);
|
|
|
|
|
2013-11-20 14:00:16 -08:00
|
|
|
if (!obs_startup())
|
2013-09-30 19:37:13 -07:00
|
|
|
throw "Couldn't create OBS";
|
2013-11-20 14:00:16 -08:00
|
|
|
|
|
|
|
struct obs_video_info ovi;
|
|
|
|
ovi.adapter = 0;
|
|
|
|
ovi.base_width = rc.right;
|
|
|
|
ovi.base_height = rc.bottom;
|
|
|
|
ovi.fps_num = 30000;
|
|
|
|
ovi.fps_den = 1001;
|
|
|
|
ovi.graphics_module = "libobs-opengl";
|
2013-11-26 21:26:14 -08:00
|
|
|
ovi.window_width = rc.right;
|
|
|
|
ovi.window_height = rc.bottom;
|
2013-11-20 14:00:16 -08:00
|
|
|
ovi.output_format = VIDEO_FORMAT_RGBA;
|
|
|
|
ovi.output_width = rc.right;
|
|
|
|
ovi.output_height = rc.bottom;
|
|
|
|
ovi.window.hwnd = hwnd;
|
|
|
|
|
|
|
|
if (!obs_reset_video(&ovi))
|
|
|
|
throw "Couldn't initialize video";
|
2013-09-30 19:37:13 -07:00
|
|
|
}
|
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
static void AddTestItems(obs_scene_t scene, obs_source_t source)
|
2013-09-30 19:37:13 -07:00
|
|
|
{
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_sceneitem_t item = NULL;
|
2013-09-30 19:37:13 -07:00
|
|
|
struct vec2 v2;
|
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
item = obs_scene_add(scene, source);
|
2013-09-30 19:37:13 -07:00
|
|
|
vec2_set(&v2, 100.0f, 200.0f);
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_sceneitem_setpos(item, &v2);
|
|
|
|
obs_sceneitem_setrot(item, 10.0f);
|
2013-09-30 19:37:13 -07:00
|
|
|
vec2_set(&v2, 20.0f, 2.0f);
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_sceneitem_setscale(item, &v2);
|
2013-09-30 19:37:13 -07:00
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
item = obs_scene_add(scene, source);
|
2013-09-30 19:37:13 -07:00
|
|
|
vec2_set(&v2, 200.0f, 100.0f);
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_sceneitem_setpos(item, &v2);
|
|
|
|
obs_sceneitem_setrot(item, -45.0f);
|
2013-09-30 19:37:13 -07:00
|
|
|
vec2_set(&v2, 5.0f, 7.0f);
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_sceneitem_setscale(item, &v2);
|
2013-09-30 19:37:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static HWND CreateTestWindow(HINSTANCE instance)
|
|
|
|
{
|
|
|
|
WNDCLASS wc;
|
|
|
|
|
|
|
|
memset(&wc, 0, sizeof(wc));
|
|
|
|
wc.lpszClassName = L"bla";
|
|
|
|
wc.hbrBackground = (HBRUSH)COLOR_WINDOW;
|
|
|
|
wc.hInstance = instance;
|
|
|
|
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
|
|
|
|
wc.lpfnWndProc = (WNDPROC)sceneProc;
|
|
|
|
|
|
|
|
if (!RegisterClass(&wc))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return CreateWindow(L"bla", L"bla", WS_OVERLAPPEDWINDOW|WS_VISIBLE,
|
|
|
|
1920/2 - cx/2, 1080/2 - cy/2, cx, cy,
|
|
|
|
NULL, NULL, instance, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------- */
|
|
|
|
|
|
|
|
int WINAPI WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPSTR cmdLine,
|
|
|
|
int numCmd)
|
|
|
|
{
|
|
|
|
HWND hwnd = NULL;
|
2013-10-31 10:28:47 -07:00
|
|
|
base_set_log_handler(do_log);
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
try {
|
|
|
|
hwnd = CreateTestWindow(instance);
|
|
|
|
if (!hwnd)
|
|
|
|
throw "Couldn't create main window";
|
|
|
|
|
|
|
|
/* ------------------------------------------------------ */
|
|
|
|
/* create OBS */
|
2013-10-14 12:37:52 -07:00
|
|
|
CreateOBS(hwnd);
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
/* ------------------------------------------------------ */
|
|
|
|
/* load module */
|
2013-11-01 14:33:00 -07:00
|
|
|
if (obs_load_module("test-input") != 0)
|
2013-09-30 19:37:13 -07:00
|
|
|
throw "Couldn't load module";
|
|
|
|
|
|
|
|
/* ------------------------------------------------------ */
|
|
|
|
/* create source */
|
2013-10-14 12:37:52 -07:00
|
|
|
SourceContext source = obs_source_create(SOURCE_INPUT,
|
2013-09-30 19:37:13 -07:00
|
|
|
"random", NULL);
|
|
|
|
if (!source)
|
|
|
|
throw "Couldn't create random test source";
|
|
|
|
|
|
|
|
/* ------------------------------------------------------ */
|
|
|
|
/* create filter */
|
2013-10-14 12:37:52 -07:00
|
|
|
SourceContext filter = obs_source_create(SOURCE_FILTER,
|
2013-09-30 19:37:13 -07:00
|
|
|
"test", NULL);
|
|
|
|
if (!filter)
|
|
|
|
throw "Couldn't create test filter";
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_source_filter_add(source, filter);
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
/* ------------------------------------------------------ */
|
|
|
|
/* create scene and add source to scene (twice) */
|
2013-10-14 12:37:52 -07:00
|
|
|
SceneContext scene = obs_scene_create();
|
2013-09-30 19:37:13 -07:00
|
|
|
if (!scene)
|
|
|
|
throw "Couldn't create scene";
|
|
|
|
|
|
|
|
AddTestItems(scene, source);
|
|
|
|
|
|
|
|
/* ------------------------------------------------------ */
|
|
|
|
/* set the scene as the primary draw source and go */
|
2013-11-20 14:00:16 -08:00
|
|
|
obs_set_output_source(0, obs_scene_getsource(scene));
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
MSG msg;
|
|
|
|
while (GetMessage(&msg, NULL, 0, 0)) {
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (char *error) {
|
|
|
|
MessageBoxA(NULL, error, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
obs_shutdown();
|
|
|
|
|
2013-12-07 08:39:43 -08:00
|
|
|
blog(LOG_INFO, "Number of memory leaks: %llu", bnum_allocs());
|
2013-09-30 19:37:13 -07:00
|
|
|
DestroyWindow(hwnd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|