mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
Check for the VDPAU headers in /usr/include/nvidia as they are on some platforms (Fedora/rpmfusion). Also check that the libvdpau library is available.
27 lines
624 B
Makefile
27 lines
624 B
Makefile
plugin_LTLIBRARIES = libgstvdpau.la
|
|
|
|
libgstvdpau_la_SOURCES = \
|
|
gstvdpdevice.c \
|
|
gstvdpmpegdec.c \
|
|
mpegutil.c \
|
|
gstvdpvideoyuv.c \
|
|
gstvdpvideobuffer.c \
|
|
gstvdp.c \
|
|
gstvdpyuvvideo.c
|
|
|
|
libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) $(VDPAU_CFLAGS)
|
|
libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
|
|
$(VDPAU_LIBS)
|
|
libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstvdpdevice.h \
|
|
gstvdpmpegdec.h \
|
|
mpegutil.h \
|
|
gstvdpvideoyuv.h \
|
|
gstvdpvideobuffer.h \
|
|
gstvdpyuvvideo.h
|
|
|
|
|