2017-06-28 21:21:42 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2017-07-18 14:45:30 +00:00
|
|
|
*/
|
2017-06-28 21:21:42 +00:00
|
|
|
|
|
|
|
#pragma once
|
2019-01-14 10:23:21 +00:00
|
|
|
#include <cinttypes>
|
2019-04-02 22:19:01 +00:00
|
|
|
#include <functional>
|
2017-11-05 19:05:48 +00:00
|
|
|
#include <list>
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2019-01-14 22:21:29 +00:00
|
|
|
// OBS
|
|
|
|
#ifdef _MSC_VER
|
2018-11-07 14:24:25 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201)
|
2019-01-14 22:21:29 +00:00
|
|
|
#endif
|
2018-04-23 15:53:27 +00:00
|
|
|
#include "obs-module.h"
|
|
|
|
#include "util/platform.h"
|
2019-01-14 22:21:29 +00:00
|
|
|
#ifdef _MSC_VER
|
2018-11-07 14:24:25 +00:00
|
|
|
#pragma warning(pop)
|
2019-01-14 22:21:29 +00:00
|
|
|
#endif
|
2017-06-28 21:21:42 +00:00
|
|
|
|
|
|
|
// Plugin
|
2018-11-07 14:24:25 +00:00
|
|
|
#define PLUGIN_NAME "Stream Effects"
|
2018-12-23 19:49:18 +00:00
|
|
|
#include "version.hpp"
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2019-04-19 07:42:15 +00:00
|
|
|
#define P_LOG(level, ...) blog(level, "[" PLUGIN_NAME "] " __VA_ARGS__)
|
2018-11-07 14:24:25 +00:00
|
|
|
#define P_LOG_ERROR(...) P_LOG(LOG_ERROR, __VA_ARGS__)
|
|
|
|
#define P_LOG_WARNING(...) P_LOG(LOG_WARNING, __VA_ARGS__)
|
|
|
|
#define P_LOG_INFO(...) P_LOG(LOG_INFO, __VA_ARGS__)
|
|
|
|
#define P_LOG_DEBUG(...) P_LOG(LOG_DEBUG, __VA_ARGS__)
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2017-11-05 19:05:48 +00:00
|
|
|
// Initializer & Finalizer
|
2019-08-04 14:20:26 +00:00
|
|
|
extern std::list<std::function<void()>> initializer_functions;
|
|
|
|
extern std::list<std::function<void()>> finalizer_functions;
|