mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
54f5eb6c8a
Original commit message from CVS: * gst/elements/Makefile.am: * gst/elements/gstfakesink.c: (gst_fake_sink_state_error_get_type): * gst/elements/gstfakesrc.c: (gst_fake_src_data_get_type), (gst_fake_src_sizetype_get_type), (gst_fake_src_filltype_get_type), (gst_fake_src_init), (gst_fake_src_prepare_buffer), (gst_fake_src_alloc_buffer), (gst_fake_src_get_size): * gst/elements/gstfakesrc.h: * gst/gstqueue.c: (queue_leaky_get_type): correctly fix GEnumValues so that nick is the short lowercase dashed tag * tools/gst-inspect.c: (print_element_properties_info): also show the nick, since it's useful to use from parse_launch syntax Fixes #322139
46 lines
987 B
Makefile
46 lines
987 B
Makefile
# FIXME:
|
|
# need to get gstbufferstore.[ch] into its own lib, preferrably
|
|
# libs/gst/bufferstore
|
|
# This requires building libs/gst before this dir, which we currently don't
|
|
# do.
|
|
|
|
plugin_LTLIBRARIES = libgstelements.la
|
|
|
|
if HAVE_SYS_SOCKET_H
|
|
GSTFDSRC = gstfdsrc.c
|
|
else
|
|
GSTFDSRC =
|
|
endif
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstelements_la_SOURCES = \
|
|
gstbufferstore.c \
|
|
gstcapsfilter.c \
|
|
gstfakesrc.c \
|
|
gstfakesink.c \
|
|
$(GSTFDSRC) \
|
|
gstfilesink.c \
|
|
gstfilesrc.c \
|
|
gstidentity.c \
|
|
gstelements.c \
|
|
gsttee.c \
|
|
gsttypefindelement.c
|
|
|
|
libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstelements_la_LIBADD = \
|
|
$(top_builddir)/gst/base/libgstbase-@GST_MAJORMINOR@.la \
|
|
$(GST_OBJ_LIBS)
|
|
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstbufferstore.h \
|
|
gstfakesink.h \
|
|
gstfakesrc.h \
|
|
gstfdsrc.h \
|
|
gstfilesink.h \
|
|
gstfilesrc.h \
|
|
gstidentity.h \
|
|
gsttee.h \
|
|
gsttypefindelement.h
|
|
|
|
EXTRA_DIST = gstfdsrc.c
|