Enum liblsl.processing_options_t
Post-processing options for stream inlets.
Namespace: LSL4Unity
Assembly: cs.temp.dll.dll
Syntax
public enum processing_options_t : byte
Fields
Name | Description |
---|---|
post_ALL | The combination of all possible post-processing options. |
post_clocksync | Perform automatic clock synchronization; equivalent to manually adding the TimeCorrection() value (this is the default behavior of the inlet). |
post_dejitter | Remove jitter from time stamps. This will apply a smoothing algorithm to the received time stamps; to the received time stamps. |
post_monotonize | Force the time-stamps to be monotonically ascending (only makes sense if timestamps are dejittered). |
post_none | No automatic post-processing; return the ground-truth time stamps for manual post-processing. |
post_threadsafe | Post-processing is thread-safe (same inlet can be read from by multiple threads); uses somewhat more CPU. |