2017-12-11 14:20:59 +00:00
|
|
|
plugin_LTLIBRARIES = libgstopenglmixers.la
|
2003-10-28 18:54:20 +00:00
|
|
|
|
2017-12-11 14:20:59 +00:00
|
|
|
# These have to stay in -bad until we can move GstVideoAggregator to -base
|
|
|
|
libgstopenglmixers_la_SOURCES = \
|
2015-02-25 00:01:45 +00:00
|
|
|
gstopengl.c \
|
2015-02-11 03:48:45 +00:00
|
|
|
gstglbasemixer.c \
|
2015-02-25 00:01:45 +00:00
|
|
|
gstglmixer.c \
|
2017-12-11 14:20:59 +00:00
|
|
|
gstglmixerbin.c \
|
2016-02-26 09:55:47 +00:00
|
|
|
gstglstereomix.c \
|
2017-12-11 14:20:59 +00:00
|
|
|
gstglutils.c \
|
|
|
|
gstglvideomixer.c
|
2007-12-27 00:52:22 +00:00
|
|
|
|
2015-02-25 00:01:45 +00:00
|
|
|
noinst_HEADERS = \
|
2015-02-11 03:48:45 +00:00
|
|
|
gstglbasemixer.h \
|
2015-02-25 00:01:45 +00:00
|
|
|
gstglmixer.h \
|
2017-12-11 14:20:59 +00:00
|
|
|
gstglmixerbin.h \
|
2015-10-26 13:36:41 +00:00
|
|
|
gstglstereomix.h \
|
2017-12-11 14:20:59 +00:00
|
|
|
gstglutils.h \
|
|
|
|
gstglvideomixer.h
|
2015-01-29 06:41:19 +00:00
|
|
|
|
2009-09-01 12:21:39 +00:00
|
|
|
# full opengl required
|
2012-12-06 07:40:26 +00:00
|
|
|
if USE_OPENGL
|
2017-12-11 14:20:59 +00:00
|
|
|
libgstopenglmixers_la_SOURCES += gstglmosaic.c
|
|
|
|
noinst_HEADERS += gstglmosaic.h
|
2011-11-18 10:52:10 +00:00
|
|
|
endif
|
2009-09-01 12:21:39 +00:00
|
|
|
|
2017-12-11 14:20:59 +00:00
|
|
|
# FIXME: can we remove GL flags here?
|
2015-01-29 06:41:19 +00:00
|
|
|
|
2008-01-18 15:13:16 +00:00
|
|
|
# check order of CFLAGS and LIBS, shouldn't the order be the other way around
|
|
|
|
# (like in AM_CFLAGS)?
|
2017-12-11 14:20:59 +00:00
|
|
|
libgstopenglmixers_la_CFLAGS = \
|
|
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
2017-12-17 20:54:06 +00:00
|
|
|
$(GST_GL_CFLAGS) \
|
2017-12-23 11:29:03 +00:00
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
2017-12-11 14:20:59 +00:00
|
|
|
$(GST_BASE_CFLAGS) \
|
2017-01-10 01:51:51 +00:00
|
|
|
$(GST_CONTROLLER_CFLAGS) \
|
2017-12-11 14:20:59 +00:00
|
|
|
$(GST_CFLAGS) \
|
2018-03-25 09:53:06 +00:00
|
|
|
$(X11_CFLAGS) \
|
|
|
|
-Dgst_gl_context_gen_shader=gst_gl_bad_context_gen_shader \
|
|
|
|
-Dgst_gl_multiply_matrix4=Dgst_gl_bad_multiply_matrix4 \
|
|
|
|
-Dgst_gl_get_affine_transformation_meta_as_ndc_ext=Dgst_gl_bad_get_affine_transformation_meta_as_ndc_ext \
|
|
|
|
-Dgst_gl_set_affine_transformation_meta_from_ndc_ext=Dgst_gl_bad_set_affine_transformation_meta_from_ndc_ext
|
2008-08-18 14:16:58 +00:00
|
|
|
|
2017-12-11 14:20:59 +00:00
|
|
|
libgstopenglmixers_la_LIBADD = \
|
|
|
|
$(top_builddir)/gst-libs/gst/video/libgstbadvideo-@GST_API_VERSION@.la \
|
2017-12-17 20:54:06 +00:00
|
|
|
$(GST_GL_LIBS) \
|
2017-12-23 11:53:39 +00:00
|
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
2008-01-18 15:13:16 +00:00
|
|
|
$(GST_BASE_LIBS) \
|
2017-01-10 01:51:51 +00:00
|
|
|
$(GST_CONTROLLER_LIBS) \
|
2017-12-11 14:20:59 +00:00
|
|
|
$(GST_LIBS) \
|
2018-02-18 09:49:25 +00:00
|
|
|
$(X11_LIBS) \
|
2017-12-11 14:20:59 +00:00
|
|
|
$(LIBM)
|
2004-08-09 20:14:51 +00:00
|
|
|
|
2017-12-11 14:20:59 +00:00
|
|
|
libgstopenglmixers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstopenglmixers_la_LIBTOOLFLAGS = --tag=CC
|