mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +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.
15 lines
412 B
Meson
15 lines
412 B
Meson
examples = ['webrtc', 'webrtcbidirectional', 'webrtcswap', 'webrtctransceiver', 'webrtcrenego']
|
|
|
|
foreach example : examples
|
|
exe_name = example
|
|
src_file = '@0@.c'.format(example)
|
|
|
|
executable(exe_name,
|
|
src_file,
|
|
install: false,
|
|
include_directories : [configinc],
|
|
dependencies : [glib_dep, gst_dep, gstwebrtc_dep],
|
|
c_args : ['-DHAVE_CONFIG_H=1', '-DGST_USE_UNSTABLE_API'],
|
|
)
|
|
endforeach
|
|
|