mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
2d9132c590
GstVdpVideoOutputPool is a subclass of GstVdpBufferPool that caches GstVdpOutputBuffers
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
lib_LTLIBRARIES = libgstvdp-@GST_MAJORMINOR@.la
|
|
|
|
libgstvdp_@GST_MAJORMINOR@_la_SOURCES = \
|
|
gstvdpdevice.c \
|
|
gstvdputils.c \
|
|
gstvdpbuffer.c \
|
|
gstvdpbufferpool.c \
|
|
gstvdpvideobuffer.c \
|
|
gstvdpvideobufferpool.c \
|
|
gstvdpoutputbuffer.c \
|
|
gstvdpoutputbufferpool.c \
|
|
gstvdpvideosrcpad.c \
|
|
gstvdpoutputsrcpad.c \
|
|
gstvdpdecoder.c \
|
|
gstvdp.c
|
|
|
|
libgstvdp_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/vdpau
|
|
libgstvdp_@GST_MAJORMINOR@include_HEADERS = \
|
|
gstvdpdevice.h \
|
|
gstvdputils.h \
|
|
gstvdpbuffer.h \
|
|
gstvdpbufferpool.h \
|
|
gstvdpvideobuffer.h \
|
|
gstvdpvideobufferpool.h \
|
|
gstvdpoutputbuffer.h \
|
|
gstvdpoutputbufferpool.h \
|
|
gstvdpvideosrcpad.h \
|
|
gstvdpoutputsrcpad.h \
|
|
gstvdpdecoder.h \
|
|
gstvdp.h
|
|
|
|
libgstvdp_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(X11_CFLAGS) $(VDPAU_CFLAGS)
|
|
|
|
libgstvdp_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS) $(X11_LIBS) $(VDPAU_LIBS) \
|
|
-lgstvideo-$(GST_MAJORMINOR) \
|
|
../basevideodecoder/libgstbasevideodecoder.la
|
|
|
|
libgstvdp_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_LT_LDFLAGS) $(GST_ALL_LDFLAGS)
|
|
libgstvdp_@GST_MAJORMINOR@_la_LIBTOOLFLAGS = --tag=disable-static
|