yolobs-studio/plugins/obs-ffmpeg/obs-ffmpeg.c

279 lines
6.4 KiB
C
Raw Normal View History

2016-02-23 23:16:51 +00:00
#include <obs-module.h>
2016-05-24 19:53:01 +00:00
#include <util/platform.h>
2019-07-27 12:47:10 +00:00
#include <libavutil/avutil.h>
2016-05-24 19:53:01 +00:00
#include <libavcodec/avcodec.h>
2018-02-19 19:54:37 +00:00
#include <libavformat/avformat.h>
2019-09-22 21:19:10 +00:00
#include "obs-ffmpeg-config.h"
2016-02-23 23:16:51 +00:00
2019-07-27 12:47:10 +00:00
#ifdef _WIN32
#include <dxgi.h>
#include <util/dstr.h>
#include <util/windows/win-version.h>
#endif
2016-02-23 23:16:51 +00:00
OBS_DECLARE_MODULE()
OBS_MODULE_USE_DEFAULT_LOCALE("obs-ffmpeg", "en-US")
2019-07-27 12:47:10 +00:00
MODULE_EXPORT const char *obs_module_description(void)
{
return "FFmpeg based sources/outputs/encoders";
}
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
extern struct obs_source_info ffmpeg_source;
extern struct obs_output_info ffmpeg_output;
extern struct obs_output_info ffmpeg_muxer;
2020-10-01 20:15:25 +00:00
extern struct obs_output_info ffmpeg_mpegts_muxer;
2019-09-22 21:19:10 +00:00
extern struct obs_output_info replay_buffer;
2020-12-22 17:32:50 +00:00
extern struct obs_output_info ffmpeg_hls_muxer;
2016-02-23 23:16:51 +00:00
extern struct obs_encoder_info aac_encoder_info;
2018-02-19 19:54:37 +00:00
extern struct obs_encoder_info opus_encoder_info;
2016-05-24 19:53:01 +00:00
extern struct obs_encoder_info nvenc_encoder_info;
2016-02-23 23:16:51 +00:00
2019-07-27 12:47:10 +00:00
#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(55, 27, 100)
#define LIBAVUTIL_VAAPI_AVAILABLE
#endif
#ifdef LIBAVUTIL_VAAPI_AVAILABLE
extern struct obs_encoder_info vaapi_encoder_info;
#endif
2018-02-19 19:54:37 +00:00
#ifndef __APPLE__
static const char *nvenc_check_name = "nvenc_check";
2019-07-27 12:47:10 +00:00
#ifdef _WIN32
2020-03-25 08:07:22 +00:00
static const int blacklisted_adapters[] = {
0x1298, // GK208M [GeForce GT 720M]
0x1140, // GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M]
0x1293, // GK208M [GeForce GT 730M]
0x1290, // GK208M [GeForce GT 730M]
0x0fe1, // GK107M [GeForce GT 730M]
0x0fdf, // GK107M [GeForce GT 740M]
0x1294, // GK208M [GeForce GT 740M]
0x1292, // GK208M [GeForce GT 740M]
0x0fe2, // GK107M [GeForce GT 745M]
0x0fe3, // GK107M [GeForce GT 745M]
0x1140, // GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M]
0x0fed, // GK107M [GeForce 820M]
0x1340, // GM108M [GeForce 830M]
0x1393, // GM107M [GeForce 840M]
0x1341, // GM108M [GeForce 840M]
0x1398, // GM107M [GeForce 845M]
0x1390, // GM107M [GeForce 845M]
0x1344, // GM108M [GeForce 845M]
0x1299, // GK208BM [GeForce 920M]
0x134f, // GM108M [GeForce 920MX]
0x134e, // GM108M [GeForce 930MX]
0x1349, // GM108M [GeForce 930M]
0x1346, // GM108M [GeForce 930M]
0x179c, // GM107 [GeForce 940MX]
0x139c, // GM107M [GeForce 940M]
0x1347, // GM108M [GeForce 940M]
0x134d, // GM108M [GeForce 940MX]
0x134b, // GM108M [GeForce 940MX]
0x1399, // GM107M [GeForce 945M]
0x1348, // GM108M [GeForce 945M / 945A]
0x1d01, // GP108 [GeForce GT 1030]
0x0fc5, // GK107 [GeForce GT 1030]
0x174e, // GM108M [GeForce MX110]
0x174d, // GM108M [GeForce MX130]
0x1d10, // GP108M [GeForce MX150]
0x1d12, // GP108M [GeForce MX150]
0x1d11, // GP108M [GeForce MX230]
0x1d13, // GP108M [GeForce MX250]
0x1d52, // GP108BM [GeForce MX250]
2020-12-22 17:32:50 +00:00
0x1c94, // GP107 [GeForce MX350]
2020-03-25 08:07:22 +00:00
0x137b, // GM108GLM [Quadro M520 Mobile]
0x1d33, // GP108GLM [Quadro P500 Mobile]
0x137a, // GM108GLM [Quadro K620M / Quadro M500M]
2019-07-27 12:47:10 +00:00
};
static const size_t num_blacklisted =
sizeof(blacklisted_adapters) / sizeof(blacklisted_adapters[0]);
2020-03-25 08:07:22 +00:00
static bool is_blacklisted(const int device_id)
2019-07-27 12:47:10 +00:00
{
for (size_t i = 0; i < num_blacklisted; i++) {
2020-03-25 08:07:22 +00:00
const int blacklisted_adapter = blacklisted_adapters[i];
if (device_id == blacklisted_adapter) {
2019-07-27 12:47:10 +00:00
return true;
}
}
return false;
}
2019-09-22 21:19:10 +00:00
typedef HRESULT(WINAPI *create_dxgi_proc)(const IID *, IDXGIFactory1 **);
2019-07-27 12:47:10 +00:00
static bool nvenc_device_available(void)
{
static HMODULE dxgi = NULL;
static create_dxgi_proc create = NULL;
IDXGIFactory1 *factory;
IDXGIAdapter1 *adapter;
bool available = false;
HRESULT hr;
UINT i = 0;
if (!dxgi) {
dxgi = GetModuleHandleW(L"dxgi");
if (!dxgi) {
dxgi = LoadLibraryW(L"dxgi");
if (!dxgi) {
return true;
}
}
}
if (!create) {
create = (create_dxgi_proc)GetProcAddress(dxgi,
2019-09-22 21:19:10 +00:00
"CreateDXGIFactory1");
2019-07-27 12:47:10 +00:00
if (!create) {
return true;
}
}
hr = create(&IID_IDXGIFactory1, &factory);
if (FAILED(hr)) {
return true;
}
while (factory->lpVtbl->EnumAdapters1(factory, i++, &adapter) == S_OK) {
DXGI_ADAPTER_DESC desc;
hr = adapter->lpVtbl->GetDesc(adapter, &desc);
adapter->lpVtbl->Release(adapter);
if (FAILED(hr)) {
continue;
}
2020-03-25 08:07:22 +00:00
// 0x10de = NVIDIA Corporation
if (desc.VendorId == 0x10de && !is_blacklisted(desc.DeviceId)) {
2019-07-27 12:47:10 +00:00
available = true;
goto finish;
}
}
finish:
factory->lpVtbl->Release(factory);
return available;
}
#endif
#ifdef _WIN32
extern bool load_nvenc_lib(void);
#endif
2016-05-24 19:53:01 +00:00
static bool nvenc_supported(void)
{
2019-09-22 21:19:10 +00:00
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 9, 100)
2018-02-19 19:54:37 +00:00
av_register_all();
2019-09-22 21:19:10 +00:00
#endif
2018-02-19 19:54:37 +00:00
profile_start(nvenc_check_name);
2016-05-24 19:53:01 +00:00
AVCodec *nvenc = avcodec_find_encoder_by_name("nvenc_h264");
void *lib = NULL;
2018-02-19 19:54:37 +00:00
bool success = false;
2016-05-24 19:53:01 +00:00
2018-02-19 19:54:37 +00:00
if (!nvenc) {
goto cleanup;
}
2016-05-24 19:53:01 +00:00
#if defined(_WIN32)
2019-07-27 12:47:10 +00:00
if (!nvenc_device_available()) {
goto cleanup;
}
if (load_nvenc_lib()) {
success = true;
goto finish;
2016-05-24 19:53:01 +00:00
}
#else
lib = os_dlopen("libnvidia-encode.so.1");
#endif
2018-02-19 19:54:37 +00:00
/* ------------------------------------------- */
success = !!lib;
cleanup:
if (lib)
os_dlclose(lib);
2019-07-27 12:47:10 +00:00
#if defined(_WIN32)
finish:
#endif
2018-02-19 19:54:37 +00:00
profile_end(nvenc_check_name);
return success;
2016-05-24 19:53:01 +00:00
}
2018-02-19 19:54:37 +00:00
#endif
2019-07-27 12:47:10 +00:00
#ifdef LIBAVUTIL_VAAPI_AVAILABLE
static bool vaapi_supported(void)
{
AVCodec *vaenc = avcodec_find_encoder_by_name("h264_vaapi");
return !!vaenc;
}
#endif
#ifdef _WIN32
extern void jim_nvenc_load(void);
extern void jim_nvenc_unload(void);
#endif
2019-09-22 21:19:10 +00:00
#if ENABLE_FFMPEG_LOGGING
extern void obs_ffmpeg_load_logging(void);
extern void obs_ffmpeg_unload_logging(void);
#endif
2016-02-23 23:16:51 +00:00
bool obs_module_load(void)
{
obs_register_source(&ffmpeg_source);
obs_register_output(&ffmpeg_output);
obs_register_output(&ffmpeg_muxer);
2020-10-01 20:15:25 +00:00
obs_register_output(&ffmpeg_mpegts_muxer);
2020-12-22 17:32:50 +00:00
obs_register_output(&ffmpeg_hls_muxer);
2017-04-19 19:54:15 +00:00
obs_register_output(&replay_buffer);
2016-02-23 23:16:51 +00:00
obs_register_encoder(&aac_encoder_info);
2018-02-19 19:54:37 +00:00
obs_register_encoder(&opus_encoder_info);
#ifndef __APPLE__
2016-05-24 19:53:01 +00:00
if (nvenc_supported()) {
blog(LOG_INFO, "NVENC supported");
2019-07-27 12:47:10 +00:00
#ifdef _WIN32
if (get_win_ver_int() > 0x0601) {
jim_nvenc_load();
2020-05-27 20:57:19 +00:00
} else {
// if on Win 7, new nvenc isn't available so there's
// no nvenc encoder for the user to select, expose
// the old encoder directly
nvenc_encoder_info.caps &= ~OBS_ENCODER_CAP_INTERNAL;
2019-07-27 12:47:10 +00:00
}
#endif
2016-05-24 19:53:01 +00:00
obs_register_encoder(&nvenc_encoder_info);
}
2019-07-27 12:47:10 +00:00
#if !defined(_WIN32) && defined(LIBAVUTIL_VAAPI_AVAILABLE)
if (vaapi_supported()) {
blog(LOG_INFO, "FFMPEG VAAPI supported");
obs_register_encoder(&vaapi_encoder_info);
}
#endif
2019-09-22 21:19:10 +00:00
#endif
#if ENABLE_FFMPEG_LOGGING
obs_ffmpeg_load_logging();
2018-02-19 19:54:37 +00:00
#endif
2016-02-23 23:16:51 +00:00
return true;
}
void obs_module_unload(void)
{
2019-09-22 21:19:10 +00:00
#if ENABLE_FFMPEG_LOGGING
obs_ffmpeg_unload_logging();
2016-02-23 23:16:51 +00:00
#endif
2019-07-27 12:47:10 +00:00
#ifdef _WIN32
jim_nvenc_unload();
#endif
2016-02-23 23:16:51 +00:00
}