2017-06-28 21:21:42 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
2017-08-19 21:41:53 +00:00
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
2017-06-28 21:21:42 +00:00
|
|
|
*
|
|
|
|
* 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
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "plugin.hpp"
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2018-09-29 13:57:25 +00:00
|
|
|
#define P_TRANSLATE(x) obs_module_text(x)
|
|
|
|
#define P_DESC(x) x ".Description"
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2019-01-24 19:34:28 +00:00
|
|
|
#define T_FILEFILTERS_IMAGE "*.png *.webp *.tga *.tiff *.jpeg *.jpg *.bmp"
|
|
|
|
#define T_FILEFILTERS_VIDEO "*.mkv *.webm *.mp4 *.mov *.flv"
|
|
|
|
#define T_FILEFILTERS_SOUND "*.ogg *.flac *.mp3 *.wav"
|
|
|
|
#define T_FILEFILTERS_EFFECT "*.effect *.txt"
|
|
|
|
#define T_FILEFILTERS_ANY "*.*"
|
|
|
|
|
2019-04-02 01:05:05 +00:00
|
|
|
#define S_VERSION "Version"
|
|
|
|
|
2018-09-29 13:57:25 +00:00
|
|
|
#define S_ADVANCED "Advanced"
|
2019-01-24 19:34:28 +00:00
|
|
|
|
|
|
|
#define S_FILETYPE_IMAGE "FileType.Image"
|
|
|
|
#define S_FILETYPE_IMAGES "FileType.Images"
|
|
|
|
#define S_FILETYPE_VIDEO "FileType.Video"
|
|
|
|
#define S_FILETYPE_VIDEOS "FileType.Videos"
|
|
|
|
#define S_FILETYPE_SOUND "FileType.Sound"
|
|
|
|
#define S_FILETYPE_SOUNDS "FileType.Sounds"
|
|
|
|
#define S_FILETYPE_EFFECT "FileType.Effect"
|
|
|
|
#define S_FILETYPE_EFFECTS "FileType.Effects"
|
2018-09-29 13:57:25 +00:00
|
|
|
|
2019-04-02 01:05:05 +00:00
|
|
|
#define S_BLUR_TYPE_BOX "Blur.Type.Box"
|
|
|
|
#define S_BLUR_TYPE_BOX_LINEAR "Blur.Type.BoxLinear"
|
|
|
|
#define S_BLUR_TYPE_GAUSSIAN "Blur.Type.Gaussian"
|
|
|
|
#define S_BLUR_TYPE_GAUSSIAN_LINEAR "Blur.Type.GaussianLinear"
|
|
|
|
#define S_BLUR_TYPE_DUALFILTERING "Blur.Type.DualFiltering"
|
|
|
|
|
|
|
|
#define S_BLUR_SUBTYPE_AREA "Blur.Subtype.Area"
|
|
|
|
#define S_BLUR_SUBTYPE_DIRECTIONAL "Blur.Subtype.Directional"
|
|
|
|
#define S_BLUR_SUBTYPE_ROTATIONAL "Blur.Subtype.Rotational"
|
|
|
|
#define S_BLUR_SUBTYPE_ZOOM "Blur.Subtype.Zoom"
|
|
|
|
|
2019-01-24 19:18:04 +00:00
|
|
|
#define S_MIPGENERATOR "MipGenerator"
|
|
|
|
#define S_MIPGENERATOR_POINT "MipGenerator.Point"
|
|
|
|
#define S_MIPGENERATOR_LINEAR "MipGenerator.Linear"
|
|
|
|
#define S_MIPGENERATOR_SHARPEN "MipGenerator.Sharpen"
|
|
|
|
#define S_MIPGENERATOR_SMOOTHEN "MipGenerator.Smoothen"
|
|
|
|
#define S_MIPGENERATOR_BICUBIC "MipGenerator.Bicubic"
|
|
|
|
#define S_MIPGENERATOR_LANCZOS "MipGenerator.Lanczos"
|
2019-02-10 11:54:33 +00:00
|
|
|
#define S_MIPGENERATOR_INTENSITY "MipGenerator.Intensity"
|