diff options
author | Matthew Waters <matthew@centricular.com> | 2017-01-31 20:56:59 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2018-02-02 15:02:21 +1100 |
commit | 1894293d6378c69548d974d2965e9decc1527654 (patch) | |
tree | 2aebde896fb4f411bb30cc9275161942cd9464ac /gst-libs/gst/meson.build | |
parent | 94a7bf9ede14494ffdc73677eeb980a0cf2490e7 (diff) | |
download | gstreamer-plugins-bad-1894293d6378c69548d974d2965e9decc1527654.tar.gz |
webrtcbin: an element that handles the transport aspects of webrtc connections
SDP's are generated and consumed according to the W3C PeerConnection API
available from https://www.w3.org/TR/webrtc/
The SDP is either created initially from the connected
sink pads/attached transceivers as in the case of generating an offer or
intersected with the connected sink pads/attached transceivers as in
the case for creating an answer. In both cases, the rtp payloaded streams
sent by the peer are exposed as separate src pads.
The implementation supports trickle ICE, RTCP muxing, reduced size RTCP.
With contributions from:
Nirbheek Chauhan <nirbheek@centricular.com>
Mathieu Duponchelle <mathieu@centricular.com>
Edward Hervey <edward@centricular.com>
https://bugzilla.gnome.org/show_bug.cgi?id=792523
Diffstat (limited to 'gst-libs/gst/meson.build')
-rw-r--r-- | gst-libs/gst/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst-libs/gst/meson.build b/gst-libs/gst/meson.build index aac5398af..2e579540e 100644 --- a/gst-libs/gst/meson.build +++ b/gst-libs/gst/meson.build @@ -12,3 +12,4 @@ subdir('opencv') subdir('player') subdir('video') subdir('wayland') +subdir('webrtc') |