arg-types: GstElementFactoryListType is a guint64
authorEdward Hervey <bilboed@bilboed.com>
Fri, 22 Oct 2010 11:25:45 +0000 (13:25 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Fri, 22 Oct 2010 11:25:45 +0000 (13:25 +0200)
gst/arg-types.py

index 06a457a..de8f2c6 100644 (file)
@@ -376,6 +376,7 @@ class StringArrayArg(ArgType):
 
 
 matcher.register('GstClockTime', UInt64Arg())
+matcher.register('GstElementFactoryListType', UInt64Arg())
 matcher.register('GstClockTimeDiff', Int64Arg())
 matcher.register('xmlNodePtr', XmlNodeArg())
 matcher.register('xmlDocPtr', XmlDocArg())
@@ -400,7 +401,7 @@ for typename in ["gint64", "GstClockTimeDiff"]:
        matcher.register_reverse(typename, Int64Param)
        matcher.register_reverse_ret(typename, Int64Return)
 
-for typename in ["guint64", "GstClockTime"]:
+for typename in ["guint64", "GstClockTime", "GstElementFactoryListType"]:
        matcher.register_reverse(typename, UInt64Param)
        matcher.register_reverse_ret(typename, UInt64Return)