mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
[472/906] linpng: make libpng use conditional
Disable 3 elements if we don't have libpng.
This commit is contained in:
parent
268f1a30b2
commit
aacf88ffa5
2 changed files with 27 additions and 19 deletions
|
@ -7,8 +7,6 @@ AM_LIBS = $(GST_BASE_LIBS)
|
|||
# full opengl required
|
||||
if GL_IS_OPENGL
|
||||
OPENGL_SOURCES = \
|
||||
gstglbumper.c \
|
||||
gstglbumper.h \
|
||||
gstglfiltershader.c \
|
||||
gstglfiltershader.h \
|
||||
gstglfilterblur.c \
|
||||
|
@ -27,16 +25,12 @@ OPENGL_SOURCES = \
|
|||
gstglcolorscale.h \
|
||||
gstgldeinterlace.c \
|
||||
gstgldeinterlace.h \
|
||||
gstgldifferencematte.c \
|
||||
gstgldifferencematte.h \
|
||||
gstgloverlay.c \
|
||||
gltestsrc.c \
|
||||
gltestsrc.h \
|
||||
gstgltestsrc.c \
|
||||
gstgltestsrc.h \
|
||||
gstglmosaic.c \
|
||||
gstglmosaic.h \
|
||||
gstgloverlay.h \
|
||||
effects/gstgleffectscurves.h \
|
||||
effects/gstgleffectstretch.c \
|
||||
effects/gstgleffecttunnel.c \
|
||||
|
@ -50,6 +44,16 @@ OPENGL_SOURCES = \
|
|||
effects/gstgleffectsin.c \
|
||||
effects/gstgleffectglow.c \
|
||||
effects/gstgleffectxray.c
|
||||
|
||||
if HAVE_PNG
|
||||
OPENGL_SOURCES += \
|
||||
gstglbumper.c \
|
||||
gstglbumper.h \
|
||||
gstgldifferencematte.c \
|
||||
gstgldifferencematte.h \
|
||||
gstgloverlay.c \
|
||||
gstgloverlay.h
|
||||
endif
|
||||
endif
|
||||
|
||||
libgstopengl_la_SOURCES = \
|
||||
|
|
|
@ -118,19 +118,6 @@ plugin_init (GstPlugin * plugin)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
if (!gst_element_register (plugin, "gloverlay",
|
||||
GST_RANK_NONE, gst_gl_overlay_get_type ())) {
|
||||
return FALSE;
|
||||
}
|
||||
if (!gst_element_register (plugin, "gldifferencematte",
|
||||
GST_RANK_NONE, gst_gl_differencematte_get_type ())) {
|
||||
return FALSE;
|
||||
}
|
||||
if (!gst_element_register (plugin, "glbumper",
|
||||
GST_RANK_NONE, gst_gl_bumper_get_type ())) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!gst_element_register (plugin, "glfilterblur",
|
||||
GST_RANK_NONE, gst_gl_filterblur_get_type ())) {
|
||||
return FALSE;
|
||||
|
@ -175,10 +162,27 @@ plugin_init (GstPlugin * plugin)
|
|||
GST_RANK_NONE, GST_TYPE_GL_COLORSCALE)) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!gst_element_register (plugin, "glmosaic",
|
||||
GST_RANK_NONE, GST_TYPE_GL_MOSAIC)) {
|
||||
return FALSE;
|
||||
}
|
||||
#ifdef HAVE_PNG
|
||||
if (!gst_element_register (plugin, "gldifferencematte",
|
||||
GST_RANK_NONE, gst_gl_differencematte_get_type ())) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!gst_element_register (plugin, "glbumper",
|
||||
GST_RANK_NONE, gst_gl_bumper_get_type ())) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!gst_element_register (plugin, "gloverlay",
|
||||
GST_RANK_NONE, gst_gl_overlay_get_type ())) {
|
||||
return FALSE;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue