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 /pkgconfig | |
parent | 94a7bf9ede14494ffdc73677eeb980a0cf2490e7 (diff) |
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 'pkgconfig')
-rw-r--r-- | pkgconfig/Makefile.am | 4 | ||||
-rw-r--r-- | pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in | 2 | ||||
-rw-r--r-- | pkgconfig/gstreamer-webrtc-uninstalled.pc.in | 12 | ||||
-rw-r--r-- | pkgconfig/gstreamer-webrtc.pc.in | 12 | ||||
-rw-r--r-- | pkgconfig/meson.build | 2 |
5 files changed, 31 insertions, 1 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index 6598baf14..0e69cd1f8 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -6,6 +6,7 @@ pcverfiles = \ gstreamer-insertbin-@GST_API_VERSION@.pc \ gstreamer-mpegts-@GST_API_VERSION@.pc \ gstreamer-player-@GST_API_VERSION@.pc \ + gstreamer-webrtc-@GST_API_VERSION@.pc \ gstreamer-bad-audio-@GST_API_VERSION@.pc \ gstreamer-bad-video-@GST_API_VERSION@.pc @@ -15,6 +16,7 @@ pcverfiles_uninstalled = \ gstreamer-insertbin-@GST_API_VERSION@-uninstalled.pc \ gstreamer-mpegts-@GST_API_VERSION@-uninstalled.pc \ gstreamer-player-@GST_API_VERSION@-uninstalled.pc \ + gstreamer-webrtc-@GST_API_VERSION@-uninstalled.pc \ gstreamer-bad-audio-@GST_API_VERSION@-uninstalled.pc \ gstreamer-bad-video-@GST_API_VERSION@-uninstalled.pc @@ -39,6 +41,7 @@ cp_verbose_0 = @echo " CP $@"; -e "s|[@]mpegtslibdir[@]|$(abs_top_builddir)/gst-libs/gst/mpegts/.libs|" \ -e "s|[@]playerlibdir[@]|$(abs_top_builddir)/gst-libs/gst/player/.libs|" \ -e "s|[@]waylandlibdir[@]|$(abs_top_builddir)/gst-libs/gst/wayland/.libs|" \ + -e "s|[@]webrtclibdir[@]|$(abs_top_builddir)/gst-libs/gst/webrtc/.libs|" \ -e "s|[@]basecamerabinsrclibdir[@]|$(abs_top_builddir)/gst-libs/gst/basecamerabinsrc/.libs|" \ -e "s|[@]photographylibdir[@]|$(abs_top_builddir)/gst-libs/gst/interfaces/.libs|" \ $< > $@.tmp && mv $@.tmp $@ @@ -53,6 +56,7 @@ pcinfiles = \ gstreamer-insertbin.pc.in gstreamer-insertbin-uninstalled.pc.in \ gstreamer-mpegts.pc.in gstreamer-mpegts-uninstalled.pc.in \ gstreamer-player.pc.in gstreamer-player-uninstalled.pc.in \ + gstreamer-webrtc.pc.in gstreamer-webrtc-uninstalled.pc.in \ gstreamer-bad-audio.pc.in gstreamer-bad-audio-uninstalled.pc.in \ gstreamer-bad-video.pc.in gstreamer-bad-video-uninstalled.pc.in diff --git a/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in b/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in index efd014e97..a639d1066 100644 --- a/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in +++ b/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in @@ -10,5 +10,5 @@ Name: GStreamer Bad Plugin libraries, Uninstalled Description: Streaming media framework, bad plugins libraries, uninstalled Version: @VERSION@ Requires: gstreamer-@GST_API_VERSION@ -Libs: -L@audiolibdir@ -L@basecamerabinsrclibdir@ -L@codecparserslibdir@ -L@insertbinlibdir@ -L@photographylibdir@ -L@mpegtslibdir@ -L@playerlibdir@ -L@videolibdir@ -L@waylandlibdir@ +Libs: -L@audiolibdir@ -L@basecamerabinsrclibdir@ -L@codecparserslibdir@ -L@insertbinlibdir@ -L@photographylibdir@ -L@mpegtslibdir@ -L@playerlibdir@ -L@videolibdir@ -L@waylandlibdir@ -L@webrtclibdir@ Cflags: -I@abs_top_srcdir@/gst-libs -I@abs_top_builddir@/gst-libs diff --git a/pkgconfig/gstreamer-webrtc-uninstalled.pc.in b/pkgconfig/gstreamer-webrtc-uninstalled.pc.in new file mode 100644 index 000000000..3eec1e15f --- /dev/null +++ b/pkgconfig/gstreamer-webrtc-uninstalled.pc.in @@ -0,0 +1,12 @@ +prefix= +exec_prefix= +libdir=@webrtclibdir@ +includedir=@abs_top_srcdir@/gst-libs + +Name: GStreamer WebRTC, Uninstalled +Description: GStreamer WebRTC support, uninstalled +Requires: gstreamer-@GST_API_VERSION@ gstreamer-base-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} -lgstwebrtc-@GST_API_VERSION@ +Cflags: -I@abs_top_srcdir@/gst-libs -I@abs_top_builddir@/gst-libs + diff --git a/pkgconfig/gstreamer-webrtc.pc.in b/pkgconfig/gstreamer-webrtc.pc.in new file mode 100644 index 000000000..7371ad4b4 --- /dev/null +++ b/pkgconfig/gstreamer-webrtc.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/gstreamer-@GST_API_VERSION@ + +Name: GStreamer WebRTC +Description: GStreamer WebRTC support +Requires: gstreamer-@GST_API_VERSION@ gstreamer-base-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} -lgstwebrtc-@GST_API_VERSION@ +Cflags: -I${includedir} + diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build index 01317cb2e..271f327f3 100644 --- a/pkgconfig/meson.build +++ b/pkgconfig/meson.build @@ -18,6 +18,7 @@ pkgconf.set('mpegtslibdir', join_paths(meson.build_root(), gstmpegts.outdir())) pkgconf.set('playerlibdir', join_paths(meson.build_root(), gstplayer.outdir())) pkgconf.set('basecamerabinsrclibdir', join_paths(meson.build_root(), gstbasecamerabin.outdir())) pkgconf.set('photographylibdir', join_paths(meson.build_root(), gstphotography.outdir())) +pkgconf.set('webrtclibdir', join_paths(meson.build_root(), gstwebrtc.outdir())) pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir')) @@ -29,6 +30,7 @@ pkg_libs = [ 'mpegts', 'player', 'plugins-bad', + 'webrtc', ] #if use_wayland |