mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
73cd1aa9dc
Since cuda-tools 9.0, nvcuvid.h is replaced by dynlink_nvcuvid.h. This patch changes nvdec to use run-time dynamic linking if cuda-tools version >= 9. nvenc does not require any change since its necessary headers are still available. https://bugzilla.gnome.org/show_bug.cgi?id=791724
33 lines
617 B
Makefile
33 lines
617 B
Makefile
plugin_LTLIBRARIES = libgstnvdec.la
|
|
|
|
libgstnvdec_la_SOURCES = \
|
|
gstnvdec.c \
|
|
plugin.c
|
|
|
|
if USE_DYNLINK_NVDEC
|
|
libgstnvdec_la_SOURCES += dynlink_nvcuvid.c
|
|
libgstnvdec_la_SOURCES += dynlink_cuda.c
|
|
endif
|
|
|
|
noinst_HEADERS = \
|
|
gstnvdec.h
|
|
|
|
libgstnvdec_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_GL_CFLAGS) \
|
|
$(GST_PBUTILS_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(CUDA_CFLAGS)
|
|
|
|
libgstnvdec_la_LIBADD = \
|
|
$(GST_GL_LIBS) \
|
|
$(GST_PBUTILS_LIBS) \
|
|
$(GST_VIDEO_LIBS) \
|
|
$(GST_LIBS)
|
|
|
|
if !USE_DYNLINK_NVDEC
|
|
libgstnvdec_la_LIBADD += $(CUDA_LIBS) -lnvcuvid
|
|
endif
|
|
|
|
libgstnvdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|