mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
b53f682d75
This can read from an SDP file or get the SDP data via property. Works around the problem that sdpdemux inside decodebin fails because the GST_STATE_CHANGE_NO_PREROLL is not observed by the pipeline. See https://bugzilla.gnome.org/show_bug.cgi?id=702495 https://bugzilla.gnome.org/show_bug.cgi?id=762860
13 lines
562 B
Makefile
13 lines
562 B
Makefile
plugin_LTLIBRARIES = libgstsdpelem.la
|
|
|
|
libgstsdpelem_la_SOURCES = gstsdpelem.c gstsdpsrc.c gstsdpdemux.c
|
|
|
|
libgstsdpelem_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
|
libgstsdpelem_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GIO_LIBS) \
|
|
-lgstrtp-@GST_API_VERSION@ -lgstsdp-@GST_API_VERSION@ \
|
|
-lgstapp-@GST_API_VERSION@ \
|
|
$(GST_LIBS) $(WINSOCK2_LIBS)
|
|
libgstsdpelem_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstsdpelem_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = gstsdpdemux.h gstsdpsrc.h
|