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
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2019 Seungha Yang <seungha.yang@navercorp.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_CUDA_LOADER_H__
|
|
|
|
#define __GST_CUDA_LOADER_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <cuda.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
gboolean gst_cuda_load_library (void);
|
|
|
|
|
|
|
|
/* cuda.h */
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuInit (unsigned int Flags);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGetErrorName (CUresult error,
|
|
|
|
const char **pStr);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGetErrorString (CUresult error,
|
|
|
|
const char **pStr);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuCtxCreate (CUcontext * pctx,
|
|
|
|
unsigned int flags,
|
|
|
|
CUdevice dev);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuCtxDestroy (CUcontext ctx);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuCtxPopCurrent (CUcontext * pctx);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuCtxPushCurrent (CUcontext ctx);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsMapResources (unsigned int count,
|
|
|
|
CUgraphicsResource * resources,
|
|
|
|
CUstream hStream);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsUnmapResources (unsigned int count,
|
|
|
|
CUgraphicsResource * resources,
|
|
|
|
CUstream hStream);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsSubResourceGetMappedArray (CUarray * pArray,
|
|
|
|
CUgraphicsResource resource,
|
|
|
|
unsigned int arrayIndex,
|
|
|
|
unsigned int mipLevel);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsResourceGetMappedPointer (CUdeviceptr * pDevPtr,
|
|
|
|
size_t * pSize,
|
|
|
|
CUgraphicsResource resource);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsUnregisterResource (CUgraphicsResource resource);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuMemAlloc (CUdeviceptr * dptr,
|
|
|
|
unsigned int bytesize);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuMemAllocPitch (CUdeviceptr * dptr,
|
|
|
|
size_t * pPitch,
|
|
|
|
size_t WidthInBytes,
|
|
|
|
size_t Height,
|
|
|
|
unsigned int ElementSizeBytes);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuMemcpy2D (const CUDA_MEMCPY2D * pCopy);
|
|
|
|
|
2019-07-19 13:46:01 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuMemcpy2DAsync (const CUDA_MEMCPY2D *pCopy, CUstream hStream);
|
|
|
|
|
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
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuMemFree (CUdeviceptr dptr);
|
|
|
|
|
2019-08-18 13:07:38 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuStreamCreate (CUstream *phStream,
|
|
|
|
unsigned int Flags);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuStreamDestroy (CUstream hStream);
|
|
|
|
|
2019-07-19 13:46:01 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuStreamSynchronize (CUstream hStream);
|
|
|
|
|
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
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuDeviceGet (CUdevice * device,
|
|
|
|
int ordinal);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuDeviceGetCount (int *count);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuDeviceGetName (char *name,
|
|
|
|
int len,
|
|
|
|
CUdevice dev);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuDeviceGetAttribute (int *pi,
|
|
|
|
CUdevice_attribute attrib,
|
|
|
|
CUdevice dev);
|
|
|
|
|
|
|
|
/* cudaGL.h */
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsGLRegisterImage (CUgraphicsResource * pCudaResource,
|
|
|
|
unsigned int image,
|
|
|
|
unsigned int target,
|
|
|
|
unsigned int Flags);
|
|
|
|
|
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsGLRegisterBuffer (CUgraphicsResource * pCudaResource,
|
|
|
|
unsigned int buffer,
|
|
|
|
unsigned int Flags);
|
|
|
|
|
2019-08-17 08:45:44 +00:00
|
|
|
G_GNUC_INTERNAL
|
|
|
|
CUresult CuGraphicsResourceSetMapFlags (CUgraphicsResource resource,
|
|
|
|
unsigned int flags);
|
|
|
|
|
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
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_CUDA_LOADER_H__ */
|