diff options
author | Matthew Waters <matthew@centricular.com> | 2018-09-10 23:52:05 +1000 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2018-09-21 19:45:12 +1000 |
commit | 07e9374eff7967713ab2dc47b1eb2843d0bfcaa0 (patch) | |
tree | e745fcad33ad9bdbdfe1be64b94804ccb7e3697d /ext/webrtc/Makefile.am | |
parent | cf46d49b1e94587b15093dfdf12431c1ab00ba57 (diff) |
webrtcbin: add support for data channels based on SCTP
Mostly follows the W3C specification
https://www.w3.org/TR/webrtc/#peer-to-peer-data-api
With contributions from:
Mathieu Duponchelle <mathieu@centricular.com>
https://bugzilla.gnome.org/show_bug.cgi?id=794351
Diffstat (limited to 'ext/webrtc/Makefile.am')
-rw-r--r-- | ext/webrtc/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/webrtc/Makefile.am b/ext/webrtc/Makefile.am index 5f9a71488..778f112d0 100644 --- a/ext/webrtc/Makefile.am +++ b/ext/webrtc/Makefile.am @@ -7,11 +7,13 @@ noinst_HEADERS = \ gstwebrtcstats.h \ icestream.h \ nicetransport.h \ + sctptransport.h \ transportstream.h \ transportsendbin.h \ transportreceivebin.h \ utils.h \ webrtcsdp.h \ + webrtcdatachannel.h \ webrtctransceiver.h libgstwebrtc_la_SOURCES = \ @@ -21,11 +23,13 @@ libgstwebrtc_la_SOURCES = \ gstwebrtcstats.c \ icestream.c \ nicetransport.c \ + sctptransport.c \ transportstream.c \ transportsendbin.c \ transportreceivebin.c \ utils.c \ webrtcsdp.c \ + webrtcdatachannel.c \ webrtctransceiver.c libgstwebrtc_la_SOURCES += $(BUILT_SOURCES) @@ -40,12 +44,14 @@ libgstwebrtc_la_CFLAGS = \ $(GST_SDP_CFLAGS) \ $(NICE_CFLAGS) libgstwebrtc_la_LIBADD = \ + -lgstapp-@GST_API_VERSION@ \ $(GST_PLUGINS_BASE_LIBS) \ $(GST_BASE_LIBS) \ $(GST_LIBS) \ $(GST_SDP_LIBS) \ $(NICE_LIBS) \ - $(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la + $(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la \ + $(top_builddir)/gst-libs/gst/sctp/libgstsctp-@GST_API_VERSION@.la libgstwebrtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstwebrtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) |