mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
audiorate: add Since marker for the new tolerance property
This commit is contained in:
parent
98fc463f31
commit
93f82f16cd
1 changed files with 8 additions and 0 deletions
|
@ -199,6 +199,14 @@ gst_audio_rate_class_init (GstAudioRateClass * klass)
|
|||
g_param_spec_boolean ("silent", "silent",
|
||||
"Don't emit notify for dropped and duplicated frames", DEFAULT_SILENT,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
/**
|
||||
* GstAudioRate:tolerance
|
||||
*
|
||||
* The difference between incoming timestamp and next timestamp must exceed
|
||||
* the given value for audiorate to add or drop samples.
|
||||
*
|
||||
* Since: 0.10.26
|
||||
**/
|
||||
g_object_class_install_property (object_class, ARG_TOLERANCE,
|
||||
g_param_spec_uint64 ("tolerance", "tolerance",
|
||||
"Only act if timestamp jitter/imperfection exceeds indicated tolerance (ns)",
|
||||
|
|
Loading…
Reference in a new issue