2017-05-03 00:21:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Ericsson AB. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer
|
|
|
|
* in the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2024-01-30 14:17:28 +00:00
|
|
|
#include <gst/cuda/gstcuda.h>
|
2017-05-03 00:21:43 +00:00
|
|
|
#include "gstnvdec.h"
|
nvdec,nvenc: Port to dynamic library loading
... and put them into new nvcodec plugin.
* nvcodec plugin
Now each nvenc and nvdec element is moved to be a part of nvcodec plugin
for better interoperability.
Additionally, cuda runtime API header dependencies
(i.e., cuda_runtime_api.h and cuda_gl_interop.h) are removed.
Note that cuda runtime APIs have prefix "cuda". Since 1.16 release with
Windows support, only "cuda.h" and "cudaGL.h" dependent symbols have
been used except for some defined types. However, those types could be
replaced with other types which were defined by "cuda.h".
* dynamic library loading
CUDA library will be opened with g_module_open() instead of build-time linking.
On Windows, nvcuda.dll is installed to system path by CUDA Toolkit
installer, and on *nix, user should ensure that libcuda.so.1 can be
loadable (i.e., via LD_LIBRARY_PATH or default dlopen path)
Therefore, NVIDIA_VIDEO_CODEC_SDK_PATH env build time dependency for Windows
is removed.
2019-05-17 13:27:50 +00:00
|
|
|
#include "gstnvenc.h"
|
2022-05-02 13:59:59 +00:00
|
|
|
#include "gstnvav1dec.h"
|
2020-04-16 14:27:31 +00:00
|
|
|
#include "gstnvh264dec.h"
|
2020-06-19 20:57:59 +00:00
|
|
|
#include "gstnvh265dec.h"
|
2020-10-30 11:37:44 +00:00
|
|
|
#include "gstnvvp8dec.h"
|
2020-10-30 14:22:01 +00:00
|
|
|
#include "gstnvvp9dec.h"
|
2020-04-16 14:27:31 +00:00
|
|
|
#include "gstnvdecoder.h"
|
2022-03-03 18:33:41 +00:00
|
|
|
#include "gstcudamemorycopy.h"
|
2024-01-30 14:17:28 +00:00
|
|
|
#include "gstcudaconvertscale.h"
|
2022-03-04 17:30:24 +00:00
|
|
|
#ifdef HAVE_NVCODEC_NVMM
|
|
|
|
#include "gstcudanvmm.h"
|
|
|
|
#endif
|
2017-05-03 00:21:43 +00:00
|
|
|
|
2023-02-05 17:41:57 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2022-03-15 19:58:16 +00:00
|
|
|
#include <gst/d3d11/gstd3d11.h>
|
|
|
|
#endif
|
|
|
|
#include "gstnvh264encoder.h"
|
|
|
|
#include "gstnvh265encoder.h"
|
2024-04-28 09:26:43 +00:00
|
|
|
#include "gstnvav1encoder.h"
|
2023-04-18 16:56:20 +00:00
|
|
|
#include "gstcudaipcsink.h"
|
|
|
|
#include "gstcudaipcsrc.h"
|
|
|
|
#include "gstnvcodecutils.h"
|
2024-01-29 17:58:03 +00:00
|
|
|
#include "gstnvjpegenc.h"
|
2022-03-15 19:58:16 +00:00
|
|
|
|
2024-02-20 16:13:02 +00:00
|
|
|
#include <glib/gi18n-lib.h>
|
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
GST_DEBUG_CATEGORY (gst_nvcodec_debug);
|
|
|
|
GST_DEBUG_CATEGORY (gst_nvdec_debug);
|
|
|
|
GST_DEBUG_CATEGORY (gst_nvenc_debug);
|
2020-04-16 14:27:31 +00:00
|
|
|
GST_DEBUG_CATEGORY (gst_nv_decoder_debug);
|
2019-11-28 09:54:31 +00:00
|
|
|
|
2022-03-04 17:30:24 +00:00
|
|
|
#ifdef HAVE_NVCODEC_NVMM
|
|
|
|
GST_DEBUG_CATEGORY (gst_cuda_nvmm_debug);
|
|
|
|
#endif
|
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_nvcodec_debug
|
|
|
|
|
2024-02-20 16:13:02 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
#define CUDA_LIBNAME "nvcuda.dll"
|
|
|
|
#define NVCUVID_LIBNAME "nvcuvid.dll"
|
|
|
|
#ifdef _WIN64
|
|
|
|
#define NVENC_LIBNAME "nvEncodeAPI64.dll"
|
|
|
|
#else
|
|
|
|
#define NVENC_LIBNAME "nvEncodeAPI.dll"
|
|
|
|
#endif
|
|
|
|
#define NVRTC_LIBNAME "nvrtc64_*_0.dll"
|
|
|
|
#else /* G_OS_WIN32 */
|
|
|
|
#define CUDA_LIBNAME "libcuda.so.1"
|
|
|
|
#define NVCUVID_LIBNAME "libnvcuvid.so.1"
|
|
|
|
#define NVENC_LIBNAME "libnvidia-encode.so.1"
|
|
|
|
#define NVRTC_LIBNAME "libnvrtc.so"
|
|
|
|
#endif /* G_OS_WIN32 */
|
|
|
|
|
2023-04-18 16:56:20 +00:00
|
|
|
static void
|
|
|
|
plugin_deinit (gpointer data)
|
|
|
|
{
|
|
|
|
gst_cuda_ipc_client_deinit ();
|
|
|
|
}
|
|
|
|
|
2024-01-30 14:17:28 +00:00
|
|
|
static gboolean
|
|
|
|
check_runtime_compiler (void)
|
|
|
|
{
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
const gchar *nvrtc_test_source =
|
|
|
|
"__global__ void\n"
|
|
|
|
"my_kernel (void) {}";
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
gchar *test_ptx;
|
|
|
|
|
|
|
|
if (!gst_cuda_nvrtc_load_library ())
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
test_ptx = gst_cuda_nvrtc_compile (nvrtc_test_source);
|
|
|
|
if (!test_ptx)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_free (test_ptx);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-05-03 00:21:43 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2019-11-28 09:54:31 +00:00
|
|
|
CUresult cuda_ret;
|
2023-01-24 05:56:02 +00:00
|
|
|
const char *err_name = NULL, *err_desc = NULL;
|
2019-11-28 09:54:31 +00:00
|
|
|
gint dev_count = 0;
|
2022-03-15 19:58:16 +00:00
|
|
|
guint i;
|
2019-11-28 09:54:31 +00:00
|
|
|
gboolean nvdec_available = TRUE;
|
|
|
|
gboolean nvenc_available = TRUE;
|
2020-04-09 07:12:58 +00:00
|
|
|
/* hardcoded minimum supported version */
|
|
|
|
guint api_major_ver = 8;
|
|
|
|
guint api_minor_ver = 1;
|
2022-06-22 16:10:38 +00:00
|
|
|
GList *h264_enc_cdata = NULL;
|
|
|
|
GList *h265_enc_cdata = NULL;
|
2024-04-28 09:26:43 +00:00
|
|
|
GList *av1_enc_cdata = NULL;
|
2024-01-30 14:17:28 +00:00
|
|
|
gboolean have_nvrtc = FALSE;
|
2019-11-28 09:54:31 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_nvcodec_debug, "nvcodec", 0, "nvcodec");
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_nvdec_debug, "nvdec", 0, "nvdec");
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_nvenc_debug, "nvenc", 0, "nvenc");
|
2020-04-16 14:27:31 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_nv_decoder_debug, "nvdecoder", 0, "nvdecoder");
|
2019-11-28 09:54:31 +00:00
|
|
|
|
2022-03-04 17:30:24 +00:00
|
|
|
#ifdef HAVE_NVCODEC_NVMM
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_cuda_nvmm_debug, "cudanvmm", 0, "cudanvmm");
|
|
|
|
#endif
|
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
if (!gst_cuda_load_library ()) {
|
2024-02-20 16:13:02 +00:00
|
|
|
gst_plugin_add_status_warning (plugin,
|
|
|
|
"CUDA library \"" CUDA_LIBNAME "\" was not found.");
|
2019-11-28 09:54:31 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2020-04-09 07:12:58 +00:00
|
|
|
/* get available API version from nvenc and it will be passed to
|
|
|
|
* nvdec */
|
|
|
|
if (!gst_nvenc_load_library (&api_major_ver, &api_minor_ver)) {
|
2024-02-20 16:13:02 +00:00
|
|
|
gst_plugin_add_status_warning (plugin,
|
|
|
|
"NVENC library \"" NVENC_LIBNAME "\" was not found.");
|
2019-11-28 09:54:31 +00:00
|
|
|
nvenc_available = FALSE;
|
|
|
|
}
|
|
|
|
|
2020-04-09 07:12:58 +00:00
|
|
|
if (!gst_cuvid_load_library (api_major_ver, api_minor_ver)) {
|
2023-01-24 05:56:02 +00:00
|
|
|
GST_WARNING ("Failed to load nvdec library version %u.%u", api_major_ver,
|
|
|
|
api_minor_ver);
|
2024-02-20 16:13:02 +00:00
|
|
|
gst_plugin_add_status_warning (plugin,
|
|
|
|
"NVDEC library \"" NVCUVID_LIBNAME "\" was not found.");
|
2020-04-09 07:12:58 +00:00
|
|
|
nvdec_available = FALSE;
|
|
|
|
}
|
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
if (!nvdec_available && !nvenc_available)
|
nvdec,nvenc: Port to dynamic library loading
... and put them into new nvcodec plugin.
* nvcodec plugin
Now each nvenc and nvdec element is moved to be a part of nvcodec plugin
for better interoperability.
Additionally, cuda runtime API header dependencies
(i.e., cuda_runtime_api.h and cuda_gl_interop.h) are removed.
Note that cuda runtime APIs have prefix "cuda". Since 1.16 release with
Windows support, only "cuda.h" and "cudaGL.h" dependent symbols have
been used except for some defined types. However, those types could be
replaced with other types which were defined by "cuda.h".
* dynamic library loading
CUDA library will be opened with g_module_open() instead of build-time linking.
On Windows, nvcuda.dll is installed to system path by CUDA Toolkit
installer, and on *nix, user should ensure that libcuda.so.1 can be
loadable (i.e., via LD_LIBRARY_PATH or default dlopen path)
Therefore, NVIDIA_VIDEO_CODEC_SDK_PATH env build time dependency for Windows
is removed.
2019-05-17 13:27:50 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
cuda_ret = CuInit (0);
|
|
|
|
if (cuda_ret != CUDA_SUCCESS) {
|
2023-01-24 05:56:02 +00:00
|
|
|
CuGetErrorName (cuda_ret, &err_name);
|
|
|
|
CuGetErrorString (cuda_ret, &err_desc);
|
|
|
|
GST_ERROR ("Failed to init cuda, cuInit ret: 0x%x: %s: %s",
|
|
|
|
(int) cuda_ret, err_name, err_desc);
|
2024-01-29 14:25:35 +00:00
|
|
|
|
|
|
|
/* to abort if GST_CUDA_CRITICAL_ERRORS is configured */
|
|
|
|
gst_cuda_result (CUDA_ERROR_NO_DEVICE);
|
2024-02-20 16:13:02 +00:00
|
|
|
|
|
|
|
gst_plugin_add_status_error (plugin,
|
|
|
|
N_("Unable to initialize CUDA library."));
|
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-01-24 05:46:38 +00:00
|
|
|
cuda_ret = CuDeviceGetCount (&dev_count);
|
|
|
|
if (cuda_ret != CUDA_SUCCESS || !dev_count) {
|
2023-01-24 05:56:02 +00:00
|
|
|
CuGetErrorName (cuda_ret, &err_name);
|
|
|
|
CuGetErrorString (cuda_ret, &err_desc);
|
|
|
|
GST_ERROR ("No available device, cuDeviceGetCount ret: 0x%x: %s %s",
|
|
|
|
(int) cuda_ret, err_name, err_desc);
|
2024-02-20 16:13:02 +00:00
|
|
|
|
|
|
|
gst_plugin_add_status_warning (plugin,
|
|
|
|
N_("No NVIDIA graphics cards detected!"));
|
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
return TRUE;
|
nvdec,nvenc: Port to dynamic library loading
... and put them into new nvcodec plugin.
* nvcodec plugin
Now each nvenc and nvdec element is moved to be a part of nvcodec plugin
for better interoperability.
Additionally, cuda runtime API header dependencies
(i.e., cuda_runtime_api.h and cuda_gl_interop.h) are removed.
Note that cuda runtime APIs have prefix "cuda". Since 1.16 release with
Windows support, only "cuda.h" and "cudaGL.h" dependent symbols have
been used except for some defined types. However, those types could be
replaced with other types which were defined by "cuda.h".
* dynamic library loading
CUDA library will be opened with g_module_open() instead of build-time linking.
On Windows, nvcuda.dll is installed to system path by CUDA Toolkit
installer, and on *nix, user should ensure that libcuda.so.1 can be
loadable (i.e., via LD_LIBRARY_PATH or default dlopen path)
Therefore, NVIDIA_VIDEO_CODEC_SDK_PATH env build time dependency for Windows
is removed.
2019-05-17 13:27:50 +00:00
|
|
|
}
|
|
|
|
|
2024-01-30 14:17:28 +00:00
|
|
|
have_nvrtc = check_runtime_compiler ();
|
2024-02-20 16:13:02 +00:00
|
|
|
if (!have_nvrtc) {
|
|
|
|
gst_plugin_add_status_info (plugin,
|
|
|
|
"CUDA runtime compilation library \"" NVRTC_LIBNAME "\" was not found, "
|
|
|
|
"check CUDA toolkit package installation");
|
|
|
|
}
|
2024-01-30 14:17:28 +00:00
|
|
|
|
2019-11-28 09:54:31 +00:00
|
|
|
for (i = 0; i < dev_count; i++) {
|
2022-03-15 19:58:16 +00:00
|
|
|
GstCudaContext *context = gst_cuda_context_new (i);
|
2019-11-28 09:54:31 +00:00
|
|
|
CUcontext cuda_ctx;
|
2023-09-27 15:03:08 +00:00
|
|
|
gint64 adapter_luid = 0;
|
2019-11-28 09:54:31 +00:00
|
|
|
|
2022-03-15 19:58:16 +00:00
|
|
|
if (!context) {
|
2023-01-24 05:56:02 +00:00
|
|
|
GST_WARNING ("Failed to create context for device %d", i);
|
2019-11-28 09:54:31 +00:00
|
|
|
continue;
|
|
|
|
}
|
2023-09-27 15:03:08 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
g_object_get (context, "dxgi-adapter-luid", &adapter_luid, NULL);
|
|
|
|
#endif
|
2019-11-28 09:54:31 +00:00
|
|
|
|
2022-03-15 19:58:16 +00:00
|
|
|
cuda_ctx = gst_cuda_context_get_handle (context);
|
2020-04-16 14:27:31 +00:00
|
|
|
if (nvdec_available) {
|
|
|
|
gint j;
|
|
|
|
|
|
|
|
for (j = 0; j < cudaVideoCodec_NumCodecs; j++) {
|
|
|
|
GstCaps *sink_template = NULL;
|
|
|
|
GstCaps *src_template = NULL;
|
|
|
|
cudaVideoCodec codec = (cudaVideoCodec) j;
|
2023-02-21 10:54:12 +00:00
|
|
|
gboolean register_cuviddec = FALSE;
|
2020-04-16 14:27:31 +00:00
|
|
|
|
|
|
|
if (gst_nv_decoder_check_device_caps (cuda_ctx,
|
|
|
|
codec, &sink_template, &src_template)) {
|
|
|
|
const gchar *codec_name = gst_cuda_video_codec_to_string (codec);
|
|
|
|
|
|
|
|
GST_INFO ("CUDA video codec %s, sink template %" GST_PTR_FORMAT
|
|
|
|
"src template %" GST_PTR_FORMAT, codec_name,
|
|
|
|
sink_template, src_template);
|
|
|
|
|
2020-06-19 20:57:59 +00:00
|
|
|
switch (codec) {
|
|
|
|
case cudaVideoCodec_H264:
|
2023-02-21 10:54:12 +00:00
|
|
|
/* higher than avdec_h264 */
|
2023-09-27 15:03:08 +00:00
|
|
|
gst_nv_h264_dec_register (plugin, i, adapter_luid,
|
|
|
|
GST_RANK_PRIMARY + 1, sink_template, src_template);
|
2020-06-19 20:57:59 +00:00
|
|
|
break;
|
|
|
|
case cudaVideoCodec_HEVC:
|
2023-02-21 10:54:12 +00:00
|
|
|
/* higher than avdec_h265 */
|
2023-09-27 15:03:08 +00:00
|
|
|
gst_nv_h265_dec_register (plugin, i, adapter_luid,
|
|
|
|
GST_RANK_PRIMARY + 1, sink_template, src_template);
|
2020-06-19 20:57:59 +00:00
|
|
|
break;
|
2020-10-30 11:37:44 +00:00
|
|
|
case cudaVideoCodec_VP8:
|
2023-09-27 15:03:08 +00:00
|
|
|
gst_nv_vp8_dec_register (plugin, i, adapter_luid,
|
|
|
|
GST_RANK_PRIMARY, sink_template, src_template);
|
2020-10-30 11:37:44 +00:00
|
|
|
break;
|
2020-10-30 14:22:01 +00:00
|
|
|
case cudaVideoCodec_VP9:
|
2023-09-27 15:03:08 +00:00
|
|
|
gst_nv_vp9_dec_register (plugin, i, adapter_luid,
|
|
|
|
GST_RANK_PRIMARY, sink_template, src_template);
|
2020-10-30 14:22:01 +00:00
|
|
|
break;
|
2022-05-02 13:59:59 +00:00
|
|
|
case cudaVideoCodec_AV1:
|
2023-02-21 10:54:12 +00:00
|
|
|
/* rust dav1ddec has "primary" rank */
|
2023-09-27 15:03:08 +00:00
|
|
|
gst_nv_av1_dec_register (plugin, i, adapter_luid,
|
|
|
|
GST_RANK_PRIMARY + 1, sink_template, src_template);
|
2022-05-02 13:59:59 +00:00
|
|
|
break;
|
2020-06-19 20:57:59 +00:00
|
|
|
default:
|
2023-02-21 10:54:12 +00:00
|
|
|
register_cuviddec = TRUE;
|
2020-06-19 20:57:59 +00:00
|
|
|
break;
|
2020-04-22 05:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (register_cuviddec) {
|
|
|
|
gst_nvdec_plugin_init (plugin,
|
|
|
|
i, codec, codec_name, sink_template, src_template);
|
2020-04-16 14:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gst_caps_unref (sink_template);
|
|
|
|
gst_caps_unref (src_template);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-28 09:54:31 +00:00
|
|
|
|
2022-03-15 19:58:16 +00:00
|
|
|
if (nvenc_available) {
|
2022-06-22 16:10:38 +00:00
|
|
|
GstNvEncoderClassData *cdata;
|
|
|
|
|
2023-02-05 17:41:57 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2022-03-15 19:58:16 +00:00
|
|
|
if (g_win32_check_windows_version (6, 0, 0, G_WIN32_OS_ANY)) {
|
|
|
|
GstD3D11Device *d3d11_device;
|
|
|
|
|
|
|
|
d3d11_device = gst_d3d11_device_new_for_adapter_luid (adapter_luid,
|
|
|
|
D3D11_CREATE_DEVICE_BGRA_SUPPORT);
|
|
|
|
if (!d3d11_device) {
|
|
|
|
GST_WARNING ("Failed to d3d11 create device");
|
|
|
|
} else {
|
2022-06-22 16:10:38 +00:00
|
|
|
cdata = gst_nv_h264_encoder_register_d3d11 (plugin,
|
2022-03-15 19:58:16 +00:00
|
|
|
d3d11_device, GST_RANK_NONE);
|
2022-06-22 16:10:38 +00:00
|
|
|
if (cdata)
|
|
|
|
h264_enc_cdata = g_list_append (h264_enc_cdata, cdata);
|
|
|
|
|
|
|
|
cdata = gst_nv_h265_encoder_register_d3d11 (plugin,
|
2022-03-15 19:58:16 +00:00
|
|
|
d3d11_device, GST_RANK_NONE);
|
2022-06-22 16:10:38 +00:00
|
|
|
if (cdata)
|
|
|
|
h265_enc_cdata = g_list_append (h265_enc_cdata, cdata);
|
|
|
|
|
2024-04-28 09:26:43 +00:00
|
|
|
cdata = gst_nv_av1_encoder_register_d3d11 (plugin,
|
|
|
|
d3d11_device, GST_RANK_NONE);
|
|
|
|
if (cdata)
|
|
|
|
av1_enc_cdata = g_list_append (av1_enc_cdata, cdata);
|
|
|
|
|
2022-03-15 19:58:16 +00:00
|
|
|
gst_object_unref (d3d11_device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2024-04-28 09:35:56 +00:00
|
|
|
cdata = gst_nv_h264_encoder_register_cuda (plugin,
|
|
|
|
context, GST_RANK_PRIMARY + 1);
|
2022-06-22 16:10:38 +00:00
|
|
|
if (cdata)
|
|
|
|
h264_enc_cdata = g_list_append (h264_enc_cdata, cdata);
|
|
|
|
|
2024-04-28 09:35:56 +00:00
|
|
|
cdata = gst_nv_h265_encoder_register_cuda (plugin,
|
|
|
|
context, GST_RANK_PRIMARY + 1);
|
2022-06-22 16:10:38 +00:00
|
|
|
if (cdata)
|
|
|
|
h265_enc_cdata = g_list_append (h265_enc_cdata, cdata);
|
2024-04-28 09:26:43 +00:00
|
|
|
|
|
|
|
cdata = gst_nv_av1_encoder_register_cuda (plugin,
|
|
|
|
context, GST_RANK_PRIMARY + 1);
|
|
|
|
if (cdata)
|
|
|
|
av1_enc_cdata = g_list_append (av1_enc_cdata, cdata);
|
2022-03-15 19:58:16 +00:00
|
|
|
}
|
2019-11-28 09:54:31 +00:00
|
|
|
|
2024-01-29 17:58:03 +00:00
|
|
|
gst_nv_jpeg_enc_register (plugin, context, GST_RANK_NONE, have_nvrtc);
|
|
|
|
|
2022-03-15 19:58:16 +00:00
|
|
|
gst_object_unref (context);
|
2019-11-28 09:54:31 +00:00
|
|
|
}
|
nvdec,nvenc: Port to dynamic library loading
... and put them into new nvcodec plugin.
* nvcodec plugin
Now each nvenc and nvdec element is moved to be a part of nvcodec plugin
for better interoperability.
Additionally, cuda runtime API header dependencies
(i.e., cuda_runtime_api.h and cuda_gl_interop.h) are removed.
Note that cuda runtime APIs have prefix "cuda". Since 1.16 release with
Windows support, only "cuda.h" and "cudaGL.h" dependent symbols have
been used except for some defined types. However, those types could be
replaced with other types which were defined by "cuda.h".
* dynamic library loading
CUDA library will be opened with g_module_open() instead of build-time linking.
On Windows, nvcuda.dll is installed to system path by CUDA Toolkit
installer, and on *nix, user should ensure that libcuda.so.1 can be
loadable (i.e., via LD_LIBRARY_PATH or default dlopen path)
Therefore, NVIDIA_VIDEO_CODEC_SDK_PATH env build time dependency for Windows
is removed.
2019-05-17 13:27:50 +00:00
|
|
|
|
2022-06-22 16:10:38 +00:00
|
|
|
if (h264_enc_cdata) {
|
|
|
|
gst_nv_h264_encoder_register_auto_select (plugin, h264_enc_cdata,
|
|
|
|
GST_RANK_NONE);
|
|
|
|
}
|
2024-04-28 09:26:43 +00:00
|
|
|
|
2022-06-22 16:10:38 +00:00
|
|
|
if (h265_enc_cdata) {
|
|
|
|
gst_nv_h265_encoder_register_auto_select (plugin, h265_enc_cdata,
|
|
|
|
GST_RANK_NONE);
|
|
|
|
}
|
|
|
|
|
2024-04-28 09:26:43 +00:00
|
|
|
if (av1_enc_cdata) {
|
|
|
|
gst_nv_av1_encoder_register_auto_select (plugin, av1_enc_cdata,
|
|
|
|
GST_RANK_NONE);
|
|
|
|
}
|
|
|
|
|
2022-03-03 18:33:41 +00:00
|
|
|
gst_cuda_memory_copy_register (plugin, GST_RANK_NONE);
|
2024-01-30 14:17:28 +00:00
|
|
|
|
|
|
|
if (have_nvrtc) {
|
|
|
|
gst_element_register (plugin, "cudaconvert", GST_RANK_NONE,
|
|
|
|
GST_TYPE_CUDA_CONVERT);
|
|
|
|
gst_element_register (plugin, "cudascale", GST_RANK_NONE,
|
|
|
|
GST_TYPE_CUDA_SCALE);
|
|
|
|
gst_element_register (plugin, "cudaconvertscale", GST_RANK_NONE,
|
|
|
|
GST_TYPE_CUDA_CONVERT_SCALE);
|
|
|
|
}
|
2023-04-18 16:56:20 +00:00
|
|
|
gst_element_register (plugin,
|
|
|
|
"cudaipcsink", GST_RANK_NONE, GST_TYPE_CUDA_IPC_SINK);
|
|
|
|
gst_element_register (plugin,
|
|
|
|
"cudaipcsrc", GST_RANK_NONE, GST_TYPE_CUDA_IPC_SRC);
|
|
|
|
|
2022-03-02 18:25:47 +00:00
|
|
|
gst_cuda_memory_init_once ();
|
2019-10-16 13:42:55 +00:00
|
|
|
|
2022-03-04 17:30:24 +00:00
|
|
|
#ifdef HAVE_NVCODEC_NVMM
|
|
|
|
if (gst_cuda_nvmm_init_once ()) {
|
|
|
|
GST_INFO ("Enable NVMM support");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-04-18 16:56:20 +00:00
|
|
|
g_object_set_data_full (G_OBJECT (plugin),
|
|
|
|
"plugin-nvcodec-shutdown", (gpointer) "shutdown-data",
|
|
|
|
(GDestroyNotify) plugin_deinit);
|
|
|
|
|
nvdec,nvenc: Port to dynamic library loading
... and put them into new nvcodec plugin.
* nvcodec plugin
Now each nvenc and nvdec element is moved to be a part of nvcodec plugin
for better interoperability.
Additionally, cuda runtime API header dependencies
(i.e., cuda_runtime_api.h and cuda_gl_interop.h) are removed.
Note that cuda runtime APIs have prefix "cuda". Since 1.16 release with
Windows support, only "cuda.h" and "cudaGL.h" dependent symbols have
been used except for some defined types. However, those types could be
replaced with other types which were defined by "cuda.h".
* dynamic library loading
CUDA library will be opened with g_module_open() instead of build-time linking.
On Windows, nvcuda.dll is installed to system path by CUDA Toolkit
installer, and on *nix, user should ensure that libcuda.so.1 can be
loadable (i.e., via LD_LIBRARY_PATH or default dlopen path)
Therefore, NVIDIA_VIDEO_CODEC_SDK_PATH env build time dependency for Windows
is removed.
2019-05-17 13:27:50 +00:00
|
|
|
return TRUE;
|
2017-05-03 00:21:43 +00:00
|
|
|
}
|
|
|
|
|
nvdec,nvenc: Port to dynamic library loading
... and put them into new nvcodec plugin.
* nvcodec plugin
Now each nvenc and nvdec element is moved to be a part of nvcodec plugin
for better interoperability.
Additionally, cuda runtime API header dependencies
(i.e., cuda_runtime_api.h and cuda_gl_interop.h) are removed.
Note that cuda runtime APIs have prefix "cuda". Since 1.16 release with
Windows support, only "cuda.h" and "cudaGL.h" dependent symbols have
been used except for some defined types. However, those types could be
replaced with other types which were defined by "cuda.h".
* dynamic library loading
CUDA library will be opened with g_module_open() instead of build-time linking.
On Windows, nvcuda.dll is installed to system path by CUDA Toolkit
installer, and on *nix, user should ensure that libcuda.so.1 can be
loadable (i.e., via LD_LIBRARY_PATH or default dlopen path)
Therefore, NVIDIA_VIDEO_CODEC_SDK_PATH env build time dependency for Windows
is removed.
2019-05-17 13:27:50 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, nvcodec,
|
|
|
|
"GStreamer NVCODEC plugin", plugin_init, VERSION, "LGPL",
|
2017-05-03 00:21:43 +00:00
|
|
|
GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|