gstreamer/gst/netsim/meson.build
Stian Selnes 9416d36463 netsim: Add "delay-distribution" property plus normal distribution
By using the property "delay-distribution" the user can control how the
delay applied to delayed packets is distributed. This is either the
uniform distribution (as before) or the normal distribution.

"min-delay" and "max-delay" control both distributions. For the normal
distribution it defines the bounds of the 95% confidence interval.
2017-11-25 11:10:27 +00:00

13 lines
255 B
Meson

netsim_sources = [
'gstnetsim.c',
]
gstnetsim = library('gstnetsim',
netsim_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep, libm],
install : true,
install_dir : plugins_install_dir,
)