diff options
author | Andy Wingo <wingo@pobox.com> | 2006-04-07 14:32:08 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2006-04-07 14:32:08 +0000 |
commit | 59667a31a70be19fb11c2f3928ecc3ad083ce77b (patch) | |
tree | 3037a999896e343995f27edc8258142d828a2a33 | |
parent | 5b30271cd36fa3df6f7f939646e4b64ed65e76b7 (diff) |
gst/gst.defs (element_make_from_uri): Element name is optional and can be None. It defaults to None.
Original commit message from CVS:
2006-04-07 Andy Wingo <wingo@pobox.com>
* gst/gst.defs (element_make_from_uri): Element name is optional
and can be None. It defaults to None.
-rw-r--r-- | ChangeLog | 5 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | gst/gst.defs | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-04-07 Andy Wingo <wingo@pobox.com> + + * gst/gst.defs (element_make_from_uri): Element name is optional + and can be None. It defaults to None. + 2006-04-05 Edward Hervey <edward@fluendo.com> * testsuite/test_message.py: diff --git a/common b/common -Subproject 623fe1c2cce45bc30d5823c05716349874ae994 +Subproject 1783855e983a5294434673694e8a57e44980b6f diff --git a/gst/gst.defs b/gst/gst.defs index 185a7df..3151429 100644 --- a/gst/gst.defs +++ b/gst/gst.defs @@ -6167,7 +6167,7 @@ (parameters '("GstURIType" "type") '("const-gchar*" "uri") - '("const-gchar*" "elementname") + '("const-gchar*" "elementname" (null-ok) (default "NULL")) ) ) |