obs-StreamFX/source/encoders/handlers/nvenc_hevc_handler.cpp

201 lines
7.2 KiB
C++
Raw Normal View History

2020-01-13 00:52:30 +00:00
// FFMPEG Video Encoder Integration for OBS Studio
// Copyright (c) 2019 Michael Fabian Dirks <info@xaymar.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "nvenc_hevc_handler.hpp"
2020-01-13 21:40:15 +00:00
#include "../codecs/hevc.hpp"
#include "../ffmpeg-encoder.hpp"
2020-01-13 00:52:30 +00:00
#include "ffmpeg/tools.hpp"
#include "nvenc_shared.hpp"
#include "plugin.hpp"
#include "strings.hpp"
#include "utility.hpp"
extern "C" {
#include <obs-module.h>
#pragma warning(push)
#pragma warning(disable : 4244)
#include <libavutil/opt.h>
#pragma warning(pop)
}
2020-01-13 22:40:08 +00:00
#define KEY_PROFILE "H265.Profile"
#define KEY_TIER "H265.Tier"
#define KEY_LEVEL "H265.Level"
2020-01-13 21:40:15 +00:00
using namespace encoder::ffmpeg::handler;
using namespace encoder::codec::hevc;
2020-01-13 00:52:30 +00:00
std::map<profile, std::string> profiles{
2020-01-13 21:40:15 +00:00
{profile::MAIN, "main"},
{profile::MAIN10, "main10"},
{profile::RANGE_EXTENDED, "rext"},
2020-01-13 00:52:30 +00:00
};
std::map<tier, std::string> tiers{
2020-01-13 21:40:15 +00:00
{tier::MAIN, "main"},
{tier::HIGH, "high"},
2020-01-13 00:52:30 +00:00
};
std::map<level, std::string> levels{
2020-01-13 21:40:15 +00:00
{level::L1_0, "1.0"}, {level::L2_0, "2.0"}, {level::L2_1, "2.1"}, {level::L3_0, "3.0"}, {level::L3_1, "3.1"},
{level::L4_0, "4.0"}, {level::L4_1, "4.1"}, {level::L5_0, "5.0"}, {level::L5_1, "5.1"}, {level::L5_2, "5.2"},
{level::L6_0, "6.0"}, {level::L6_1, "6.1"}, {level::L6_2, "6.2"},
2020-01-13 00:52:30 +00:00
};
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::adjust_encoder_info(ffmpeg_factory*, ffmpeg_info* main, ffmpeg_info* fallback)
2020-01-13 00:52:30 +00:00
{
2020-01-13 22:40:08 +00:00
main->readable_name = "H.265/HEVC Nvidia NVENC";
fallback->readable_name = "H.265/HEVC Nvidia NVENC (Software Fallback)";
fallback->oei.caps |= OBS_ENCODER_CAP_DEPRECATED;
2020-01-13 00:52:30 +00:00
}
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::get_defaults(obs_data_t* settings, const AVCodec* codec, AVCodecContext* context, bool)
2020-01-13 00:52:30 +00:00
{
nvenc::get_defaults(settings, codec, context);
2020-01-13 22:40:08 +00:00
obs_data_set_default_int(settings, KEY_PROFILE, static_cast<int64_t>(profile::MAIN));
obs_data_set_default_int(settings, KEY_TIER, static_cast<int64_t>(profile::MAIN));
obs_data_set_default_int(settings, KEY_LEVEL, static_cast<int64_t>(level::UNKNOWN));
2020-01-13 00:52:30 +00:00
}
2020-01-13 21:40:15 +00:00
bool nvenc_hevc_handler::has_keyframe_support(ffmpeg_instance*)
2020-01-13 00:52:30 +00:00
{
return true;
}
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::get_properties(obs_properties_t* props, const AVCodec* codec, AVCodecContext* context, bool)
2020-01-13 00:52:30 +00:00
{
if (!context) {
this->get_encoder_properties(props, codec);
} else {
this->get_runtime_properties(props, codec, context);
}
}
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::update(obs_data_t* settings, const AVCodec* codec, AVCodecContext* context)
2020-01-13 00:52:30 +00:00
{
nvenc::update(settings, codec, context);
{ // HEVC Options
2020-01-13 22:40:08 +00:00
auto found = profiles.find(static_cast<profile>(obs_data_get_int(settings, KEY_PROFILE)));
2020-01-13 00:52:30 +00:00
if (found != profiles.end()) {
av_opt_set(context->priv_data, "profile", found->second.c_str(), 0);
}
}
{
2020-01-13 22:40:08 +00:00
auto found = tiers.find(static_cast<tier>(obs_data_get_int(settings, KEY_TIER)));
2020-01-13 00:52:30 +00:00
if (found != tiers.end()) {
av_opt_set(context->priv_data, "tier", found->second.c_str(), 0);
}
}
{
2020-01-13 22:40:08 +00:00
auto found = levels.find(static_cast<level>(obs_data_get_int(settings, KEY_LEVEL)));
2020-01-13 00:52:30 +00:00
if (found != levels.end()) {
av_opt_set(context->priv_data, "level", found->second.c_str(), 0);
} else {
av_opt_set(context->priv_data, "level", "auto", 0);
}
}
}
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::override_update(ffmpeg_instance* instance, obs_data_t* settings)
2020-01-13 00:52:30 +00:00
{
nvenc::override_update(instance, settings);
}
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::log_options(obs_data_t* settings, const AVCodec* codec, AVCodecContext* context)
2020-01-13 00:52:30 +00:00
{
nvenc::log_options(settings, codec, context);
2020-01-13 21:40:15 +00:00
LOG_INFO("[%s] H.265/HEVC:", codec->name);
::ffmpeg::tools::print_av_option_string(context, "profile", " Profile", [](int64_t v) {
2020-01-13 00:52:30 +00:00
profile val = static_cast<profile>(v);
auto index = profiles.find(val);
if (index != profiles.end())
return index->second;
return std::string("<Unknown>");
});
2020-01-13 21:40:15 +00:00
::ffmpeg::tools::print_av_option_string(context, "level", " Level", [](int64_t v) {
2020-01-13 00:52:30 +00:00
level val = static_cast<level>(v);
auto index = levels.find(val);
if (index != levels.end())
return index->second;
return std::string("<Unknown>");
});
2020-01-13 21:40:15 +00:00
::ffmpeg::tools::print_av_option_string(context, "tier", " Tier", [](int64_t v) {
2020-01-13 00:52:30 +00:00
tier val = static_cast<tier>(v);
auto index = tiers.find(val);
if (index != tiers.end())
return index->second;
return std::string("<Unknown>");
});
}
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::get_encoder_properties(obs_properties_t* props, const AVCodec* codec)
2020-01-13 00:52:30 +00:00
{
nvenc::get_properties_pre(props, codec);
{
obs_properties_t* grp = props;
2020-01-13 21:40:15 +00:00
if (!util::are_property_groups_broken()) {
2020-01-13 00:52:30 +00:00
grp = obs_properties_create();
2020-01-13 21:40:15 +00:00
obs_properties_add_group(props, P_HEVC, D_TRANSLATE(P_HEVC), OBS_GROUP_NORMAL, grp);
2020-01-13 00:52:30 +00:00
}
{
2020-01-13 22:40:08 +00:00
auto p = obs_properties_add_list(grp, KEY_PROFILE, D_TRANSLATE(P_HEVC_PROFILE), OBS_COMBO_TYPE_LIST,
2020-01-13 21:40:15 +00:00
OBS_COMBO_FORMAT_INT);
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(P_HEVC_PROFILE)));
obs_property_list_add_int(p, D_TRANSLATE(S_STATE_DEFAULT), static_cast<int64_t>(profile::UNKNOWN));
2020-01-13 00:52:30 +00:00
for (auto const kv : profiles) {
std::string trans = std::string(P_HEVC_PROFILE) + "." + kv.second;
2020-01-13 21:40:15 +00:00
obs_property_list_add_int(p, D_TRANSLATE(trans.c_str()), static_cast<int64_t>(kv.first));
2020-01-13 00:52:30 +00:00
}
}
{
2020-01-13 22:40:08 +00:00
auto p = obs_properties_add_list(grp, KEY_TIER, D_TRANSLATE(P_HEVC_TIER), OBS_COMBO_TYPE_LIST,
2020-01-13 21:40:15 +00:00
OBS_COMBO_FORMAT_INT);
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(P_HEVC_TIER)));
obs_property_list_add_int(p, D_TRANSLATE(S_STATE_DEFAULT), static_cast<int64_t>(tier::UNKNOWN));
2020-01-13 00:52:30 +00:00
for (auto const kv : tiers) {
std::string trans = std::string(P_HEVC_TIER) + "." + kv.second;
2020-01-13 21:40:15 +00:00
obs_property_list_add_int(p, D_TRANSLATE(trans.c_str()), static_cast<int64_t>(kv.first));
2020-01-13 00:52:30 +00:00
}
}
{
2020-01-13 22:40:08 +00:00
auto p = obs_properties_add_list(grp, KEY_LEVEL, D_TRANSLATE(P_HEVC_LEVEL), OBS_COMBO_TYPE_LIST,
2020-01-13 21:40:15 +00:00
OBS_COMBO_FORMAT_INT);
obs_property_set_long_description(p, D_TRANSLATE(D_DESC(P_HEVC_LEVEL)));
obs_property_list_add_int(p, D_TRANSLATE(S_STATE_AUTOMATIC), static_cast<int64_t>(level::UNKNOWN));
2020-01-13 00:52:30 +00:00
for (auto const kv : levels) {
obs_property_list_add_int(p, kv.second.c_str(), static_cast<int64_t>(kv.first));
}
}
}
nvenc::get_properties_post(props, codec);
}
2020-01-13 21:40:15 +00:00
void nvenc_hevc_handler::get_runtime_properties(obs_properties_t* props, const AVCodec* codec, AVCodecContext* context)
2020-01-13 00:52:30 +00:00
{
nvenc::get_runtime_properties(props, codec, context);
}