From 2ad1bbe34c48a764f57b24fce6c7c742487e66ae Mon Sep 17 00:00:00 2001 From: "David I. Lehn" Date: Sat, 4 Jan 2003 18:42:29 +0000 Subject: [PATCH] add GstClockID as a pointer arg type (not too useful, really need to make it a boxed type) Original commit message from CVS: add GstClockID as a pointer arg type (not too useful, really need to make it a boxed type) --- gst/gstreamer-arg-types.py | 3 +++ gstreamer/gstreamer-arg-types.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/gst/gstreamer-arg-types.py b/gst/gstreamer-arg-types.py index 8619d0ecb2..4c6f7b30d3 100644 --- a/gst/gstreamer-arg-types.py +++ b/gst/gstreamer-arg-types.py @@ -27,3 +27,6 @@ argtypes.matcher.register('GstClockTime', arg) arg = argtypes.Int64Arg() argtypes.matcher.register('GstClockTimeDiff', arg) + +arg = argtypes.PointerArg('gpointer', 'G_TYPE_POINTER') +argtypes.matcher.register('GstClockID', arg) diff --git a/gstreamer/gstreamer-arg-types.py b/gstreamer/gstreamer-arg-types.py index 8619d0ecb2..4c6f7b30d3 100644 --- a/gstreamer/gstreamer-arg-types.py +++ b/gstreamer/gstreamer-arg-types.py @@ -27,3 +27,6 @@ argtypes.matcher.register('GstClockTime', arg) arg = argtypes.Int64Arg() argtypes.matcher.register('GstClockTimeDiff', arg) + +arg = argtypes.PointerArg('gpointer', 'G_TYPE_POINTER') +argtypes.matcher.register('GstClockID', arg)