mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 09:08:14 +00:00
theoraenc: clean up property descriptions
Remove "This property requires libtheora version >= 1.1" qualifiers from property descriptions. They aren't needed any longer now that we require libtheora >= 1.1.
This commit is contained in:
parent
c36a3e46f5
commit
9805bdfcc8
1 changed files with 6 additions and 12 deletions
|
@ -302,39 +302,33 @@ gst_theora_enc_class_init (GstTheoraEncClass * klass)
|
||||||
g_object_class_install_property (gobject_class, PROP_SPEEDLEVEL,
|
g_object_class_install_property (gobject_class, PROP_SPEEDLEVEL,
|
||||||
g_param_spec_int ("speed-level", "Speed level",
|
g_param_spec_int ("speed-level", "Speed level",
|
||||||
"Controls the amount of motion vector searching done while "
|
"Controls the amount of motion vector searching done while "
|
||||||
"encoding. This property requires libtheora version >= 1.0",
|
"encoding", 0, 3, THEORA_DEF_SPEEDLEVEL,
|
||||||
0, 3, THEORA_DEF_SPEEDLEVEL,
|
|
||||||
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_VP3_COMPATIBLE,
|
g_object_class_install_property (gobject_class, PROP_VP3_COMPATIBLE,
|
||||||
g_param_spec_boolean ("vp3-compatible", "VP3 Compatible",
|
g_param_spec_boolean ("vp3-compatible", "VP3 Compatible",
|
||||||
"Disables non-VP3 compatible features."
|
"Disables non-VP3 compatible features",
|
||||||
" This property requires libtheora version >= 1.1",
|
|
||||||
THEORA_DEF_VP3_COMPATIBLE,
|
THEORA_DEF_VP3_COMPATIBLE,
|
||||||
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_DROP_FRAMES,
|
g_object_class_install_property (gobject_class, PROP_DROP_FRAMES,
|
||||||
g_param_spec_boolean ("drop-frames", "VP3 Compatible",
|
g_param_spec_boolean ("drop-frames", "VP3 Compatible",
|
||||||
"Allow or disallow frame dropping."
|
"Allow or disallow frame dropping",
|
||||||
" This property requires libtheora version >= 1.1",
|
|
||||||
THEORA_DEF_DROP_FRAMES,
|
THEORA_DEF_DROP_FRAMES,
|
||||||
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_CAP_OVERFLOW,
|
g_object_class_install_property (gobject_class, PROP_CAP_OVERFLOW,
|
||||||
g_param_spec_boolean ("cap-overflow", "VP3 Compatible",
|
g_param_spec_boolean ("cap-overflow", "VP3 Compatible",
|
||||||
"Enable capping of bit reservoir overflows."
|
"Enable capping of bit reservoir overflows",
|
||||||
" This property requires libtheora version >= 1.1",
|
|
||||||
THEORA_DEF_CAP_OVERFLOW,
|
THEORA_DEF_CAP_OVERFLOW,
|
||||||
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_CAP_UNDERFLOW,
|
g_object_class_install_property (gobject_class, PROP_CAP_UNDERFLOW,
|
||||||
g_param_spec_boolean ("cap-underflow", "VP3 Compatible",
|
g_param_spec_boolean ("cap-underflow", "VP3 Compatible",
|
||||||
"Enable capping of bit reservoir underflows."
|
"Enable capping of bit reservoir underflows",
|
||||||
" This property requires libtheora version >= 1.1",
|
|
||||||
THEORA_DEF_CAP_UNDERFLOW,
|
THEORA_DEF_CAP_UNDERFLOW,
|
||||||
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_RATE_BUFFER,
|
g_object_class_install_property (gobject_class, PROP_RATE_BUFFER,
|
||||||
g_param_spec_int ("rate-buffer", "Rate Control Buffer",
|
g_param_spec_int ("rate-buffer", "Rate Control Buffer",
|
||||||
"Sets the size of the rate control buffer, in units of frames. "
|
"Sets the size of the rate control buffer, in units of frames. "
|
||||||
"The default value of 0 instructs the encoder to automatically "
|
"The default value of 0 instructs the encoder to automatically "
|
||||||
"select an appropriate value."
|
"select an appropriate value",
|
||||||
" This property requires libtheora version >= 1.1",
|
|
||||||
0, 1000, THEORA_DEF_RATE_BUFFER,
|
0, 1000, THEORA_DEF_RATE_BUFFER,
|
||||||
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
(GParamFlags) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_MULTIPASS_CACHE_FILE,
|
g_object_class_install_property (gobject_class, PROP_MULTIPASS_CACHE_FILE,
|
||||||
|
|
Loading…
Reference in a new issue