From: Edward Hervey Date: Fri, 22 Oct 2010 11:25:45 +0000 (+0200) Subject: arg-types: GstElementFactoryListType is a guint64 X-Git-Tag: 1.19.3~485^2~331 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f61141901548bd13bbda1dd6fc72cbce368502fa;p=platform%2Fupstream%2Fgstreamer.git arg-types: GstElementFactoryListType is a guint64 --- diff --git a/gst/arg-types.py b/gst/arg-types.py index 06a457a..de8f2c6 100644 --- a/gst/arg-types.py +++ b/gst/arg-types.py @@ -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)