mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 11:55:39 +00:00
framepositionner: fix messup with propname enum.
This commit is contained in:
parent
cc09d03253
commit
e0b89ce691
1 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ gst_frame_positionner_class_init (GstFramePositionnerClass * klass)
|
|||
*
|
||||
* The desired x position for the stream.
|
||||
*/
|
||||
g_object_class_install_property (gobject_class, PROP_ALPHA,
|
||||
g_object_class_install_property (gobject_class, PROP_POSX,
|
||||
g_param_spec_int ("posx", "posx", "x position of the stream",
|
||||
G_MININT, G_MAXINT, 0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
|
||||
|
||||
|
@ -102,7 +102,7 @@ gst_frame_positionner_class_init (GstFramePositionnerClass * klass)
|
|||
*
|
||||
* The desired y position for the stream.
|
||||
*/
|
||||
g_object_class_install_property (gobject_class, PROP_ALPHA,
|
||||
g_object_class_install_property (gobject_class, PROP_POSY,
|
||||
g_param_spec_int ("posy", "posy", "y position of the stream",
|
||||
G_MININT, G_MAXINT, 0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
|
||||
|
||||
|
|
Loading…
Reference in a new issue