mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
3b15f24af0
Original commit message from CVS: * sys/glsink/BUGS: * sys/glsink/Makefile.am: * sys/glsink/gstglbuffer.c: * sys/glsink/gstglbuffer.h: * sys/glsink/gstglconvert.c: * sys/glsink/gstgldisplay.c: * sys/glsink/gstglfilter.c: * sys/glsink/gstglfilter.h: * sys/glsink/gstglfilterexample.c: * sys/glsink/gstgltestsrc.c: * sys/glsink/gstglupload.c: * sys/glsink/gstopengl.c: Remove code that handles non-texture buffers. Add a GstGLBufferFormat type that corresponds to how to use the texture, not the original video format. Convert gstflfilter.c into a base class, add glfilterexample and glconvert elements. * sys/glsink/color_matrix.c: Minor ramblings about color conversion matrices.
36 lines
858 B
Makefile
36 lines
858 B
Makefile
|
|
plugin_LTLIBRARIES = libgstglimagesink.la
|
|
|
|
noinst_PROGRAMS = color_matrix
|
|
|
|
AM_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
AM_LIBS = $(GST_BASE_LIBS)
|
|
|
|
libgstglimagesink_la_SOURCES = \
|
|
glimagesink.c \
|
|
gstgldisplay.c \
|
|
gstopengl.c \
|
|
glextensions.c \
|
|
gstglbuffer.c \
|
|
gstglupload.c \
|
|
gstgldownload.c \
|
|
gstgltestsrc.c \
|
|
gltestsrc.c \
|
|
gstglfilter.c \
|
|
gstglfilterexample.c \
|
|
gstglconvert.c
|
|
libgstglimagesink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstglimagesink_la_LIBADD = $(X_LIBS) $(XSHM_LIBS) -lGL \
|
|
$(GST_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-$(GST_MAJORMINOR)
|
|
libgstglimagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
glimagesink.h \
|
|
gstgldisplay.h \
|
|
glextensions.h \
|
|
gstgltestsrc.h \
|
|
gltestsrc.h \
|
|
gstglbuffer.h \
|
|
gstglfilter.h
|