Skip to content

Commit

Permalink
concat: Fix active-pad property doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
philn committed Jan 7, 2021
1 parent 384fba1 commit e02902a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/plugins/gst_plugins_cache.json
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion plugins/elements/gstconcat.c
Expand Up @@ -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);
Expand Down

0 comments on commit e02902a

Please sign in to comment.