mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
9416d36463
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.
12 lines
255 B
Meson
12 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,
|
|
)
|