mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
5e19f0229d
Original commit message from CVS: * configure.ac: * gst/games/Makefile.am: * gst/games/gstpuzzle.c: add a puzzle game with... * gst/games/gstvideoimage.c: * gst/games/gstvideoimage.h: ... full colorspace support (that includes YUV9 and RGB16)) stolen from videotestsrc and made into something that would be a nice library for a lot of other plugins.
12 lines
317 B
Makefile
12 lines
317 B
Makefile
|
|
plugin_LTLIBRARIES = libgstpuzzle.la
|
|
|
|
libgstpuzzle_la_SOURCES = \
|
|
gstvideoimage.c \
|
|
gstpuzzle.c
|
|
|
|
libgstpuzzle_la_CFLAGS = $(GST_CFLAGS) $(LIBOIL_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
|
libgstpuzzle_la_LIBADD =
|
|
libgstpuzzle_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBOIL_LIBS)
|
|
|
|
noinst_HEADERS = gstvideoimage.h
|