mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
b1d13e10af
Currently only h264 is supported https://bugzilla.gnome.org/show_bug.cgi?id=753405
33 lines
680 B
Makefile
33 lines
680 B
Makefile
plugin_LTLIBRARIES = libgstnvenc.la
|
|
|
|
libgstnvenc_la_SOURCES = \
|
|
gstnvenc.c \
|
|
gstnvbaseenc.c \
|
|
gstnvh264enc.c
|
|
|
|
noinst_HEADERS = \
|
|
gstnvenc.h \
|
|
gstnvbaseenc.h \
|
|
gstnvh264enc.h
|
|
|
|
libgstnvenc_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
$(GST_CFLAGS) \
|
|
$(GST_PBUTILS_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS) \
|
|
$(CUDA_CFLAGS) \
|
|
$(NVENCODE_CFLAGS)
|
|
|
|
libgstnvenc_la_LIBADD = \
|
|
$(GST_LIBS) \
|
|
$(GST_PBUTILS_LIBS) \
|
|
$(GST_VIDEO_LIBS) \
|
|
$(CUDA_LIBS) \
|
|
$(NVENCODE_LIBS)
|
|
|
|
if USE_NVENC_GST_GL
|
|
libgstnvenc_la_LIBADD += \
|
|
$(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la
|
|
endif
|
|
libgstnvenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstnvenc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|