mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
x(v)imagesink: make it more clean that "synchronous" props are not for avsync
This commit is contained in:
parent
4e59e63ff7
commit
b4803361c6
2 changed files with 5 additions and 4 deletions
|
@ -2403,8 +2403,9 @@ gst_ximagesink_class_init (GstXImageSinkClass * klass)
|
|||
g_param_spec_string ("display", "Display", "X Display name",
|
||||
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_class, PROP_SYNCHRONOUS,
|
||||
g_param_spec_boolean ("synchronous", "Synchronous", "When enabled, runs "
|
||||
"the X display in synchronous mode. (used only for debugging)", FALSE,
|
||||
g_param_spec_boolean ("synchronous", "Synchronous",
|
||||
"When enabled, runs the X display in synchronous mode. "
|
||||
"(unrelated to A/V sync, used only for debugging)", FALSE,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_class, PROP_FORCE_ASPECT_RATIO,
|
||||
g_param_spec_boolean ("force-aspect-ratio", "Force aspect ratio",
|
||||
|
|
|
@ -3575,8 +3575,8 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
|
|||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_class, PROP_SYNCHRONOUS,
|
||||
g_param_spec_boolean ("synchronous", "Synchronous",
|
||||
"When enabled, runs "
|
||||
"the X display in synchronous mode. (used only for debugging)", FALSE,
|
||||
"When enabled, runs the X display in synchronous mode. "
|
||||
"(unrelated to A/V sync, used only for debugging)", FALSE,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_class, PROP_PIXEL_ASPECT_RATIO,
|
||||
g_param_spec_string ("pixel-aspect-ratio", "Pixel Aspect Ratio",
|
||||
|
|
Loading…
Reference in a new issue