mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
opusenc: improve inband-fec property documentation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2855>
This commit is contained in:
parent
ea29b20556
commit
e7858b38f9
2 changed files with 3 additions and 2 deletions
|
@ -7800,7 +7800,7 @@
|
|||
"writable": true
|
||||
},
|
||||
"inband-fec": {
|
||||
"blurb": "Enable forward error correction",
|
||||
"blurb": "Enable in-band forward error correction (use in combination with the packet-loss-percentage property)",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": false,
|
||||
|
|
|
@ -325,7 +325,8 @@ gst_opus_enc_class_init (GstOpusEncClass * klass)
|
|||
GST_PARAM_MUTABLE_PLAYING));
|
||||
g_object_class_install_property (gobject_class, PROP_INBAND_FEC,
|
||||
g_param_spec_boolean ("inband-fec", "In-band FEC",
|
||||
"Enable forward error correction", DEFAULT_INBAND_FEC,
|
||||
"Enable in-band forward error correction (use in combination with "
|
||||
"the packet-loss-percentage property)", DEFAULT_INBAND_FEC,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
||||
GST_PARAM_MUTABLE_PLAYING));
|
||||
g_object_class_install_property (gobject_class, PROP_DTX,
|
||||
|
|
Loading…
Reference in a new issue