/* * Modern effects for a modern Streamer * Copyright (C) 2020 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 */ #pragma once #include "warning-disable.hpp" // Common C includes #include #include #include #include #include #include #include #include #include // Common C++ includes #include #include #include #include #include #include #include #include #include #include #include #include #include "warning-enable.hpp" // Common Plugin includes #include "config.hpp" #include "strings.hpp" #include "version.hpp" #include "util/util-bitmask.hpp" #include "util/util-library.hpp" #include "util/util-math.hpp" #include "util/util-profiler.hpp" #include "util/util-threadpool.hpp" #include "util/utility.hpp" // Common OBS includes #include "warning-disable.hpp" extern "C" { #include #include #include #include #include #include #include #include #include #include #include #include #include #include // Fix libOBS's global defines #undef strtoll } #include "warning-enable.hpp" // Common Global defines /// Logging #define DLOG_(level, ...) blog(level, "[" S_PLUGIN_NAME "] " __VA_ARGS__) #define DLOG_ERROR(...) DLOG_(LOG_ERROR, __VA_ARGS__) #define DLOG_WARNING(...) DLOG_(LOG_WARNING, __VA_ARGS__) #define DLOG_INFO(...) DLOG_(LOG_INFO, __VA_ARGS__) #define DLOG_DEBUG(...) DLOG_(LOG_DEBUG, __VA_ARGS__) /// Currrent function name (as const char*) #ifdef _MSC_VER // Microsoft Visual Studio #define __FUNCTION_SIG__ __FUNCSIG__ #define __FUNCTION_NAME__ __func__ #elif defined(__GNUC__) || defined(__MINGW32__) // GCC and MinGW #define __FUNCTION_SIG__ __PRETTY_FUNCTION__ #define __FUNCTION_NAME__ __func__ #else // Any other compiler #define __FUNCTION_SIG__ __func__ #define __FUNCTION_NAME__ __func__ #endif /// Forceful inlining #ifndef FORCE_INLINE #ifdef _MSC_VER #define FORCE_INLINE __force_inline #elif defined(__GNUC__) || defined(__MINGW32__) #define FORCE_INLINE __attribute__((always_inline)) #else #define FORCE_INLINE inline #endif #endif