diff options
author | Stefan Kost <ensonic@users.sf.net> | 2010-10-19 16:24:12 +0300 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2010-10-19 16:25:00 +0300 |
commit | 90e90fd3682a3743941983d509fe23c2db472458 (patch) | |
tree | 62f73d14d974b57507f85700d64a0e30f833086b /gst/videosignal | |
parent | 0c22e1b954b98b04673aa5b849a8434b2ce820a1 (diff) |
videoanalyse: fix copy'n'paste off by one for param spec flags change
Diffstat (limited to 'gst/videosignal')
-rw-r--r-- | gst/videosignal/gstvideoanalyse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videosignal/gstvideoanalyse.c b/gst/videosignal/gstvideoanalyse.c index e7ff64b24..7ca6626c2 100644 --- a/gst/videosignal/gstvideoanalyse.c +++ b/gst/videosignal/gstvideoanalyse.c @@ -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 = |