mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
f8e0c0bcc1
the GstVdpauYUVVideo element takes raw YUV video and outputs GstVdpauVideoBuffers
28 lines
679 B
Makefile
28 lines
679 B
Makefile
plugin_LTLIBRARIES = libgstvdpau.la
|
|
|
|
libgstvdpau_la_SOURCES = \
|
|
gstvdpaudevice.c \
|
|
gstvdpaudecoder.c \
|
|
gstvdpaumpegdecoder.c \
|
|
mpegutil.c \
|
|
gstvdpauvideoyuv.c \
|
|
gstvdpauvideobuffer.c \
|
|
gstvdpau.c \
|
|
gstvdpauyuvvideo.c
|
|
|
|
libgstvdpau_la_CFLAGS = $(GST_CFLAGS) $(X11_CFLAGS) -Ivdpau
|
|
libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) -lvdpau
|
|
libgstvdpau_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvdpau_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstvdpaudevice.h \
|
|
gstvdpaudecoder.h \
|
|
gstvdpaumpegdecoder.h \
|
|
mpegutil.h \
|
|
gstvdpauvideoyuv.h \
|
|
gstvdpauvideobuffer.h \
|
|
gstvdpauyuvvideo.h
|
|
|
|
|