mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
a830c58139
Adding a NVIDIA DeepStream SDK based plugin with a dewarp element Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7357>
18 lines
285 B
C
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
|