mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
videoanalyse: fix copy'n'paste off by one for param spec flags change
This commit is contained in:
parent
0c22e1b954
commit
90e90fd368
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ gst_video_analyse_class_init (gpointer klass, gpointer class_data)
|
|||
g_param_spec_boolean ("message", "Message",
|
||||
"Post statics messages",
|
||||
DEFAULT_MESSAGE,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUC | G_PARAM_STATIC_STRINGST));
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_video_analyse_set_caps);
|
||||
trans_class->transform_ip =
|
||||
|
|
Loading…
Reference in a new issue