mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 21:31:27 +00:00
177aa22bcd
Limitations: - No transport changes at all (ICE, DTLS) - Codec changes are untested and probably don't work - Stream removal doesn't remove transports (i.e. non-bundled transports will stay around until webrtcbin is shutdown) - Unified Plan SDP only. No Plan-B support.
67 lines
1.8 KiB
Makefile
67 lines
1.8 KiB
Makefile
|
|
noinst_PROGRAMS = webrtc webrtcbidirectional webrtcswap webrtctransceiver webrtcrenego
|
|
|
|
webrtc_SOURCES = webrtc.c
|
|
webrtc_CFLAGS=\
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GST_SDP_CFLAGS)
|
|
webrtc_LDADD=\
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GST_SDP_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la
|
|
|
|
webrtcbidirectional_SOURCES = webrtcbidirectional.c
|
|
webrtcbidirectional_CFLAGS=\
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GST_SDP_CFLAGS)
|
|
webrtcbidirectional_LDADD=\
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GST_SDP_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la
|
|
|
|
webrtcswap_SOURCES = webrtcswap.c
|
|
webrtcswap_CFLAGS=\
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GST_SDP_CFLAGS)
|
|
webrtcswap_LDADD=\
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GST_SDP_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la
|
|
|
|
webrtctransceiver_SOURCES = webrtctransceiver.c
|
|
webrtctransceiver_CFLAGS=\
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GST_SDP_CFLAGS)
|
|
webrtctransceiver_LDADD=\
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GST_SDP_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la
|
|
|
|
webrtcrenego_SOURCES = webrtcrenego.c
|
|
webrtcrenego_CFLAGS=\
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GST_SDP_CFLAGS)
|
|
webrtcrenego_LDADD=\
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GST_SDP_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la
|