From da2e67d5d82517b50698690d34e5741b3ef4c2ee Mon Sep 17 00:00:00 2001 From: Alexander Slobodeniuk Date: Fri, 2 May 2025 10:08:31 +0200 Subject: [PATCH] handdetect: canonicalize property names Part-of: --- .../ext/opencv/gsthanddetect.cpp | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/subprojects/gst-plugins-bad/ext/opencv/gsthanddetect.cpp b/subprojects/gst-plugins-bad/ext/opencv/gsthanddetect.cpp index 9a618e7360..a73f404fcf 100644 --- a/subprojects/gst-plugins-bad/ext/opencv/gsthanddetect.cpp +++ b/subprojects/gst-plugins-bad/ext/opencv/gsthanddetect.cpp @@ -205,49 +205,49 @@ gst_handdetect_class_init (GstHanddetectClass * klass) ); g_object_class_install_property (gobject_class, PROP_PROFILE_FIST, - g_param_spec_string ("profile_fist", + g_param_spec_string ("profile-fist", "Profile_fist", "Location of HAAR cascade file (fist gesture)", - HAAR_FILE_FIST, (GParamFlags) G_PARAM_READWRITE) + HAAR_FILE_FIST, (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)) ); g_object_class_install_property (gobject_class, PROP_PROFILE_PALM, - g_param_spec_string ("profile_palm", + g_param_spec_string ("profile-palm", "Profile_palm", "Location of HAAR cascade file (palm gesture)", - HAAR_FILE_PALM, (GParamFlags) G_PARAM_READWRITE) + HAAR_FILE_PALM, (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)) ); - /* FIXME: property name needs fixing */ + g_object_class_install_property (gobject_class, PROP_ROI_X, - g_param_spec_int ("ROI_X", - "ROI_X", + g_param_spec_int ("ROI-X", + "ROI-X", "X of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages", - 0, INT_MAX, 0, (GParamFlags) G_PARAM_READWRITE) + 0, INT_MAX, 0, (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)) ); - /* FIXME: property name needs fixing */ + g_object_class_install_property (gobject_class, PROP_ROI_Y, - g_param_spec_int ("ROI_Y", - "ROI_Y", + g_param_spec_int ("ROI-Y", + "ROI-Y", "Y of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages", - 0, INT_MAX, 0, (GParamFlags) G_PARAM_READWRITE) + 0, INT_MAX, 0, (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)) ); - /* FIXME: property name needs fixing */ + g_object_class_install_property (gobject_class, PROP_ROI_WIDTH, - g_param_spec_int ("ROI_WIDTH", - "ROI_WIDTH", + g_param_spec_int ("ROI-WIDTH", + "ROI-WIDTH", "WIDTH of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages", - 0, INT_MAX, 0, (GParamFlags) G_PARAM_READWRITE) + 0, INT_MAX, 0, (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)) ); - /* FIXME: property name needs fixing */ + g_object_class_install_property (gobject_class, PROP_ROI_HEIGHT, - g_param_spec_int ("ROI_HEIGHT", - "ROI_HEIGHT", + g_param_spec_int ("ROI-HEIGHT", + "ROI-HEIGHT", "HEIGHT of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages", - 0, INT_MAX, 0, (GParamFlags) G_PARAM_READWRITE) + 0, INT_MAX, 0, (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)) ); gst_element_class_set_static_metadata (element_class,