concat: Fix active-pad property doc typo

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/727>
This commit is contained in:
Philippe Normand 2021-01-07 11:04:48 +00:00
parent 384fba13f4
commit e02902a783
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@
},
"properties": {
"active-pad": {
"blurb": "Currently active src pad",
"blurb": "Currently active sink pad",
"conditionally-available": false,
"construct": false,
"construct-only": false,

View file

@ -165,7 +165,7 @@ gst_concat_class_init (GstConcatClass * klass)
gobject_class->set_property = gst_concat_set_property;
pspec_active_pad = g_param_spec_object ("active-pad", "Active pad",
"Currently active src pad", GST_TYPE_PAD, G_PARAM_READABLE |
"Currently active sink pad", GST_TYPE_PAD, G_PARAM_READABLE |
G_PARAM_STATIC_STRINGS);
g_object_class_install_property (gobject_class, PROP_ACTIVE_PAD,
pspec_active_pad);