mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
opencv: facedetect: fix crashes in finalize
Fixes gst-inspect-1.0 -a crashing.
This commit is contained in:
parent
d3dbb69c8e
commit
0e70f8c94f
1 changed files with 8 additions and 8 deletions
|
@ -233,13 +233,13 @@ gst_face_detect_finalize (GObject * obj)
|
||||||
g_free (filter->eyes_profile);
|
g_free (filter->eyes_profile);
|
||||||
|
|
||||||
if (filter->cvFaceDetect)
|
if (filter->cvFaceDetect)
|
||||||
delete (&filter->cvFaceDetect);
|
delete (filter->cvFaceDetect);
|
||||||
if (filter->cvNoseDetect)
|
if (filter->cvNoseDetect)
|
||||||
delete (&filter->cvNoseDetect);
|
delete (filter->cvNoseDetect);
|
||||||
if (filter->cvMouthDetect)
|
if (filter->cvMouthDetect)
|
||||||
delete (&filter->cvMouthDetect);
|
delete (filter->cvMouthDetect);
|
||||||
if (filter->cvEyesDetect)
|
if (filter->cvEyesDetect)
|
||||||
delete (&filter->cvEyesDetect);
|
delete (filter->cvEyesDetect);
|
||||||
|
|
||||||
G_OBJECT_CLASS (gst_face_detect_parent_class)->finalize (obj);
|
G_OBJECT_CLASS (gst_face_detect_parent_class)->finalize (obj);
|
||||||
}
|
}
|
||||||
|
@ -380,7 +380,7 @@ gst_face_detect_set_property (GObject * object, guint prop_id,
|
||||||
case PROP_FACE_PROFILE:
|
case PROP_FACE_PROFILE:
|
||||||
g_free (filter->face_profile);
|
g_free (filter->face_profile);
|
||||||
if (filter->cvFaceDetect)
|
if (filter->cvFaceDetect)
|
||||||
delete (&filter->cvFaceDetect);
|
delete (filter->cvFaceDetect);
|
||||||
filter->face_profile = g_value_dup_string (value);
|
filter->face_profile = g_value_dup_string (value);
|
||||||
filter->cvFaceDetect =
|
filter->cvFaceDetect =
|
||||||
gst_face_detect_load_profile (filter, filter->face_profile);
|
gst_face_detect_load_profile (filter, filter->face_profile);
|
||||||
|
@ -388,7 +388,7 @@ gst_face_detect_set_property (GObject * object, guint prop_id,
|
||||||
case PROP_NOSE_PROFILE:
|
case PROP_NOSE_PROFILE:
|
||||||
g_free (filter->nose_profile);
|
g_free (filter->nose_profile);
|
||||||
if (filter->cvNoseDetect)
|
if (filter->cvNoseDetect)
|
||||||
delete (&filter->cvNoseDetect);
|
delete (filter->cvNoseDetect);
|
||||||
filter->nose_profile = g_value_dup_string (value);
|
filter->nose_profile = g_value_dup_string (value);
|
||||||
filter->cvNoseDetect =
|
filter->cvNoseDetect =
|
||||||
gst_face_detect_load_profile (filter, filter->nose_profile);
|
gst_face_detect_load_profile (filter, filter->nose_profile);
|
||||||
|
@ -396,7 +396,7 @@ gst_face_detect_set_property (GObject * object, guint prop_id,
|
||||||
case PROP_MOUTH_PROFILE:
|
case PROP_MOUTH_PROFILE:
|
||||||
g_free (filter->mouth_profile);
|
g_free (filter->mouth_profile);
|
||||||
if (filter->cvMouthDetect)
|
if (filter->cvMouthDetect)
|
||||||
delete (&filter->cvMouthDetect);
|
delete (filter->cvMouthDetect);
|
||||||
filter->mouth_profile = g_value_dup_string (value);
|
filter->mouth_profile = g_value_dup_string (value);
|
||||||
filter->cvMouthDetect =
|
filter->cvMouthDetect =
|
||||||
gst_face_detect_load_profile (filter, filter->mouth_profile);
|
gst_face_detect_load_profile (filter, filter->mouth_profile);
|
||||||
|
@ -404,7 +404,7 @@ gst_face_detect_set_property (GObject * object, guint prop_id,
|
||||||
case PROP_EYES_PROFILE:
|
case PROP_EYES_PROFILE:
|
||||||
g_free (filter->eyes_profile);
|
g_free (filter->eyes_profile);
|
||||||
if (filter->cvEyesDetect)
|
if (filter->cvEyesDetect)
|
||||||
delete (&filter->cvEyesDetect);
|
delete (filter->cvEyesDetect);
|
||||||
filter->eyes_profile = g_value_dup_string (value);
|
filter->eyes_profile = g_value_dup_string (value);
|
||||||
filter->cvEyesDetect =
|
filter->cvEyesDetect =
|
||||||
gst_face_detect_load_profile (filter, filter->eyes_profile);
|
gst_face_detect_load_profile (filter, filter->eyes_profile);
|
||||||
|
|
Loading…
Reference in a new issue