2017-12-14 07:06:09 +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
|
|
|
|
*/
|
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "source-mirror.hpp"
|
2018-04-27 21:38:49 +00:00
|
|
|
#include <bitset>
|
2018-11-07 14:24:25 +00:00
|
|
|
#include <cstring>
|
2018-04-27 21:38:49 +00:00
|
|
|
#include <functional>
|
2018-11-07 14:24:25 +00:00
|
|
|
#include <memory>
|
2019-09-04 01:03:41 +00:00
|
|
|
#include <stdexcept>
|
2018-11-07 14:24:25 +00:00
|
|
|
#include <vector>
|
2019-04-02 17:55:45 +00:00
|
|
|
#include "obs/obs-source-tracker.hpp"
|
2019-02-11 02:54:16 +00:00
|
|
|
#include "obs/obs-tools.hpp"
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "strings.hpp"
|
2017-12-14 07:06:09 +00:00
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
// OBS
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201)
|
|
|
|
#endif
|
2018-11-08 07:08:38 +00:00
|
|
|
#include <media-io/audio-io.h>
|
|
|
|
#include <obs-config.h>
|
2019-01-14 10:23:21 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
2018-11-08 07:08:38 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
#define ST "Source.Mirror"
|
|
|
|
#define ST_SOURCE "Source.Mirror.Source"
|
|
|
|
#define ST_SOURCE_SIZE "Source.Mirror.Source.Size"
|
|
|
|
#define ST_AUDIO "Source.Mirror.Source.Audio"
|
|
|
|
#define ST_AUDIO_LAYOUT ST ".Audio.Layout"
|
2019-08-04 10:34:42 +00:00
|
|
|
#define ST_AUDIO_LAYOUT_(x) ST_AUDIO_LAYOUT "." D_VSTR(x)
|
2019-08-04 14:20:26 +00:00
|
|
|
#define ST_SCALING "Source.Mirror.Scaling"
|
|
|
|
#define ST_SCALING_METHOD "Source.Mirror.Scaling.Method"
|
|
|
|
#define ST_SCALING_METHOD_POINT "Source.Mirror.Scaling.Method.Point"
|
|
|
|
#define ST_SCALING_METHOD_BILINEAR "Source.Mirror.Scaling.Method.Bilinear"
|
|
|
|
#define ST_SCALING_METHOD_BICUBIC "Source.Mirror.Scaling.Method.Bicubic"
|
|
|
|
#define ST_SCALING_METHOD_LANCZOS "Source.Mirror.Scaling.Method.Lanczos"
|
|
|
|
#define ST_SCALING_SIZE "Source.Mirror.Scaling.Size"
|
|
|
|
#define ST_SCALING_TRANSFORMKEEPORIGINAL "Source.Mirror.Scaling.TransformKeepOriginal"
|
|
|
|
#define ST_SCALING_BOUNDS "Source.Mirror.Scaling.Bounds"
|
|
|
|
#define ST_SCALING_BOUNDS_STRETCH "Source.Mirror.Scaling.Bounds.Stretch"
|
|
|
|
#define ST_SCALING_BOUNDS_FIT "Source.Mirror.Scaling.Bounds.Fit"
|
|
|
|
#define ST_SCALING_BOUNDS_FILL "Source.Mirror.Scaling.Bounds.Fill"
|
|
|
|
#define ST_SCALING_BOUNDS_FILLWIDTH "Source.Mirror.Scaling.Bounds.FillWidth"
|
|
|
|
#define ST_SCALING_BOUNDS_FILLHEIGHT "Source.Mirror.Scaling.Bounds.FillHeight"
|
|
|
|
#define ST_SCALING_ALIGNMENT "Source.Mirror.Scaling.Alignment"
|
2017-12-14 07:06:09 +00:00
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::release_input()
|
2019-01-23 20:05:10 +00:00
|
|
|
{
|
|
|
|
// Clear any references to the previous source.
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_source_item) {
|
|
|
|
obs_sceneitem_remove(this->_source_item);
|
|
|
|
this->_source_item = nullptr;
|
2019-01-23 20:05:10 +00:00
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_source.reset();
|
2019-01-23 20:05:10 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::acquire_input(std::string source_name)
|
2019-01-23 20:05:10 +00:00
|
|
|
{
|
|
|
|
// Acquire new reference to current source.
|
|
|
|
obs_source_t* ref_source = obs_get_source_by_name(source_name.c_str());
|
|
|
|
if (!ref_source) {
|
|
|
|
// Early-Exit: Unable to find a source with this name, likely has been released.
|
|
|
|
#ifdef _DEBUG
|
2019-08-04 14:20:26 +00:00
|
|
|
P_LOG_DEBUG("<Source Mirror:%s> Unable to find target source '%s'.", obs_source_get_name(this->_self),
|
2019-01-23 20:05:10 +00:00
|
|
|
source_name.c_str());
|
|
|
|
#endif
|
|
|
|
return;
|
2019-08-04 14:20:26 +00:00
|
|
|
} else if (ref_source == this->_self) {
|
2019-01-23 20:05:10 +00:00
|
|
|
// Early-Exit: Attempted self-mirror (recursion).
|
|
|
|
#ifdef _DEBUG
|
2019-08-04 14:20:26 +00:00
|
|
|
P_LOG_DEBUG("<Source Mirror:%s> Attempted to mirror _self.", obs_source_get_name(this->_self));
|
2019-01-23 20:05:10 +00:00
|
|
|
#endif
|
2019-01-23 22:23:49 +00:00
|
|
|
obs_source_release(ref_source);
|
2019-01-23 20:05:10 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-23 22:23:49 +00:00
|
|
|
std::shared_ptr<obs::source> new_source = std::make_shared<obs::source>(ref_source, true, false);
|
|
|
|
|
2019-01-23 20:05:10 +00:00
|
|
|
// It looks like everything is in order, so continue now.
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_source_item = obs_scene_add(obs_scene_from_source(this->_scene->get()), new_source->get());
|
|
|
|
if (!this->_source_item) {
|
2019-01-23 20:05:10 +00:00
|
|
|
// Late-Exit: OBS detected something bad, so no further action will be taken.
|
|
|
|
#ifdef _DEBUG
|
2019-08-04 14:20:26 +00:00
|
|
|
P_LOG_DEBUG("<Source Mirror:%s> Attempted recursion with scene '%s'.", obs_source_get_name(this->_self),
|
2019-01-23 20:05:10 +00:00
|
|
|
source_name.c_str());
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If everything worked fine, we now set everything up.
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_source = new_source;
|
|
|
|
this->_source->events.rename += std::bind(&source::mirror::mirror_instance::on_source_rename, this,
|
2019-08-24 10:59:32 +00:00
|
|
|
std::placeholders::_1, std::placeholders::_2, std::placeholders::_3);
|
2019-08-04 14:20:26 +00:00
|
|
|
if ((obs_source_get_output_flags(this->_source->get()) & OBS_SOURCE_AUDIO) != 0) {
|
|
|
|
this->_source->events.audio_data +=
|
2019-04-02 17:44:48 +00:00
|
|
|
std::bind(&source::mirror::mirror_instance::on_audio_data, this, std::placeholders::_1,
|
|
|
|
std::placeholders::_2, std::placeholders::_3);
|
2019-01-23 20:05:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-15 11:34:47 +00:00
|
|
|
source::mirror::mirror_instance::mirror_instance(obs_data_t* settings, obs_source_t* self)
|
|
|
|
: obs::source_instance(settings, self), _active(true), _tick(0), _scene_rendered(false), _rescale_alignment(0),
|
|
|
|
_rescale_enabled(false), _rescale_width(1), _rescale_height(1), _rescale_keep_orig_size(false),
|
2019-10-13 04:20:41 +00:00
|
|
|
_rescale_type(obs_scale_type::OBS_SCALE_BICUBIC), _rescale_bounds(obs_bounds_type::OBS_BOUNDS_STRETCH),
|
|
|
|
_audio_enabled(false), _audio_kill_thread(false), _audio_have_output(false), _audio_layout(SPEAKERS_UNKNOWN),
|
|
|
|
_source_item(nullptr)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-01-24 00:12:48 +00:00
|
|
|
// Initialize Video Rendering
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_scene =
|
2019-01-24 00:12:48 +00:00
|
|
|
std::make_shared<obs::source>(obs_scene_get_source(obs_scene_create_private("Source Mirror Internal Scene")));
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_scene_texture_renderer =
|
|
|
|
std::make_shared<gfx::source_texture>(this->_scene, std::make_shared<obs::source>(this->_self, false, false));
|
2019-01-24 00:12:48 +00:00
|
|
|
|
|
|
|
// Initialize Audio Rendering
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_audio_thread = std::thread(std::bind(&source::mirror::mirror_instance::audio_output_cb, this));
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
source::mirror::mirror_instance::~mirror_instance()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-01-23 20:05:10 +00:00
|
|
|
release_input();
|
|
|
|
|
|
|
|
// Finalize Audio Rendering
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_audio_kill_thread = true;
|
|
|
|
this->_audio_notify.notify_all();
|
|
|
|
if (this->_audio_thread.joinable()) {
|
|
|
|
this->_audio_thread.join();
|
2018-11-07 14:29:24 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 20:05:10 +00:00
|
|
|
// Finalize Video Rendering
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_scene_texture_renderer.reset();
|
|
|
|
this->_scene.reset();
|
2018-04-27 21:38:49 +00:00
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
uint32_t source::mirror::mirror_instance::get_width()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_source) {
|
|
|
|
if ((obs_source_get_output_flags(this->_source->get()) & OBS_SOURCE_VIDEO) == 0) {
|
2019-04-03 00:58:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_rescale_enabled && this->_rescale_width > 0 && !this->_rescale_keep_orig_size) {
|
|
|
|
return this->_rescale_width;
|
2019-04-02 20:10:23 +00:00
|
|
|
} else {
|
2019-08-04 14:20:26 +00:00
|
|
|
return _source->width();
|
2019-04-02 20:10:23 +00:00
|
|
|
}
|
2018-04-24 11:48:42 +00:00
|
|
|
}
|
2019-04-02 20:10:23 +00:00
|
|
|
return 0;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
uint32_t source::mirror::mirror_instance::get_height()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_source) {
|
|
|
|
if ((obs_source_get_output_flags(this->_source->get()) & OBS_SOURCE_VIDEO) == 0) {
|
2019-04-03 00:58:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_rescale_enabled && this->_rescale_height > 0 && !this->_rescale_keep_orig_size) {
|
|
|
|
return this->_rescale_height;
|
2019-04-02 20:10:23 +00:00
|
|
|
} else {
|
2019-08-04 14:20:26 +00:00
|
|
|
return _source->height();
|
2019-04-02 20:10:23 +00:00
|
|
|
}
|
2018-11-07 13:11:38 +00:00
|
|
|
}
|
2019-04-02 20:10:23 +00:00
|
|
|
return 0;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::update(obs_data_t* data)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-01-23 20:05:10 +00:00
|
|
|
{ // User changed the source we are tracking.
|
|
|
|
release_input();
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_source_name = obs_data_get_string(data, ST_SOURCE);
|
|
|
|
if (this->_source_name.length() > 0) {
|
|
|
|
acquire_input(this->_source_name);
|
2018-03-05 15:50:19 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-23 20:05:10 +00:00
|
|
|
|
|
|
|
// Audio
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_audio_enabled = obs_data_get_bool(data, ST_AUDIO);
|
|
|
|
this->_audio_layout = static_cast<speaker_layout>(obs_data_get_int(data, ST_AUDIO_LAYOUT));
|
2017-12-14 07:06:09 +00:00
|
|
|
|
|
|
|
// Rescaling
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_rescale_enabled = obs_data_get_bool(data, ST_SCALING);
|
|
|
|
if (this->_rescale_enabled) { // Parse rescaling settings.
|
2017-12-14 07:06:09 +00:00
|
|
|
uint32_t width, height;
|
|
|
|
|
|
|
|
// Read value.
|
2019-08-04 14:20:26 +00:00
|
|
|
const char* size = obs_data_get_string(data, ST_SCALING_SIZE);
|
2017-12-14 07:06:09 +00:00
|
|
|
const char* xpos = strchr(size, 'x');
|
|
|
|
if (xpos != nullptr) {
|
|
|
|
// Width
|
|
|
|
width = strtoul(size, nullptr, 10);
|
|
|
|
if (errno == ERANGE || width == 0) {
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_rescale_enabled = false;
|
|
|
|
this->_rescale_width = 1;
|
2017-12-14 07:06:09 +00:00
|
|
|
} else {
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_rescale_width = width;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
height = strtoul(xpos + 1, nullptr, 10);
|
|
|
|
if (errno == ERANGE || height == 0) {
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_rescale_enabled = false;
|
|
|
|
this->_rescale_height = 1;
|
2017-12-14 07:06:09 +00:00
|
|
|
} else {
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_rescale_height = height;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
} else {
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_rescale_enabled = false;
|
|
|
|
this->_rescale_width = 1;
|
|
|
|
this->_rescale_height = 1;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_rescale_keep_orig_size = obs_data_get_bool(data, ST_SCALING_TRANSFORMKEEPORIGINAL);
|
|
|
|
this->_rescale_type = static_cast<obs_scale_type>(obs_data_get_int(data, ST_SCALING_METHOD));
|
|
|
|
this->_rescale_bounds = static_cast<obs_bounds_type>(obs_data_get_int(data, ST_SCALING_BOUNDS));
|
2019-10-13 04:20:41 +00:00
|
|
|
this->_rescale_alignment = static_cast<uint32_t>(obs_data_get_int(data, ST_SCALING_ALIGNMENT));
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::activate()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_active = true;
|
2019-01-23 20:05:10 +00:00
|
|
|
|
|
|
|
// No source, delayed acquire.
|
2019-08-04 14:20:26 +00:00
|
|
|
if (!this->_source_item && this->_source_name.length() > 0) {
|
|
|
|
this->acquire_input(this->_source_name.c_str());
|
2018-04-24 13:31:51 +00:00
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::deactivate()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_active = false;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::video_tick(float time)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_tick += time;
|
|
|
|
if (this->_tick > 0.1f) {
|
|
|
|
this->_tick -= 0.1f;
|
2018-04-24 15:02:30 +00:00
|
|
|
|
2019-01-23 20:05:10 +00:00
|
|
|
// No source, delayed acquire.
|
2019-08-04 14:20:26 +00:00
|
|
|
if (!this->_source_item && this->_source_name.length() > 0) {
|
|
|
|
this->acquire_input(this->_source_name.c_str());
|
2018-04-24 15:02:30 +00:00
|
|
|
}
|
2018-04-24 13:31:51 +00:00
|
|
|
}
|
2019-01-24 03:27:04 +00:00
|
|
|
|
|
|
|
// Update Scene Item Boundaries
|
2019-08-04 14:20:26 +00:00
|
|
|
if ((this->_source_item && this->_source)
|
|
|
|
&& ((obs_source_get_output_flags(this->_source->get()) & OBS_SOURCE_VIDEO) != 0)) {
|
2019-01-24 03:27:04 +00:00
|
|
|
obs_transform_info info;
|
2019-04-02 20:10:23 +00:00
|
|
|
info.pos.x = 0;
|
|
|
|
info.pos.y = 0;
|
|
|
|
info.rot = 0;
|
|
|
|
info.scale.x = 1.f;
|
|
|
|
info.scale.y = 1.f;
|
2019-05-28 17:55:22 +00:00
|
|
|
info.alignment = OBS_ALIGN_LEFT | OBS_ALIGN_TOP;
|
2019-04-02 20:10:23 +00:00
|
|
|
info.bounds.x = float_t(this->get_width());
|
|
|
|
info.bounds.y = float_t(this->get_height());
|
2019-08-04 14:20:26 +00:00
|
|
|
info.bounds_alignment = _rescale_alignment;
|
2019-04-02 20:10:23 +00:00
|
|
|
info.bounds_type = obs_bounds_type::OBS_BOUNDS_STRETCH;
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_rescale_enabled) {
|
|
|
|
info.bounds_type = this->_rescale_bounds;
|
2019-01-24 03:27:04 +00:00
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
obs_sceneitem_set_info(this->_source_item, &info);
|
|
|
|
obs_sceneitem_force_update_transform(this->_source_item);
|
2019-08-24 10:59:32 +00:00
|
|
|
obs_sceneitem_set_scale_filter(this->_source_item,
|
|
|
|
this->_rescale_enabled ? this->_rescale_type : obs_scale_type::OBS_SCALE_POINT);
|
2019-01-24 03:27:04 +00:00
|
|
|
}
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
_scene_rendered = false;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::video_render(gs_effect_t* effect)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
if ((this->_rescale_width == 0) || (this->_rescale_height == 0) || !this->_source_item
|
|
|
|
|| !this->_scene_texture_renderer || !this->_source) {
|
2017-12-14 07:06:09 +00:00
|
|
|
return;
|
2018-03-05 15:50:19 +00:00
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
|
2019-01-31 01:57:18 +00:00
|
|
|
// Don't bother rendering sources that aren't video.
|
2019-08-04 14:20:26 +00:00
|
|
|
if ((obs_source_get_output_flags(this->_source->get()) & OBS_SOURCE_VIDEO) == 0) {
|
2019-01-31 01:57:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-16 02:54:40 +00:00
|
|
|
GS_DEBUG_MARKER_BEGIN_FORMAT(GS_DEBUG_COLOR_SOURCE, "Source Mirror: %s", obs_source_get_name(_source->get()));
|
|
|
|
|
2019-01-24 03:27:04 +00:00
|
|
|
// Only re-render the scene if there was a video_tick, saves GPU cycles.
|
2019-08-04 14:20:26 +00:00
|
|
|
if (!_scene_rendered) {
|
2019-10-16 02:54:40 +00:00
|
|
|
GS_DEBUG_MARKER_BEGIN_FORMAT(GS_DEBUG_COLOR_RENDER_VIDEO, "Cache: %s",
|
|
|
|
obs_source_get_name(_source->get()));
|
2019-01-24 03:27:04 +00:00
|
|
|
// Override render size if rescaling is enabled.
|
2019-08-04 14:20:26 +00:00
|
|
|
uint32_t render_width = this->_source->width();
|
|
|
|
uint32_t render_height = this->_source->height();
|
|
|
|
if (_rescale_enabled) {
|
|
|
|
render_width = _rescale_width;
|
|
|
|
render_height = _rescale_height;
|
2018-04-09 11:23:57 +00:00
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
|
2019-08-04 10:34:42 +00:00
|
|
|
if (!render_width || !render_height) {
|
|
|
|
// Don't render if width or height are 0.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-31 01:57:18 +00:00
|
|
|
try {
|
2019-08-04 14:20:26 +00:00
|
|
|
_scene_texture = this->_scene_texture_renderer->render(render_width, render_height);
|
|
|
|
_scene_rendered = true;
|
2019-01-31 01:57:18 +00:00
|
|
|
} catch (...) {
|
|
|
|
// If we fail to render the source, just render nothing.
|
|
|
|
return;
|
|
|
|
}
|
2019-10-16 02:54:40 +00:00
|
|
|
GS_DEBUG_MARKER_END();
|
2019-01-24 03:27:04 +00:00
|
|
|
}
|
2018-11-08 07:08:38 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_scene_texture) {
|
2019-04-02 20:10:23 +00:00
|
|
|
// Use default effect unless we are provided a different effect.
|
|
|
|
if (!effect) {
|
|
|
|
effect = obs_get_base_effect(OBS_EFFECT_DEFAULT);
|
|
|
|
}
|
2018-11-08 07:08:38 +00:00
|
|
|
|
2019-04-02 20:10:23 +00:00
|
|
|
// Render the cached scene texture.
|
2019-08-04 14:20:26 +00:00
|
|
|
gs_effect_set_texture(gs_effect_get_param_by_name(effect, "image"), _scene_texture->get_object());
|
2019-04-02 20:10:23 +00:00
|
|
|
while (gs_effect_loop(effect, "Draw")) {
|
2019-08-04 14:20:26 +00:00
|
|
|
gs_draw_sprite(_scene_texture->get_object(), 0, this->get_width(), this->get_height());
|
2019-04-02 20:10:23 +00:00
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
2019-10-16 02:54:40 +00:00
|
|
|
|
|
|
|
GS_DEBUG_MARKER_END();
|
|
|
|
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
2018-04-24 11:48:42 +00:00
|
|
|
|
2019-10-13 04:20:41 +00:00
|
|
|
void source::mirror::mirror_instance::audio_output_cb() noexcept try {
|
2019-08-04 14:20:26 +00:00
|
|
|
std::unique_lock<std::mutex> ulock(this->_audio_lock_outputter);
|
2018-04-27 21:38:49 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
while (!this->_audio_kill_thread) {
|
|
|
|
this->_audio_notify.wait(ulock, [this]() { return this->_audio_have_output || this->_audio_kill_thread; });
|
2019-04-03 00:58:54 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_audio_have_output) { // Get used audio element
|
2019-04-03 00:58:54 +00:00
|
|
|
std::shared_ptr<mirror_audio_data> mad;
|
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
std::lock_guard<std::mutex> capture_lock(this->_audio_lock_capturer);
|
|
|
|
if (_audio_data_queue.size() > 0) {
|
|
|
|
mad = _audio_data_queue.front();
|
|
|
|
_audio_data_queue.pop();
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_audio_data_queue.size() == 0) {
|
|
|
|
this->_audio_have_output = false;
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mad) {
|
|
|
|
ulock.unlock();
|
2019-08-04 14:20:26 +00:00
|
|
|
obs_source_output_audio(this->_self, &mad->audio);
|
2019-04-03 00:58:54 +00:00
|
|
|
ulock.lock();
|
|
|
|
|
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
std::lock_guard<std::mutex> capture_lock(this->_audio_lock_capturer);
|
|
|
|
_audio_data_free_queue.push(mad);
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-27 21:38:49 +00:00
|
|
|
}
|
2019-10-13 04:20:41 +00:00
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
P_LOG_ERROR("Unexpected exception in function '%s': %s.", __FUNCTION_NAME__, ex.what());
|
2019-09-05 16:42:28 +00:00
|
|
|
} catch (...) {
|
|
|
|
P_LOG_ERROR("Unexpected exception in function '%s'.", __FUNCTION_NAME__);
|
2018-04-27 21:38:49 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::enum_active_sources(obs_source_enum_proc_t enum_callback, void* param)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_scene) {
|
|
|
|
enum_callback(this->_self, this->_scene->get(), param);
|
2018-11-08 07:08:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-15 11:34:47 +00:00
|
|
|
void source::mirror::mirror_instance::enum_all_sources(obs_source_enum_proc_t enum_callback, void* param)
|
|
|
|
{
|
|
|
|
if (this->_scene) {
|
|
|
|
enum_callback(this->_self, this->_scene->get(), param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::load(obs_data_t* data)
|
2019-01-23 22:23:49 +00:00
|
|
|
{
|
2019-01-23 21:25:48 +00:00
|
|
|
this->update(data);
|
|
|
|
}
|
2018-11-08 07:08:38 +00:00
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::save(obs_data_t* data)
|
2018-11-08 07:08:38 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
if (!this->_source_item || !this->_source) {
|
2019-04-02 20:10:23 +00:00
|
|
|
return;
|
2018-11-08 07:08:38 +00:00
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
obs_data_set_string(data, ST_SOURCE, obs_source_get_name(_source->get()));
|
2018-11-08 07:08:38 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 22:33:12 +00:00
|
|
|
void source::mirror::mirror_instance::on_source_rename(obs::source* source, std::string, std::string)
|
2019-01-14 22:52:12 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
obs_data_t* ref = obs_source_get_settings(this->_self);
|
|
|
|
obs_data_set_string(ref, ST_SOURCE, obs_source_get_name(source->get()));
|
|
|
|
obs_source_update(this->_self, ref);
|
2018-11-08 07:08:38 +00:00
|
|
|
obs_data_release(ref);
|
2018-04-24 11:48:42 +00:00
|
|
|
}
|
2019-04-02 17:44:48 +00:00
|
|
|
|
2019-04-02 20:10:23 +00:00
|
|
|
void source::mirror::mirror_instance::on_audio_data(obs::source*, const audio_data* audio, bool)
|
2019-04-02 17:44:48 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
if (!this->_audio_enabled) {
|
2019-04-02 17:44:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
audio_t* aud = obs_get_audio();
|
|
|
|
if (!aud) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
audio_output_info const* aoi = audio_output_get_info(aud);
|
|
|
|
if (!aoi) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-03 00:58:54 +00:00
|
|
|
std::shared_ptr<mirror_audio_data> mad;
|
|
|
|
{ // Get free audio data element.
|
2019-08-04 14:20:26 +00:00
|
|
|
std::lock_guard<std::mutex> capture_lock(this->_audio_lock_capturer);
|
|
|
|
if (_audio_data_free_queue.size() > 0) {
|
|
|
|
mad = _audio_data_free_queue.front();
|
|
|
|
_audio_data_free_queue.pop();
|
2019-04-03 00:58:54 +00:00
|
|
|
} else {
|
|
|
|
mad = std::make_shared<mirror_audio_data>();
|
|
|
|
mad->data.resize(MAX_AUDIO_CHANNELS);
|
|
|
|
for (size_t idx = 0; idx < mad->data.size(); idx++) {
|
|
|
|
mad->data[idx].resize(AUDIO_OUTPUT_FRAMES);
|
|
|
|
}
|
2019-04-02 17:44:48 +00:00
|
|
|
}
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{ // Copy data
|
|
|
|
std::bitset<8> layout;
|
|
|
|
for (size_t plane = 0; plane < MAX_AV_PLANES; plane++) {
|
2019-04-19 07:42:15 +00:00
|
|
|
float* samples = reinterpret_cast<float_t*>(audio->data[plane]);
|
2019-04-03 00:58:54 +00:00
|
|
|
if (!samples) {
|
|
|
|
mad->audio.data[plane] = nullptr;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
layout.set(plane);
|
2019-04-02 17:44:48 +00:00
|
|
|
|
2019-04-03 00:58:54 +00:00
|
|
|
memcpy(mad->data[plane].data(), audio->data[plane], audio->frames * sizeof(float_t));
|
|
|
|
mad->audio.data[plane] = reinterpret_cast<uint8_t*>(mad->data[plane].data());
|
|
|
|
}
|
2019-08-24 10:59:32 +00:00
|
|
|
mad->audio.format = aoi->format;
|
2019-04-03 00:58:54 +00:00
|
|
|
mad->audio.frames = audio->frames;
|
|
|
|
mad->audio.timestamp = audio->timestamp;
|
|
|
|
mad->audio.samples_per_sec = aoi->samples_per_sec;
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_audio_layout != SPEAKERS_UNKNOWN) {
|
|
|
|
mad->audio.speakers = this->_audio_layout;
|
2019-08-04 10:34:42 +00:00
|
|
|
} else {
|
|
|
|
mad->audio.speakers = aoi->speakers;
|
|
|
|
}
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{ // Push used audio data element.
|
2019-08-04 14:20:26 +00:00
|
|
|
std::lock_guard<std::mutex> capture_lock(this->_audio_lock_capturer);
|
|
|
|
_audio_data_queue.push(mad);
|
2019-04-02 17:44:48 +00:00
|
|
|
}
|
|
|
|
|
2019-04-03 00:58:54 +00:00
|
|
|
{ // Signal other side.
|
2019-08-04 14:20:26 +00:00
|
|
|
std::lock_guard<std::mutex> output_lock(this->_audio_lock_outputter);
|
|
|
|
this->_audio_have_output = true;
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_audio_notify.notify_all();
|
2019-04-02 17:44:48 +00:00
|
|
|
}
|
2019-10-15 11:34:47 +00:00
|
|
|
|
|
|
|
std::shared_ptr<source::mirror::mirror_factory> source::mirror::mirror_factory::factory_instance;
|
|
|
|
|
|
|
|
source::mirror::mirror_factory::mirror_factory()
|
|
|
|
{
|
|
|
|
_info.id = "obs-stream-effects-source-mirror";
|
|
|
|
_info.type = OBS_SOURCE_TYPE_INPUT;
|
|
|
|
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_AUDIO | OBS_SOURCE_CUSTOM_DRAW;
|
|
|
|
|
|
|
|
obs_register_source(&_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
source::mirror::mirror_factory::~mirror_factory() {}
|
|
|
|
|
|
|
|
const char* source::mirror::mirror_factory::get_name()
|
|
|
|
{
|
|
|
|
return D_TRANSLATE(ST);
|
|
|
|
}
|
|
|
|
|
|
|
|
void source::mirror::mirror_factory::get_defaults2(obs_data_t* data)
|
|
|
|
{
|
|
|
|
obs_data_set_default_string(data, ST_SOURCE, "");
|
|
|
|
obs_data_set_default_bool(data, ST_AUDIO, false);
|
|
|
|
obs_data_set_default_int(data, ST_AUDIO_LAYOUT, static_cast<int64_t>(SPEAKERS_UNKNOWN));
|
|
|
|
obs_data_set_default_bool(data, ST_SCALING, false);
|
|
|
|
obs_data_set_default_string(data, ST_SCALING_SIZE, "100x100");
|
|
|
|
obs_data_set_default_int(data, ST_SCALING_METHOD, (int64_t)obs_scale_type::OBS_SCALE_BILINEAR);
|
|
|
|
obs_data_set_default_bool(data, ST_SCALING_TRANSFORMKEEPORIGINAL, false);
|
|
|
|
obs_data_set_default_int(data, ST_SCALING_BOUNDS, (int64_t)obs_bounds_type::OBS_BOUNDS_STRETCH);
|
|
|
|
obs_data_set_default_int(data, ST_SCALING_ALIGNMENT, OBS_ALIGN_CENTER);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool modified_properties(obs_properties_t* pr, obs_property_t* p, obs_data_t* data) noexcept try {
|
|
|
|
if (obs_properties_get(pr, ST_SOURCE) == p) {
|
|
|
|
obs_source_t* target = obs_get_source_by_name(obs_data_get_string(data, ST_SOURCE));
|
|
|
|
if (target) {
|
|
|
|
std::vector<char> buf(256);
|
|
|
|
snprintf(buf.data(), buf.size(), "%" PRIu32 "x%" PRIu32, obs_source_get_width(target),
|
|
|
|
obs_source_get_height(target));
|
|
|
|
obs_data_set_string(data, ST_SOURCE_SIZE, buf.data());
|
|
|
|
} else {
|
|
|
|
obs_data_set_string(data, ST_SOURCE_SIZE, "0x0");
|
|
|
|
}
|
|
|
|
obs_source_release(target);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (obs_properties_get(pr, ST_AUDIO) == p) {
|
|
|
|
bool show = obs_data_get_bool(data, ST_AUDIO);
|
|
|
|
obs_property_set_visible(obs_properties_get(pr, ST_AUDIO_LAYOUT), show);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (obs_properties_get(pr, ST_SCALING) == p) {
|
|
|
|
bool show = obs_data_get_bool(data, ST_SCALING);
|
|
|
|
obs_property_set_visible(obs_properties_get(pr, ST_SCALING_METHOD), show);
|
|
|
|
obs_property_set_visible(obs_properties_get(pr, ST_SCALING_SIZE), show);
|
|
|
|
obs_property_set_visible(obs_properties_get(pr, ST_SCALING_BOUNDS), show);
|
|
|
|
obs_property_set_visible(obs_properties_get(pr, ST_SCALING_ALIGNMENT), show);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (obs_properties_get(pr, ST_SCALING_BOUNDS) == p) {
|
|
|
|
obs_bounds_type scaling_type = static_cast<obs_bounds_type>(obs_data_get_int(data, ST_SCALING_BOUNDS));
|
|
|
|
obs_property_t* p2 = obs_properties_get(pr, ST_SCALING_BOUNDS);
|
|
|
|
switch (scaling_type) {
|
|
|
|
case obs_bounds_type::OBS_BOUNDS_STRETCH:
|
|
|
|
obs_property_set_long_description(p2, D_TRANSLATE(D_DESC(ST_SCALING_BOUNDS_STRETCH)));
|
|
|
|
break;
|
|
|
|
case obs_bounds_type::OBS_BOUNDS_SCALE_INNER:
|
|
|
|
obs_property_set_long_description(p2, D_TRANSLATE(D_DESC(ST_SCALING_BOUNDS_FIT)));
|
|
|
|
break;
|
|
|
|
case obs_bounds_type::OBS_BOUNDS_SCALE_OUTER:
|
|
|
|
obs_property_set_long_description(p2, D_TRANSLATE(D_DESC(ST_SCALING_BOUNDS_FILL)));
|
|
|
|
break;
|
|
|
|
case obs_bounds_type::OBS_BOUNDS_SCALE_TO_WIDTH:
|
|
|
|
obs_property_set_long_description(p2, D_TRANSLATE(D_DESC(ST_SCALING_BOUNDS_FILLWIDTH)));
|
|
|
|
break;
|
|
|
|
case obs_bounds_type::OBS_BOUNDS_SCALE_TO_HEIGHT:
|
|
|
|
obs_property_set_long_description(p2, D_TRANSLATE(D_DESC(ST_SCALING_BOUNDS_FILLHEIGHT)));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
obs_property_set_long_description(p2, D_TRANSLATE(D_DESC(ST_SCALING_BOUNDS)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
P_LOG_ERROR("Unexpected exception in function '%s': %s.", __FUNCTION_NAME__, ex.what());
|
|
|
|
return false;
|
|
|
|
} catch (...) {
|
|
|
|
P_LOG_ERROR("Unexpected exception in function '%s'.", __FUNCTION_NAME__);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
obs_properties_t* source::mirror::mirror_factory::get_properties2(source::mirror::mirror_instance* data)
|
|
|
|
{
|
|
|
|
obs_properties_t* pr = obs_properties_create();
|
|
|
|
obs_property_t* p = nullptr;
|
|
|
|
|
|
|
|
p = obs_properties_add_list(pr, ST_SOURCE, D_TRANSLATE(ST_SOURCE), OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_STRING);
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SOURCE)));
|
|
|
|
obs_property_set_modified_callback(p, modified_properties);
|
|
|
|
obs_property_list_add_string(p, "", "");
|
|
|
|
obs::source_tracker::get()->enumerate(
|
|
|
|
[&p](std::string name, obs_source_t*) {
|
|
|
|
obs_property_list_add_string(p, std::string(name + " (Source)").c_str(), name.c_str());
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
obs::source_tracker::filter_sources);
|
|
|
|
obs::source_tracker::get()->enumerate(
|
|
|
|
[&p](std::string name, obs_source_t*) {
|
|
|
|
obs_property_list_add_string(p, std::string(name + " (Scene)").c_str(), name.c_str());
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
obs::source_tracker::filter_scenes);
|
|
|
|
|
|
|
|
p = obs_properties_add_text(pr, ST_SOURCE_SIZE, D_TRANSLATE(ST_SOURCE_SIZE), OBS_TEXT_DEFAULT);
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SOURCE_SIZE)));
|
|
|
|
obs_property_set_enabled(p, false);
|
|
|
|
|
|
|
|
p = obs_properties_add_bool(pr, ST_AUDIO, D_TRANSLATE(ST_AUDIO));
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_AUDIO)));
|
|
|
|
obs_property_set_modified_callback(p, modified_properties);
|
|
|
|
p = obs_properties_add_list(pr, ST_AUDIO_LAYOUT, D_TRANSLATE(ST_AUDIO_LAYOUT), OBS_COMBO_TYPE_LIST,
|
|
|
|
OBS_COMBO_FORMAT_INT);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(Unknown)), static_cast<int64_t>(SPEAKERS_UNKNOWN));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(Mono)), static_cast<int64_t>(SPEAKERS_MONO));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(Stereo)), static_cast<int64_t>(SPEAKERS_STEREO));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(StereoLFE)), static_cast<int64_t>(SPEAKERS_2POINT1));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(Quadraphonic)), static_cast<int64_t>(SPEAKERS_4POINT0));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(QuadraphonicLFE)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_4POINT1));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(Surround)), static_cast<int64_t>(SPEAKERS_5POINT1));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_AUDIO_LAYOUT_(FullSurround)), static_cast<int64_t>(SPEAKERS_7POINT1));
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_AUDIO_LAYOUT)));
|
|
|
|
|
|
|
|
p = obs_properties_add_bool(pr, ST_SCALING, D_TRANSLATE(ST_SCALING));
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SCALING)));
|
|
|
|
obs_property_set_modified_callback(p, modified_properties);
|
|
|
|
|
|
|
|
p = obs_properties_add_list(pr, ST_SCALING_METHOD, D_TRANSLATE(ST_SCALING_METHOD), OBS_COMBO_TYPE_LIST,
|
|
|
|
OBS_COMBO_FORMAT_INT);
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SCALING_METHOD)));
|
|
|
|
obs_property_set_modified_callback(p, modified_properties);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_METHOD_POINT), (int64_t)obs_scale_type::OBS_SCALE_POINT);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_METHOD_BILINEAR), (int64_t)obs_scale_type::OBS_SCALE_BILINEAR);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_METHOD_BICUBIC), (int64_t)obs_scale_type::OBS_SCALE_BICUBIC);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_METHOD_LANCZOS), (int64_t)obs_scale_type::OBS_SCALE_LANCZOS);
|
|
|
|
|
|
|
|
p = obs_properties_add_text(pr, ST_SCALING_SIZE, D_TRANSLATE(ST_SCALING_SIZE), OBS_TEXT_DEFAULT);
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SCALING_SIZE)));
|
|
|
|
|
|
|
|
p = obs_properties_add_bool(pr, ST_SCALING_TRANSFORMKEEPORIGINAL, D_TRANSLATE(ST_SCALING_TRANSFORMKEEPORIGINAL));
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SCALING_TRANSFORMKEEPORIGINAL)));
|
|
|
|
|
|
|
|
p = obs_properties_add_list(pr, ST_SCALING_BOUNDS, D_TRANSLATE(ST_SCALING_BOUNDS), OBS_COMBO_TYPE_LIST,
|
|
|
|
OBS_COMBO_FORMAT_INT);
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SCALING_BOUNDS)));
|
|
|
|
obs_property_set_modified_callback(p, modified_properties);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_BOUNDS_STRETCH), (int64_t)obs_bounds_type::OBS_BOUNDS_STRETCH);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_BOUNDS_FIT), (int64_t)obs_bounds_type::OBS_BOUNDS_SCALE_INNER);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_BOUNDS_FILL), (int64_t)obs_bounds_type::OBS_BOUNDS_SCALE_OUTER);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_BOUNDS_FILLWIDTH),
|
|
|
|
(int64_t)obs_bounds_type::OBS_BOUNDS_SCALE_TO_WIDTH);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SCALING_BOUNDS_FILLHEIGHT),
|
|
|
|
(int64_t)obs_bounds_type::OBS_BOUNDS_SCALE_TO_HEIGHT);
|
|
|
|
|
|
|
|
p = obs_properties_add_list(pr, ST_SCALING_ALIGNMENT, D_TRANSLATE(ST_SCALING_ALIGNMENT), OBS_COMBO_TYPE_LIST,
|
|
|
|
OBS_COMBO_FORMAT_INT);
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SCALING_ALIGNMENT)));
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_LEFT "\\@ \\@" S_ALIGNMENT_TOP "\\@"),
|
|
|
|
OBS_ALIGN_LEFT | OBS_ALIGN_TOP);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_TOP "\\@"), OBS_ALIGN_TOP);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_RIGHT "\\@ \\@" S_ALIGNMENT_TOP "\\@"),
|
|
|
|
OBS_ALIGN_RIGHT | OBS_ALIGN_TOP);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_LEFT "\\@"), OBS_ALIGN_LEFT);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_CENTER "\\@"), OBS_ALIGN_CENTER);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_RIGHT "\\@"), OBS_ALIGN_RIGHT);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_LEFT "\\@ \\@" S_ALIGNMENT_BOTTOM "\\@"),
|
|
|
|
OBS_ALIGN_LEFT | OBS_ALIGN_BOTTOM);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_BOTTOM "\\@"), OBS_ALIGN_BOTTOM);
|
|
|
|
obs_property_list_add_int(p, obs_module_recursive_text("\\@" S_ALIGNMENT_RIGHT "\\@ \\@" S_ALIGNMENT_BOTTOM "\\@"),
|
|
|
|
OBS_ALIGN_RIGHT | OBS_ALIGN_BOTTOM);
|
|
|
|
|
|
|
|
return pr;
|
|
|
|
}
|