mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
cccc097ca5
Original commit message from CVS: API docs. revived _buffer_ref_by_count fast types for scheduler and bin. error checking on plugin features; removed some prototypes that were not implemented (gst_pipeline_iterate comes to mind) remove gst_pad_event until we know what it's supposed to do. remove sinesrc, it wasn't compiles anymore, so... updates to various elements that used the old event API.
48 lines
898 B
Makefile
48 lines
898 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstelements.la
|
|
|
|
if USE_LIBGHTTP
|
|
GSTHTTPSRC=gsthttpsrc.c
|
|
else
|
|
GSTHTTPSRC=
|
|
endif
|
|
|
|
#CFLAGS += -O2 -Wall -finstrument-functions -DGST_ENABLE_FUNC_INSTRUMENTATION
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgst.la
|
|
libgstelements_la_SOURCES = \
|
|
gstelements.c \
|
|
gstfakesrc.c \
|
|
gstidentity.c \
|
|
gstfakesink.c \
|
|
gstdisksrc.c \
|
|
gstfilesrc.c \
|
|
gstdisksink.c \
|
|
gstfdsrc.c \
|
|
gstfdsink.c \
|
|
gstmultidisksrc.c \
|
|
gstpipefilter.c \
|
|
gsttee.c \
|
|
gstaggregator.c \
|
|
$(GSTHTTPSRC)
|
|
|
|
noinst_HEADERS = \
|
|
gstfakesrc.h \
|
|
gstidentity.h \
|
|
gstfakesink.h \
|
|
gstdisksrc.h \
|
|
gstdisksink.h \
|
|
gstfdsrc.h \
|
|
gstmultidisksrc.h \
|
|
gsthttpsrc.h \
|
|
gstfdsink.h \
|
|
gstpipefilter.h \
|
|
gsttee.h \
|
|
gstaggregator.h
|
|
|
|
CFLAGS += -O2 -Wall
|
|
LDFLAGS += -lm
|
|
|
|
libgstelements_la_LIBADD = $(GHTTP_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|