Make sure gst_param_spec_... is parsed in addition to g_param_spec_... as well. E.g. for mini_object properties (gst_param_spec_mini_object)

This commit is contained in:
Age Bosma 2011-09-19 13:57:29 +02:00 committed by Sebastian Dröge
parent 07e72eb3b4
commit 3f2ad30e9b

View file

@ -958,9 +958,9 @@ sub addPropElem
{
my ($spec, $node, $is_child) = @_;
my ($name, $mode, $docs);
$spec =~ /g_param_spec_(\w+)\s*\((.*)\s*\)\s*\)/;
my $type = $1;
my @params = split(/,/, $2);
$spec =~ /(g|gst)_param_spec_(\w+)\s*\((.*)\s*\)\s*\)/;
my $type = $2;
my @params = split(/,/, $3);
$name = $params[0];
if ($defines{$name}) {