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"
|
2020-04-05 04:13:14 +00:00
|
|
|
#include "strings.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-10-16 02:24:18 +00:00
|
|
|
#include <sstream>
|
2019-09-04 01:03:41 +00:00
|
|
|
#include <stdexcept>
|
2018-11-07 14:24:25 +00:00
|
|
|
#include <vector>
|
2020-02-13 04:17:06 +00:00
|
|
|
#include "obs/gs/gs-helper.hpp"
|
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"
|
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>
|
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"
|
2019-10-16 02:24:18 +00:00
|
|
|
#define ST_SOURCE ST ".Source"
|
|
|
|
#define ST_SOURCE_AUDIO ST_SOURCE ".Audio"
|
|
|
|
#define ST_SOURCE_AUDIO_LAYOUT ST_SOURCE_AUDIO ".Layout"
|
|
|
|
#define ST_SOURCE_AUDIO_LAYOUT_(x) ST_SOURCE_AUDIO_LAYOUT "." D_VSTR(x)
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
using namespace source;
|
|
|
|
|
2020-03-03 01:17:26 +00:00
|
|
|
source::mirror::mirror_audio_data::mirror_audio_data(const audio_data* audio, speaker_layout layout)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2020-03-03 01:17:26 +00:00
|
|
|
// Build a clone of a packet.
|
|
|
|
audio_t* oad = obs_get_audio();
|
|
|
|
const audio_output_info* aoi = audio_output_get_info(oad);
|
2020-03-20 22:59:42 +00:00
|
|
|
osa.frames = audio->frames;
|
|
|
|
osa.timestamp = audio->timestamp;
|
|
|
|
osa.speakers = layout;
|
|
|
|
osa.format = aoi->format;
|
|
|
|
osa.samples_per_sec = aoi->samples_per_sec;
|
2020-03-03 01:17:26 +00:00
|
|
|
data.resize(MAX_AV_PLANES);
|
|
|
|
for (size_t idx = 0; idx < MAX_AV_PLANES; idx++) {
|
|
|
|
if (!audio->data[idx]) {
|
|
|
|
osa.data[idx] = nullptr;
|
|
|
|
continue;
|
|
|
|
}
|
2020-03-20 22:59:42 +00:00
|
|
|
|
2020-03-03 01:17:26 +00:00
|
|
|
data[idx].resize(audio->frames * get_audio_bytes_per_channel(osa.format));
|
|
|
|
memcpy(data[idx].data(), audio->data[idx], data[idx].size());
|
|
|
|
osa.data[idx] = data[idx].data();
|
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2020-03-03 01:17:26 +00:00
|
|
|
mirror::mirror_instance::mirror_instance(obs_data_t* settings, obs_source_t* self)
|
|
|
|
: obs::source_instance(settings, self), _source(), _source_child(), _signal_rename(), _audio_enabled(false),
|
|
|
|
_audio_layout(SPEAKERS_UNKNOWN)
|
|
|
|
{}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
mirror::mirror_instance::~mirror_instance()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-10-16 02:24:18 +00:00
|
|
|
release();
|
2018-04-27 21:38:49 +00:00
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
uint32_t mirror::mirror_instance::get_width()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2020-03-21 08:13:31 +00:00
|
|
|
return _source_size.first;
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
uint32_t mirror::mirror_instance::get_height()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2020-03-21 08:13:31 +00:00
|
|
|
return _source_size.second;
|
2019-10-16 02:24:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void convert_config(obs_data_t* data)
|
|
|
|
{
|
|
|
|
uint64_t version = static_cast<uint64_t>(obs_data_get_int(data, S_VERSION));
|
|
|
|
|
|
|
|
switch (version) {
|
|
|
|
case 0:
|
|
|
|
obs_data_set_int(data, ST_SOURCE_AUDIO_LAYOUT, obs_data_get_int(data, "Source.Mirror.Audio.Layout"));
|
|
|
|
obs_data_unset_user_value(data, "Source.Mirror.Audio.Layout");
|
2020-01-13 21:40:15 +00:00
|
|
|
case STREAMFX_VERSION:
|
2019-10-16 02:24:18 +00:00
|
|
|
break;
|
2018-11-07 13:11:38 +00:00
|
|
|
}
|
2019-10-16 02:24:18 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
obs_data_set_int(data, S_VERSION, STREAMFX_VERSION);
|
|
|
|
obs_data_set_string(data, S_COMMIT, STREAMFX_COMMIT);
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
void mirror::mirror_instance::update(obs_data_t* data)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-10-16 02:24:18 +00:00
|
|
|
convert_config(data);
|
|
|
|
|
2019-01-23 20:05:10 +00:00
|
|
|
// Audio
|
2020-02-14 06:55:18 +00:00
|
|
|
_audio_enabled = obs_data_get_bool(data, ST_SOURCE_AUDIO);
|
|
|
|
_audio_layout = static_cast<speaker_layout>(obs_data_get_int(data, ST_SOURCE_AUDIO_LAYOUT));
|
2020-03-21 07:59:35 +00:00
|
|
|
|
|
|
|
// Acquire new source.
|
|
|
|
acquire(obs_data_get_string(data, ST_SOURCE));
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
void mirror::mirror_instance::load(obs_data_t* data)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2020-02-14 06:55:18 +00:00
|
|
|
update(data);
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
void mirror::mirror_instance::save(obs_data_t* data)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-10-16 02:24:18 +00:00
|
|
|
if (_source) {
|
2020-02-14 06:55:18 +00:00
|
|
|
obs_data_set_string(data, ST_SOURCE, obs_source_get_name(_source.get()));
|
|
|
|
} else {
|
|
|
|
obs_data_unset_user_value(data, ST_SOURCE);
|
2019-10-16 02:24:18 +00:00
|
|
|
}
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
|
|
|
|
2020-03-21 08:13:31 +00:00
|
|
|
void mirror::mirror_instance::video_tick(float time)
|
|
|
|
{
|
|
|
|
if (_source) {
|
|
|
|
_source_size.first = obs_source_get_width(_source.get());
|
|
|
|
_source_size.second = obs_source_get_height(_source.get());
|
|
|
|
}
|
|
|
|
}
|
2020-02-14 06:55:18 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
void mirror::mirror_instance::video_render(gs_effect_t* effect)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2020-02-14 06:55:18 +00:00
|
|
|
if (!_source)
|
2017-12-14 07:06:09 +00:00
|
|
|
return;
|
2020-02-14 06:55:18 +00:00
|
|
|
if ((obs_source_get_output_flags(_source.get()) & OBS_SOURCE_VIDEO) == 0)
|
2019-01-31 01:57:18 +00:00
|
|
|
return;
|
|
|
|
|
2020-02-14 06:55:18 +00:00
|
|
|
obs_source_video_render(_source.get());
|
2017-12-14 07:06:09 +00:00
|
|
|
}
|
2018-04-24 11:48:42 +00:00
|
|
|
|
2020-02-14 06:55:18 +00:00
|
|
|
void mirror::mirror_instance::enum_active_sources(obs_source_enum_proc_t cb, void* ptr)
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2020-03-03 01:17:26 +00:00
|
|
|
if (!_source)
|
2020-02-14 06:55:18 +00:00
|
|
|
return;
|
|
|
|
cb(_self, _source.get(), ptr);
|
2018-11-08 07:08:38 +00:00
|
|
|
}
|
|
|
|
|
2020-02-14 06:55:18 +00:00
|
|
|
void source::mirror::mirror_instance::enum_all_sources(obs_source_enum_proc_t cb, void* ptr)
|
2019-10-15 11:34:47 +00:00
|
|
|
{
|
2020-02-14 06:55:18 +00:00
|
|
|
if (!_source)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cb(_self, _source.get(), ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void mirror::mirror_instance::acquire(std::string source_name)
|
|
|
|
try {
|
2020-03-03 01:17:26 +00:00
|
|
|
release();
|
|
|
|
|
2020-02-14 06:55:18 +00:00
|
|
|
// Find source by name if possible.
|
|
|
|
std::shared_ptr<obs_source_t> source =
|
|
|
|
std::shared_ptr<obs_source_t>{obs_get_source_by_name(source_name.c_str()), obs::obs_source_deleter};
|
|
|
|
if ((!source) || (source.get() == _self)) { // If we failed, just exit early.
|
|
|
|
return;
|
2018-11-08 07:08:38 +00:00
|
|
|
}
|
2020-02-14 06:55:18 +00:00
|
|
|
|
|
|
|
// Everything went well, store.
|
|
|
|
_source_child = std::make_shared<obs::tools::child_source>(_self, source);
|
|
|
|
_source = source;
|
|
|
|
|
|
|
|
// Listen to the rename event to update our own settings.
|
|
|
|
_signal_rename = std::make_shared<obs::source_signal_handler>("rename", _source);
|
|
|
|
_signal_rename->event.add(
|
|
|
|
std::bind(&source::mirror::mirror_instance::on_rename, this, std::placeholders::_1, std::placeholders::_2));
|
|
|
|
|
|
|
|
// Listen to any audio the source spews out.
|
2020-03-03 01:17:26 +00:00
|
|
|
if (_audio_enabled) {
|
|
|
|
_signal_audio = std::make_shared<obs::audio_signal_handler>(_source);
|
|
|
|
_signal_audio->event.add(std::bind(&source::mirror::mirror_instance::on_audio, this, std::placeholders::_1,
|
|
|
|
std::placeholders::_2, std::placeholders::_3));
|
|
|
|
}
|
2020-02-14 06:55:18 +00:00
|
|
|
} catch (...) {
|
|
|
|
release();
|
2018-11-08 07:08:38 +00:00
|
|
|
}
|
|
|
|
|
2020-02-14 06:55:18 +00:00
|
|
|
void mirror::mirror_instance::release()
|
|
|
|
{
|
|
|
|
_signal_audio.reset();
|
|
|
|
_signal_rename.reset();
|
|
|
|
_source_child.reset();
|
|
|
|
_source.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void source::mirror::mirror_instance::on_rename(std::shared_ptr<obs_source_t>, calldata*)
|
2019-01-14 22:52:12 +00:00
|
|
|
{
|
2019-10-16 02:24:18 +00:00
|
|
|
obs_source_save(_self);
|
2018-04-24 11:48:42 +00:00
|
|
|
}
|
2019-04-02 17:44:48 +00:00
|
|
|
|
2020-02-14 06:55:18 +00:00
|
|
|
void source::mirror::mirror_instance::on_audio(std::shared_ptr<obs_source_t>, const audio_data* audio, bool)
|
2019-04-02 17:44:48 +00:00
|
|
|
{
|
2020-03-03 01:17:26 +00:00
|
|
|
// Immediately quit if there isn't any actual audio to send out.
|
2020-02-14 06:55:18 +00:00
|
|
|
if (!_audio_enabled) {
|
2019-04-02 17:44:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-03 01:17:26 +00:00
|
|
|
// Detect Audio Layout from underlying audio.
|
|
|
|
speaker_layout detected_layout;
|
|
|
|
if (_audio_layout != SPEAKERS_UNKNOWN) {
|
|
|
|
detected_layout = _audio_layout;
|
|
|
|
} else {
|
|
|
|
std::bitset<MAX_AV_PLANES> layout_detection;
|
|
|
|
for (size_t idx = 0; idx < MAX_AV_PLANES; idx++) {
|
|
|
|
layout_detection.set(idx, audio->data[idx] != nullptr);
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
2020-03-03 01:17:26 +00:00
|
|
|
switch (layout_detection.to_ulong()) {
|
|
|
|
case 0b00000001:
|
|
|
|
detected_layout = SPEAKERS_MONO;
|
|
|
|
break;
|
|
|
|
case 0b00000011:
|
|
|
|
detected_layout = SPEAKERS_STEREO;
|
|
|
|
break;
|
|
|
|
case 0b00000111:
|
|
|
|
detected_layout = SPEAKERS_2POINT1;
|
|
|
|
break;
|
|
|
|
case 0b00001111:
|
|
|
|
detected_layout = SPEAKERS_4POINT0;
|
|
|
|
break;
|
|
|
|
case 0b00011111:
|
|
|
|
detected_layout = SPEAKERS_4POINT1;
|
|
|
|
break;
|
|
|
|
case 0b00111111:
|
|
|
|
detected_layout = SPEAKERS_5POINT1;
|
|
|
|
break;
|
|
|
|
case 0b11111111:
|
|
|
|
detected_layout = SPEAKERS_7POINT1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
detected_layout = SPEAKERS_UNKNOWN;
|
|
|
|
break;
|
2019-08-04 10:34:42 +00:00
|
|
|
}
|
2019-04-03 00:58:54 +00:00
|
|
|
}
|
|
|
|
|
2020-03-20 22:59:42 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> ul(_audio_queue_lock);
|
|
|
|
_audio_queue.emplace(audio, detected_layout);
|
|
|
|
}
|
|
|
|
|
2020-03-03 01:17:26 +00:00
|
|
|
// Create a clone of the audio data and push it to the thread pool.
|
|
|
|
get_global_threadpool()->push(
|
2020-03-20 22:59:42 +00:00
|
|
|
std::bind(&source::mirror::mirror_instance::audio_output, this, std::placeholders::_1), nullptr);
|
2020-03-03 01:17:26 +00:00
|
|
|
}
|
2019-04-02 17:44:48 +00:00
|
|
|
|
2020-03-03 01:17:26 +00:00
|
|
|
void source::mirror::mirror_instance::audio_output(std::shared_ptr<void> data)
|
|
|
|
{
|
2020-03-20 22:59:42 +00:00
|
|
|
std::unique_lock<std::mutex> ul(_audio_queue_lock);
|
|
|
|
while (_audio_queue.size() > 0) {
|
|
|
|
obs_source_output_audio(_self, &((_audio_queue.front()).osa));
|
|
|
|
_audio_queue.pop();
|
|
|
|
}
|
2019-04-02 17:44:48 +00:00
|
|
|
}
|
2019-10-15 11:34:47 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
std::shared_ptr<mirror::mirror_factory> mirror::mirror_factory::factory_instance;
|
2019-10-15 11:34:47 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
mirror::mirror_factory::mirror_factory()
|
2019-10-15 11:34:47 +00:00
|
|
|
{
|
|
|
|
_info.id = "obs-stream-effects-source-mirror";
|
|
|
|
_info.type = OBS_SOURCE_TYPE_INPUT;
|
2020-02-14 06:55:18 +00:00
|
|
|
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW | OBS_SOURCE_AUDIO;
|
2019-10-15 11:34:47 +00:00
|
|
|
|
2020-02-13 04:17:06 +00:00
|
|
|
set_have_active_child_sources(true);
|
2020-02-14 06:55:18 +00:00
|
|
|
set_have_child_sources(true);
|
2019-12-14 01:37:04 +00:00
|
|
|
finish_setup();
|
2019-10-15 11:34:47 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
mirror::mirror_factory::~mirror_factory() {}
|
2019-10-15 11:34:47 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
const char* mirror::mirror_factory::get_name()
|
2019-10-15 11:34:47 +00:00
|
|
|
{
|
|
|
|
return D_TRANSLATE(ST);
|
|
|
|
}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
void mirror::mirror_factory::get_defaults2(obs_data_t* data)
|
2019-10-15 11:34:47 +00:00
|
|
|
{
|
|
|
|
obs_data_set_default_string(data, ST_SOURCE, "");
|
2019-10-16 02:24:18 +00:00
|
|
|
obs_data_set_default_bool(data, ST_SOURCE_AUDIO, false);
|
|
|
|
obs_data_set_default_int(data, ST_SOURCE_AUDIO_LAYOUT, static_cast<int64_t>(SPEAKERS_UNKNOWN));
|
2019-10-15 11:34:47 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 22:53:20 +00:00
|
|
|
static bool modified_properties(obs_properties_t* pr, obs_property_t* p, obs_data_t* data) noexcept
|
|
|
|
try {
|
2019-10-16 02:24:18 +00:00
|
|
|
if (obs_properties_get(pr, ST_SOURCE_AUDIO) == p) {
|
|
|
|
bool show = obs_data_get_bool(data, ST_SOURCE_AUDIO);
|
|
|
|
obs_property_set_visible(obs_properties_get(pr, ST_SOURCE_AUDIO_LAYOUT), show);
|
2019-10-15 11:34:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} catch (...) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
obs_properties_t* mirror::mirror_factory::get_properties2(mirror::mirror_instance* data)
|
2019-10-15 11:34:47 +00:00
|
|
|
{
|
|
|
|
obs_properties_t* pr = obs_properties_create();
|
|
|
|
obs_property_t* p = nullptr;
|
|
|
|
|
2019-10-16 02:24:18 +00:00
|
|
|
{
|
2020-02-13 04:18:28 +00:00
|
|
|
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*) {
|
|
|
|
std::stringstream sstr;
|
|
|
|
sstr << name << " (" << D_TRANSLATE(S_SOURCETYPE_SOURCE) << ")";
|
|
|
|
obs_property_list_add_string(p, sstr.str().c_str(), name.c_str());
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
obs::source_tracker::filter_sources);
|
|
|
|
obs::source_tracker::get()->enumerate(
|
|
|
|
[&p](std::string name, obs_source_t*) {
|
|
|
|
std::stringstream sstr;
|
|
|
|
sstr << name << " (" << D_TRANSLATE(S_SOURCETYPE_SCENE) << ")";
|
|
|
|
obs_property_list_add_string(p, sstr.str().c_str(), name.c_str());
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
obs::source_tracker::filter_scenes);
|
|
|
|
}
|
2019-10-16 02:24:18 +00:00
|
|
|
|
2020-02-13 04:18:28 +00:00
|
|
|
{
|
|
|
|
p = obs_properties_add_bool(pr, ST_SOURCE_AUDIO, D_TRANSLATE(ST_SOURCE_AUDIO));
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SOURCE_AUDIO)));
|
|
|
|
obs_property_set_modified_callback(p, modified_properties);
|
|
|
|
}
|
2019-10-16 02:24:18 +00:00
|
|
|
|
2020-02-13 04:18:28 +00:00
|
|
|
{
|
|
|
|
p = obs_properties_add_list(pr, ST_SOURCE_AUDIO_LAYOUT, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT),
|
|
|
|
OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT);
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(Unknown)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_UNKNOWN));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(Mono)), static_cast<int64_t>(SPEAKERS_MONO));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(Stereo)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_STEREO));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(StereoLFE)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_2POINT1));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(Quadraphonic)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_4POINT0));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(QuadraphonicLFE)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_4POINT1));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(Surround)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_5POINT1));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_SOURCE_AUDIO_LAYOUT_(FullSurround)),
|
|
|
|
static_cast<int64_t>(SPEAKERS_7POINT1));
|
|
|
|
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(ST_SOURCE_AUDIO_LAYOUT)));
|
2019-10-16 02:24:18 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 11:34:47 +00:00
|
|
|
return pr;
|
|
|
|
}
|