mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
8ea74d2f7c
Original commit message from CVS: * plugins/elements/Makefile.am: * plugins/elements/gstelements.c: * plugins/elements/gstfdsink.c: (_do_init), (gst_fd_sink_base_init), (gst_fd_sink_class_init), (gst_fd_sink_init), (gst_fd_sink_dispose), (gst_fd_sink_query), (gst_fd_sink_render), (gst_fd_sink_check_fd), (gst_fd_sink_start), (gst_fd_sink_stop), (gst_fd_sink_unlock), (gst_fd_sink_update_fd), (gst_fd_sink_set_property), (gst_fd_sink_uri_get_type), (gst_fd_sink_uri_get_protocols), (gst_fd_sink_uri_get_uri), (gst_fd_sink_uri_set_uri), (gst_fd_sink_uri_handler_init): * plugins/elements/gstfdsink.h: Port fdsink to 0.10 (patch by Philippe Rouquier) (Fixes #325490)
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
# FIXME:
|
|
# need to get gstbufferstore.[ch] into its own lib, preferably
|
|
# libs/gst/bufferstore
|
|
# This requires building libs/gst before this dir, which we currently don't
|
|
# do.
|
|
|
|
plugin_LTLIBRARIES = libgstcoreelements.la
|
|
|
|
if HAVE_SYS_SOCKET_H
|
|
GSTFDSRC = gstfdsrc.c
|
|
GSTFDSINK = gstfdsink.c
|
|
else
|
|
GSTFDSRC =
|
|
GSTFDSINK =
|
|
endif
|
|
|
|
libgstcoreelements_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstcoreelements_la_SOURCES = \
|
|
gstbufferstore.c \
|
|
gstcapsfilter.c \
|
|
gstelements.c \
|
|
gstfakesrc.c \
|
|
gstfakesink.c \
|
|
$(GSTFDSRC) \
|
|
$(GSTFDSINK) \
|
|
gstfilesink.c \
|
|
gstfilesrc.c \
|
|
gstidentity.c \
|
|
gstqueue.c \
|
|
gsttee.c \
|
|
gsttypefindelement.c
|
|
|
|
libgstcoreelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstcoreelements_la_LIBADD = \
|
|
$(top_builddir)/libs/gst/base/libgstbase-@GST_MAJORMINOR@.la \
|
|
$(GST_OBJ_LIBS)
|
|
libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstbufferstore.h \
|
|
gstfakesink.h \
|
|
gstfakesrc.h \
|
|
gstfdsrc.h \
|
|
gstfdsink.h \
|
|
gstfilesink.h \
|
|
gstfilesrc.h \
|
|
gstidentity.h \
|
|
gstqueue.h \
|
|
gsttee.h \
|
|
gsttypefindelement.h
|
|
|
|
EXTRA_DIST = gstfdsrc.c \
|
|
gstfdsink.c
|