mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
72e3851f87
Original commit message from CVS: 2005-11-06 Julien MOUTTE <julien@moutte.net> * ext/directfb/Makefile.am: Add the example application. * ext/directfb/dfb-example.c: (get_me_out), (main): Here is an example application that runs videotestsrc for 20 seconds. It's included in the documentation. * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers), (gst_dfbvideosink_setup), (gst_dfbvideosink_can_blit_from_format), (gst_dfbvideosink_getcaps), (gst_dfbvideosink_buffer_alloc): More fixes, calculate new size of the buffer when renegotiating. This completely breaks ffmpegcolorspace but i need to discuss that with Wim on monday. Add documentation.
18 lines
656 B
Makefile
18 lines
656 B
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstdfbvideosink.la
|
|
|
|
libgstdfbvideosink_la_SOURCES = dfbvideosink.c
|
|
libgstdfbvideosink_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(DIRECTFB_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstdfbvideosink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_MAJORMINOR) \
|
|
-lgstinterfaces-$(GST_MAJORMINOR) \
|
|
$(DIRECTFB_LIBS) $(LIBOIL_LIBS)
|
|
libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = dfbvideosink.h
|
|
|
|
noinst_PROGRAMS = dfb-example
|
|
dfb_example_CFLAGS = $(GST_CFLAGS) $(DIRECTFB_CFLAGS)
|
|
dfb_example_LDADD = $(GST_LIBS) $(DIRECTFB_LIBS)
|