mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
1894293d63
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
54 lines
2.1 KiB
Meson
54 lines
2.1 KiB
Meson
pkgconf = configuration_data()
|
|
|
|
pkgconf.set('prefix', join_paths(get_option('prefix')))
|
|
pkgconf.set('exec_prefix', '${prefix}')
|
|
pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
|
|
pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
|
|
pkgconf.set('GST_API_VERSION', api_version)
|
|
pkgconf.set('VERSION', gst_version)
|
|
|
|
# needed for generating -uninstalled.pc files
|
|
pkgconf.set('abs_top_builddir', join_paths(meson.current_build_dir(), '..'))
|
|
pkgconf.set('abs_top_srcdir', join_paths(meson.current_source_dir(), '..'))
|
|
pkgconf.set('audiolibdir', join_paths(meson.build_root(), gstbadaudio.outdir()))
|
|
pkgconf.set('videolibdir', join_paths(meson.build_root(), gstbadvideo.outdir()))
|
|
pkgconf.set('codecparserslibdir', join_paths(meson.build_root(), gstcodecparsers.outdir()))
|
|
pkgconf.set('insertbinlibdir', join_paths(meson.build_root(), gstinsertbin.outdir()))
|
|
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'))
|
|
|
|
pkg_libs = [
|
|
'bad-audio',
|
|
'bad-video',
|
|
'codecparsers',
|
|
'insertbin',
|
|
'mpegts',
|
|
'player',
|
|
'plugins-bad',
|
|
'webrtc',
|
|
]
|
|
|
|
#if use_wayland
|
|
# pkgconf.set('waylandlibdir', join_paths(meson.build_root(), gstwayland.outdir()))
|
|
# pkg_libs += 'wayland'
|
|
#endif
|
|
|
|
foreach p : pkg_libs
|
|
infile = 'gstreamer-@0@.pc.in'.format(p)
|
|
outfile = 'gstreamer-@0@-@1@.pc'.format(p, api_version)
|
|
configure_file(input : infile,
|
|
output : outfile,
|
|
configuration : pkgconf,
|
|
install_dir : pkg_install_dir)
|
|
|
|
infile = 'gstreamer-@0@-uninstalled.pc.in'.format(p)
|
|
outfile = 'gstreamer-@0@-@1@-uninstalled.pc'.format(p, api_version)
|
|
configure_file(input : infile,
|
|
output : outfile,
|
|
configuration : pkgconf)
|
|
endforeach
|