From c6737f6a93befa26285b5c0b0d3cb456ad24471e Mon Sep 17 00:00:00 2001 From: "David I. Lehn" Date: Fri, 4 Oct 2002 05:39:24 +0000 Subject: [PATCH] support a couple more types Original commit message from CVS: support a couple more types --- gst/gstreamer-arg-types.py | 7 +++++-- gstreamer/gstreamer-arg-types.py | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/gst/gstreamer-arg-types.py b/gst/gstreamer-arg-types.py index 72d9dec18e..4ada678331 100644 --- a/gst/gstreamer-arg-types.py +++ b/gst/gstreamer-arg-types.py @@ -22,5 +22,8 @@ import argtypes -#arg = argtypes.PointerArg('GstEvent') -#argtypes.matcher.register('GstEvent*', arg) +arg = argtypes.UInt64Arg() +argtypes.matcher.register('GstClockTime', arg) + +arg = argtypes.Int64Arg() +argtypes.matcher.register('GstClockTimeDiff', arg) diff --git a/gstreamer/gstreamer-arg-types.py b/gstreamer/gstreamer-arg-types.py index 72d9dec18e..4ada678331 100644 --- a/gstreamer/gstreamer-arg-types.py +++ b/gstreamer/gstreamer-arg-types.py @@ -22,5 +22,8 @@ import argtypes -#arg = argtypes.PointerArg('GstEvent') -#argtypes.matcher.register('GstEvent*', arg) +arg = argtypes.UInt64Arg() +argtypes.matcher.register('GstClockTime', arg) + +arg = argtypes.Int64Arg() +argtypes.matcher.register('GstClockTimeDiff', arg)