FILENAME->URI

Original commit message from CVS:
FILENAME->URI
This commit is contained in:
Wim Taymans 2003-02-10 20:53:13 +00:00
parent e44705d2c1
commit 964071879c

View file

@ -80,7 +80,7 @@ int main(int argc,char *argv[]) {
for (i=0;i<num_properties;i++) {
GParamSpec *param = property_specs[i];
argnode = xmlNewChild (factorynode, NULL, "argument", param->name);
if (param->value_type == GST_TYPE_FILENAME) {
if (param->value_type == GST_TYPE_URI) {
xmlNewChild (argnode, NULL, "filename", NULL);
} else if (G_IS_PARAM_SPEC_ENUM (param) == G_TYPE_ENUM) {
GEnumValue *values;