gstreamer/subprojects/gst-plugins-bad/ext/nvdswrapper/stub/cuda_runtime.h
Seungha Yang a830c58139 nvdswrapper: Add NVIDIA DeepStream wrapper plugin
Adding a NVIDIA DeepStream SDK based plugin with a dewarp element

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7357>
2024-12-04 01:19:19 +00:00

18 lines
285 B
C

#pragma once
#include <glib.h>
G_BEGIN_DECLS
typedef struct CUstream_st* cudaStream_t;
typedef unsigned long long cudaTextureObject_t;
typedef unsigned long long cudaSurfaceObject_t;
typedef struct _dim3
{
unsigned int x;
unsigned int y;
unsigned int z;
} dim3;
G_END_DECLS