mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
da28d1620e
Add a new utri handler for pnm:// that for now just redirects to the same uri with the rtsp:// protocol, which usually works nowadays. Separate the registration of the various plugins into a separate source file.
23 lines
832 B
Makefile
23 lines
832 B
Makefile
plugin_LTLIBRARIES = libgstrmdemux.la
|
|
|
|
libgstrmdemux_la_SOURCES = rademux.c rmdemux.c \
|
|
rmutils.c rdtdepay.c rdtmanager.c \
|
|
rtspreal.c realhash.c asmrules.c \
|
|
rdtjitterbuffer.c gstrdtbuffer.c \
|
|
pnmsrc.c realmedia.c
|
|
|
|
|
|
libgstrmdemux_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstrmdemux_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS)\
|
|
-lgstrtsp-@GST_MAJORMINOR@ -lgstsdp-@GST_MAJORMINOR@
|
|
libgstrmdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstrmdemux_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = rademux.h rmdemux.h rmutils.h rdtdepay.h rdtmanager.h \
|
|
rdtjitterbuffer.h rtspreal.h realhash.h asmrules.h gstrdtbuffer.h \
|
|
pnmsrc.h
|
|
|
|
noinst_PROGRAMS = asmrules
|
|
asmrules_CFLAGS = $(GST_CFLAGS) -DTEST
|
|
asmrules_LDADD = $(GST_LIBS) $(LIBM)
|
|
|