gstreamer/sys/vdpau/Makefile.am
Carl-Anton Ingmarsson 3e05ddca61 vdpau: add new vdpausink and vdpauvideopostprocess elements
vdpausink is as the name implies a sink which takes vide/x-vdpau-output buffers
and outputs it to the screen.

vdpauvideopostprocess is an element which takes video/x-vdpau-video buffers and
outputs video/x-vdpau-output buffers. The element can also do things like
deinterlacing and other postprocessing but this is not implemented yet.
2009-09-16 10:25:42 +01:00

35 lines
860 B
Makefile

plugin_LTLIBRARIES = libgstvdpau.la
libgstvdpau_la_SOURCES = \
gstvdpdevice.c \
gstvdpmpegdec.c \
mpegutil.c \
gstvdpvideoyuv.c \
gstvdpvideobuffer.c \
gstvdp.c \
gstvdpyuvvideo.c \
gstvdputils.c \
gstvdpvideopostprocess.c \
gstvdpoutputbuffer.c \
gstvdpsink.c
libgstvdpau_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X11_CFLAGS) $(VDPAU_CFLAGS)
libgstvdpau_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
$(GST_PLUGINS_BASE_LIBS) $(X11_LIBS) -lgstvideo-$(GST_MAJORMINOR) -lgstinterfaces-$(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 \
gstvdputils.h \
gstvdpvideopostprocess.h \
gstvdpoutputbuffer.h \
gstvdpsink.c