examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
/* -*- Mode: C; c-basic-offset: 4 -*- */
|
2005-09-08 13:34:29 +00:00
|
|
|
* vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
*
|
|
|
|
* gst-python
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
* Copyright (C) 2004 Johan Dahlin
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Author: Johan Dahlin <johan@gnome.org
|
|
|
|
*/
|
2005-01-01 15:23:42 +00:00
|
|
|
%%
|
|
|
|
headers
|
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
/* we need to do this until PyClosures get exception handlers */
|
|
|
|
#ifndef pyg_closure_set_exception_handler
|
|
|
|
# define pyg_closure_set_exception_handler(ig, nore)
|
|
|
|
# define EXCEPTION_HANDLER G_GNUC_UNUSED
|
|
|
|
#else
|
|
|
|
# define EXCEPTION_HANDLER
|
|
|
|
#endif
|
|
|
|
#define SET_PAD_CLOSURE(self, args, kwargs, name) \
|
2005-09-08 13:34:29 +00:00
|
|
|
static char *kwlist[] = { G_STRINGIFY (name), NULL }; \
|
|
|
|
PyObject *function; \
|
|
|
|
GstPad *pad; \
|
|
|
|
GClosure *closure; \
|
|
|
|
PyGstPadPrivate *priv; \
|
2005-06-17 10:59:47 +00:00
|
|
|
\
|
2005-09-08 13:34:29 +00:00
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, \
|
|
|
|
"O:GstPad.set_" G_STRINGIFY (name), \
|
|
|
|
kwlist, \
|
|
|
|
&function)) { \
|
|
|
|
return NULL; \
|
|
|
|
} \
|
2005-06-17 10:59:47 +00:00
|
|
|
\
|
2005-09-08 13:34:29 +00:00
|
|
|
if (!PyCallable_Check(function)) { \
|
|
|
|
PyErr_SetString(PyExc_TypeError, G_STRINGIFY (name) " not callable"); \
|
|
|
|
return NULL; \
|
|
|
|
} \
|
2005-06-17 10:59:47 +00:00
|
|
|
\
|
2005-09-08 13:34:29 +00:00
|
|
|
closure = pyg_closure_new (function, NULL, NULL); \
|
|
|
|
pyg_closure_set_exception_handler (closure, handle_ ## name ## _exception); \
|
|
|
|
pygobject_watch_closure((PyObject *)self, closure); \
|
|
|
|
priv = py_pad_private(self);\
|
|
|
|
if (priv->name) { \
|
|
|
|
g_closure_invalidate (priv->name); \
|
|
|
|
g_closure_unref (priv->name); \
|
|
|
|
} \
|
|
|
|
priv->name = closure; \
|
|
|
|
pad = (GstPad*)pygobject_get(self); \
|
|
|
|
gst_pad_set_ ## name (pad, call_ ## name); \
|
2005-06-17 10:59:47 +00:00
|
|
|
\
|
2005-09-08 13:34:29 +00:00
|
|
|
Py_INCREF(Py_None); \
|
|
|
|
return Py_None;
|
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
static void
|
|
|
|
free_pad_private (gpointer data)
|
2005-01-01 15:23:42 +00:00
|
|
|
{
|
2005-06-17 10:59:47 +00:00
|
|
|
PyGstPadPrivate *private = data;
|
|
|
|
#define INVALIDATE_CLOSURE(closure) \
|
|
|
|
if (closure) { \
|
|
|
|
g_closure_invalidate (closure); \
|
|
|
|
g_closure_unref (closure); \
|
|
|
|
closure = NULL; \
|
|
|
|
}
|
|
|
|
INVALIDATE_CLOSURE (private->link_function)
|
|
|
|
INVALIDATE_CLOSURE (private->event_function)
|
|
|
|
INVALIDATE_CLOSURE (private->chain_function)
|
|
|
|
INVALIDATE_CLOSURE (private->get_function)
|
|
|
|
INVALIDATE_CLOSURE (private->getcaps_function)
|
2006-12-01 17:41:28 +00:00
|
|
|
INVALIDATE_CLOSURE (private->setcaps_function)
|
2006-12-19 11:38:01 +00:00
|
|
|
INVALIDATE_CLOSURE (private->activate_function)
|
|
|
|
INVALIDATE_CLOSURE (private->activatepull_function)
|
|
|
|
INVALIDATE_CLOSURE (private->activatepush_function)
|
2005-06-17 10:59:47 +00:00
|
|
|
#undef INVALIDATE_CLOSURE
|
2007-04-10 18:01:25 +00:00
|
|
|
|
|
|
|
if (private->query_function) {
|
|
|
|
Py_DECREF (private->query_function);
|
|
|
|
private->query_function = NULL;
|
|
|
|
}
|
2005-01-01 15:23:42 +00:00
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
|
2005-01-01 15:23:42 +00:00
|
|
|
static PyGstPadPrivate*
|
2005-06-17 10:59:47 +00:00
|
|
|
pad_private(GstPad *pad)
|
2005-01-01 15:23:42 +00:00
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
PyGstPadPrivate *private;
|
|
|
|
static GQuark padprivate = 0;
|
|
|
|
|
|
|
|
if (!padprivate)
|
|
|
|
padprivate = g_quark_from_static_string ("PyGst::PadPrivate");
|
|
|
|
private = g_object_get_qdata (G_OBJECT (pad), padprivate);
|
|
|
|
if (private == NULL) {
|
|
|
|
private = g_new0(PyGstPadPrivate, 1);
|
2006-07-02 15:25:04 +00:00
|
|
|
private->pad = (PyGObject *) pygobject_new (G_OBJECT (pad));
|
2005-09-08 13:34:29 +00:00
|
|
|
Py_DECREF (private->pad);
|
|
|
|
g_object_set_qdata_full (G_OBJECT (pad), padprivate, private, free_pad_private);
|
|
|
|
}
|
|
|
|
return private;
|
2005-01-01 15:23:42 +00:00
|
|
|
}
|
2005-09-08 13:34:29 +00:00
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
static PyGstPadPrivate*
|
|
|
|
py_pad_private(PyGObject *pad)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
return pad_private ((GstPad *)pygobject_get(pad));
|
2005-06-17 10:59:47 +00:00
|
|
|
}
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
|
2005-01-01 15:23:42 +00:00
|
|
|
%%
|
|
|
|
ignore
|
|
|
|
gst_pad_select
|
|
|
|
gst_pad_selectv
|
2005-06-17 10:59:47 +00:00
|
|
|
gst_pad_new_from_template
|
2005-01-01 15:23:42 +00:00
|
|
|
gst_pad_load_and_link
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
%%
|
2005-06-17 10:59:47 +00:00
|
|
|
override gst_pad_set_getcaps_function kwargs
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_getcaps_function_exception (GValue *ret, guint n, const GValue *params)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
{
|
2005-06-17 10:59:47 +00:00
|
|
|
g_value_set_boxed (ret, gst_pad_get_pad_template_caps (
|
|
|
|
GST_PAD (g_value_get_object (¶ms[0]))));
|
|
|
|
PyErr_Clear ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
call_getcaps_function (GstPad *pad)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
GClosure *closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args = { 0, };
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
g_value_init (&ret, GST_TYPE_CAPS);
|
|
|
|
g_value_init (&args, GST_TYPE_PAD);
|
|
|
|
g_value_set_object (&args, pad);
|
|
|
|
|
|
|
|
closure = pad_private(pad)->getcaps_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 1, &args, NULL);
|
|
|
|
|
|
|
|
caps = g_value_dup_boxed (&ret);
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args);
|
|
|
|
return caps;
|
2005-06-17 10:59:47 +00:00
|
|
|
}
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
static PyObject*
|
|
|
|
_wrap_gst_pad_set_getcaps_function (PyGObject *self,
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
2005-06-17 10:59:47 +00:00
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
SET_PAD_CLOSURE (self, args, kwargs, getcaps_function)
|
2005-06-17 10:59:47 +00:00
|
|
|
}
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_link_function kwargs
|
|
|
|
|
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_link_function_exception (GValue *ret, guint n, const GValue *params)
|
|
|
|
{
|
|
|
|
g_value_set_enum (ret, GST_PAD_LINK_REFUSED);
|
|
|
|
PyErr_Clear ();
|
|
|
|
}
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
static GstPadLinkReturn
|
2005-06-20 21:39:34 +00:00
|
|
|
call_link_function (GstPad *pad, GstPad *peer)
|
2005-06-17 10:59:47 +00:00
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
GClosure *closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args[2] = { { 0, }, {0, } };
|
|
|
|
GstPadLinkReturn i;
|
|
|
|
|
|
|
|
g_value_init (&ret, GST_TYPE_PAD_LINK_RETURN);
|
|
|
|
g_value_init (&args[0], GST_TYPE_PAD);
|
|
|
|
g_value_init (&args[1], GST_TYPE_PAD);
|
|
|
|
g_value_set_object (&args[0], pad);
|
2005-10-11 12:42:53 +00:00
|
|
|
g_value_set_object (&args[1], peer);
|
2005-09-08 13:34:29 +00:00
|
|
|
|
|
|
|
closure = pad_private(pad)->link_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 2, args, NULL);
|
|
|
|
|
|
|
|
i = g_value_get_enum (&ret);
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args[0]);
|
|
|
|
g_value_unset (&args[1]);
|
|
|
|
return i;
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
_wrap_gst_pad_set_link_function (PyGObject *self,
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
SET_PAD_CLOSURE (self, args, kwargs, link_function)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_chain_function kwargs
|
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_chain_function_exception (GValue *ret, guint n, const GValue *params)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
{
|
2005-07-18 17:13:04 +00:00
|
|
|
GstElement *element = GST_ELEMENT (gst_object_get_parent (g_value_get_object (¶ms[0])));
|
2005-06-17 10:59:47 +00:00
|
|
|
|
2005-12-16 14:47:12 +00:00
|
|
|
if (!_pygst_element_check_error (element)) {
|
2005-06-17 10:59:47 +00:00
|
|
|
g_assert_not_reached (); /* only returns FALSE when there's no error */
|
2005-12-16 14:47:12 +00:00
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
}
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
|
2005-06-20 21:39:34 +00:00
|
|
|
static GstFlowReturn
|
2005-10-05 16:19:13 +00:00
|
|
|
call_chain_function(GstPad *pad, GstBuffer *buffer)
|
2005-06-17 10:59:47 +00:00
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
GClosure *closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args[2] = { { 0, }, { 0, } };
|
|
|
|
GstFlowReturn flow;
|
|
|
|
|
2005-10-05 16:19:13 +00:00
|
|
|
g_value_init (&ret, GST_TYPE_FLOW_RETURN);
|
2005-09-08 13:34:29 +00:00
|
|
|
g_value_set_enum (&ret, GST_FLOW_ERROR);
|
|
|
|
g_value_init (&args[0], GST_TYPE_PAD);
|
2005-10-05 16:19:13 +00:00
|
|
|
g_value_init (&args[1], GST_TYPE_BUFFER);
|
2005-09-08 13:34:29 +00:00
|
|
|
|
|
|
|
g_value_set_object (&args[0], pad);
|
2005-10-05 16:19:13 +00:00
|
|
|
gst_value_set_mini_object (&args[1], GST_MINI_OBJECT (buffer));
|
2005-09-08 13:34:29 +00:00
|
|
|
closure = pad_private(pad)->chain_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 2, args, NULL);
|
|
|
|
flow = g_value_get_enum (&ret);
|
|
|
|
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args[0]);
|
|
|
|
g_value_unset (&args[1]);
|
|
|
|
|
2005-10-05 16:19:13 +00:00
|
|
|
/* a chain function takes over the ref of the buffer handed to it;
|
|
|
|
* so we should unref after calling the pythonic chain func */
|
|
|
|
gst_buffer_unref (buffer);
|
2005-09-08 13:34:29 +00:00
|
|
|
return flow;
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
_wrap_gst_pad_set_chain_function(PyGObject *self,
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
SET_PAD_CLOSURE (self, args, kwargs, chain_function)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
}
|
2005-10-05 16:19:13 +00:00
|
|
|
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_event_function kwargs
|
|
|
|
|
2005-06-17 10:59:47 +00:00
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_event_function_exception (GValue *ret, guint n, const GValue *params)
|
|
|
|
{
|
2005-07-18 17:13:04 +00:00
|
|
|
GstElement *element = GST_ELEMENT (gst_pad_get_parent (g_value_get_object (¶ms[0])));
|
2005-06-17 10:59:47 +00:00
|
|
|
|
2005-12-16 14:47:12 +00:00
|
|
|
if (!_pygst_element_check_error (element)) {
|
2005-06-17 10:59:47 +00:00
|
|
|
g_assert_not_reached (); /* only returns FALSE when there's no error */
|
2005-12-16 14:47:12 +00:00
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
}
|
|
|
|
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
static gboolean
|
|
|
|
call_event_function (GstPad *pad, GstEvent *event)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
GClosure *closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args[2] = { { 0, }, { 0, } };
|
|
|
|
gboolean bool;
|
|
|
|
|
|
|
|
g_value_init (&ret, G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (&ret, FALSE);
|
|
|
|
g_value_init (&args[0], GST_TYPE_PAD);
|
|
|
|
g_value_init (&args[1], GST_TYPE_EVENT);
|
|
|
|
g_value_set_object (&args[0], pad);
|
2005-11-04 13:14:59 +00:00
|
|
|
gst_value_set_mini_object (&args[1], GST_MINI_OBJECT (event));
|
2005-09-08 13:34:29 +00:00
|
|
|
closure = pad_private(pad)->event_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 2, args, NULL);
|
|
|
|
|
|
|
|
bool = g_value_get_boolean (&ret);
|
|
|
|
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args[0]);
|
|
|
|
g_value_unset (&args[1]);
|
|
|
|
return bool;
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
_wrap_gst_pad_set_event_function (PyGObject *self,
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
{
|
2005-10-11 12:42:53 +00:00
|
|
|
SET_PAD_CLOSURE (self, args,
|
|
|
|
kwargs, event_function)
|
examples/gstreamer/filesrc.py,player.py: New examples
Original commit message from CVS:
* examples/gstreamer/filesrc.py,player.py: New examples
* gstreamer/gstreamer.override: Add a dict like interface to GstTagList
* gstreamer/gstpad-handlers.override: New file, split out from gstreamer.override
* gstreamer/gst-types.defs: Don't use
gst_buffer_free/gst_data_free, use gst_data_unref instead.
* gstreamer/gst-types.c (PyGstData_to_value): Don't send address here.
* gstreamer/arg-types.py (GstDataPtrArg.write_param): Send the
address to stuff, since we really want to avoid segfaults :)
* gstreamer/0.6.[c,defs,h,override]: Remove, we're focusing on 0.7
* gstreamer/0.7.[c,defs,h,override]: Remove, merge with
gstreamer.*
* gstreamer/Makefile.am: Clean up, remove versioning support.
2004-02-27 18:01:52 +00:00
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
|
2007-04-10 18:01:25 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_query_function kwargs
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
pypad_copy_struct_members (GQuark field_id, const GValue * value,
|
|
|
|
GstStructure* to_structure)
|
|
|
|
{
|
|
|
|
gst_structure_id_set_value (to_structure, field_id, value);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
call_query_function (GstPad *pad, GstQuery *query)
|
|
|
|
{
|
|
|
|
PyGILState_STATE __py_state;
|
|
|
|
PyGObject *py_pad;
|
|
|
|
PyGstPadPrivate *priv;
|
|
|
|
|
|
|
|
PyObject *py_ret;
|
|
|
|
PyObject *py_args;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
GstQuery *query_copy;
|
|
|
|
PyObject *py_query;
|
|
|
|
|
|
|
|
/* Push our GIL state */
|
|
|
|
__py_state = pyg_gil_state_ensure();
|
|
|
|
|
|
|
|
/* Get the python version of the pad */
|
|
|
|
py_pad = (PyGObject *) pygobject_new((GObject*) (pad));
|
|
|
|
if (!py_pad) {
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
PyErr_Print();
|
|
|
|
goto beach;
|
|
|
|
}
|
|
|
|
/* Private data, where our callback should be stored */
|
|
|
|
priv = py_pad_private(py_pad);
|
|
|
|
if (priv->query_function == NULL) {
|
|
|
|
/* FIXME: Generate an error message somewhere? */
|
|
|
|
Py_DECREF(py_pad);
|
|
|
|
goto beach;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create our arguments tuple and populate */
|
|
|
|
py_args = PyTuple_New(2);
|
|
|
|
|
|
|
|
/* We copy the query into a new one so that it can have a refcount
|
|
|
|
* of exactly 1 and be owned by python */
|
|
|
|
pyg_begin_allow_threads;
|
|
|
|
query_copy = gst_query_copy (query);
|
|
|
|
pyg_end_allow_threads;
|
|
|
|
py_query = pygstminiobject_new((GstMiniObject *)query_copy);
|
|
|
|
gst_query_unref (query_copy);
|
|
|
|
|
|
|
|
PyTuple_SetItem(py_args, 0, (PyObject *) (py_pad));
|
|
|
|
PyTuple_SetItem(py_args, 1, py_query);
|
|
|
|
|
|
|
|
/* Perform the callback into python, then parse the result */
|
|
|
|
py_ret = PyObject_CallObject(priv->query_function, py_args);
|
|
|
|
if (!py_ret) {
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
PyErr_Print();
|
|
|
|
|
|
|
|
Py_DECREF(py_args);
|
|
|
|
goto beach;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = (py_ret == Py_True ? TRUE : FALSE);
|
|
|
|
|
|
|
|
/* If the query succeeded, copy the result back into the original query.
|
|
|
|
* We still have a refcount to it, because we didn't unref the py_query
|
|
|
|
* wrapper yet. */
|
|
|
|
if (ret) {
|
|
|
|
/* I feel ill violating the poor query like this, but it's the only
|
|
|
|
* way to transfer data from our copy back to the original query */
|
|
|
|
GstStructure *from, *to;
|
|
|
|
|
|
|
|
pyg_begin_allow_threads;
|
|
|
|
from = GST_QUERY (query_copy)->structure;
|
|
|
|
to = query->structure;
|
|
|
|
gst_structure_foreach (from,
|
|
|
|
(GstStructureForeachFunc) pypad_copy_struct_members, to);
|
|
|
|
pyg_end_allow_threads;
|
|
|
|
}
|
|
|
|
|
|
|
|
Py_DECREF(py_args);
|
|
|
|
Py_DECREF(py_ret);
|
|
|
|
beach:
|
|
|
|
pyg_gil_state_release(__py_state);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
_wrap_gst_pad_set_query_function (PyGObject *self,
|
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "query_function", NULL };
|
|
|
|
PyObject *function;
|
|
|
|
GstPad *pad;
|
|
|
|
PyGstPadPrivate *priv;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
|
|
|
"O:GstPad.set_query_function",
|
|
|
|
kwlist,
|
|
|
|
&function)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pad = (GstPad*)pygobject_get(self);
|
|
|
|
priv = py_pad_private(self);
|
|
|
|
|
|
|
|
/* Allow setting query_function to None to clear it to NULL */
|
|
|
|
if (function == Py_None) {
|
|
|
|
if (priv->query_function) {
|
|
|
|
Py_DECREF (priv->query_function);
|
|
|
|
priv->query_function = NULL;
|
|
|
|
}
|
|
|
|
gst_pad_set_query_function (pad, NULL);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PyCallable_Check(function)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "Passed query_function not callable");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->query_function) {
|
|
|
|
Py_DECREF (priv->query_function);
|
|
|
|
}
|
|
|
|
|
|
|
|
Py_INCREF(function);
|
|
|
|
priv->query_function = function;
|
|
|
|
|
|
|
|
gst_pad_set_query_function (pad, call_query_function);
|
|
|
|
|
|
|
|
out:
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
|
|
|
}
|
|
|
|
|
2006-12-01 17:41:28 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_setcaps_function kwargs
|
|
|
|
|
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_setcaps_function_exception (GValue *ret, guint n, const GValue *params)
|
|
|
|
{
|
|
|
|
GstElement *element = GST_ELEMENT (gst_pad_get_parent (g_value_get_object (¶ms[0])));
|
|
|
|
|
|
|
|
if (!_pygst_element_check_error (element)) {
|
|
|
|
g_assert_not_reached (); /* only returns FALSE when there's no error */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
call_setcaps_function (GstPad *pad, GstCaps *caps)
|
|
|
|
{
|
|
|
|
GClosure *closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args[2] = { { 0, }, { 0, } };
|
|
|
|
gboolean bool;
|
|
|
|
|
|
|
|
g_value_init (&ret, G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (&ret, FALSE);
|
|
|
|
g_value_init (&args[0], GST_TYPE_PAD);
|
|
|
|
g_value_init (&args[1], GST_TYPE_CAPS);
|
|
|
|
g_value_set_object (&args[0], pad);
|
|
|
|
gst_value_set_caps (&args[1], (const GstCaps*) caps);
|
|
|
|
closure = pad_private(pad)->setcaps_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 2, args, NULL);
|
|
|
|
|
|
|
|
bool = g_value_get_boolean (&ret);
|
|
|
|
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args[0]);
|
|
|
|
g_value_unset (&args[1]);
|
|
|
|
return bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
_wrap_gst_pad_set_setcaps_function (PyGObject *self,
|
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
|
|
|
{
|
|
|
|
SET_PAD_CLOSURE (self, args,
|
|
|
|
kwargs, setcaps_function)
|
|
|
|
}
|
2006-12-19 11:38:01 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_activate_function kwargs
|
|
|
|
|
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_activate_function_exception (GValue * ret, guint n, const GValue * params)
|
|
|
|
{
|
|
|
|
GstElement *element = GST_ELEMENT (gst_pad_get_parent (g_value_get_object (¶ms[0])));
|
|
|
|
|
|
|
|
if (!_pygst_element_check_error (element)) {
|
|
|
|
g_assert_not_reached (); /* only returns FALSE when there's no error */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
call_activate_function (GstPad * pad)
|
|
|
|
{
|
|
|
|
GClosure * closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args[1] = { {0, }};
|
|
|
|
gboolean bool;
|
2006-12-01 17:41:28 +00:00
|
|
|
|
2006-12-19 11:38:01 +00:00
|
|
|
g_value_init (&ret, G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (&ret, FALSE);
|
|
|
|
g_value_init(&args[0], GST_TYPE_PAD);
|
|
|
|
g_value_set_object (&args[0], pad);
|
|
|
|
closure = pad_private(pad)->activate_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 1, args, NULL);
|
|
|
|
|
|
|
|
bool = g_value_get_boolean (&ret);
|
|
|
|
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args[0]);
|
|
|
|
|
|
|
|
return bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_set_activate_function (PyGObject *self,
|
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
|
|
|
{
|
|
|
|
SET_PAD_CLOSURE (self, args, kwargs, activate_function)
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_set_activatepull_function kwargs
|
|
|
|
|
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_activatepull_function_exception (GValue * ret, guint n, const GValue * params)
|
|
|
|
{
|
|
|
|
GstElement *element = GST_ELEMENT (gst_pad_get_parent (g_value_get_object (¶ms[0])));
|
|
|
|
|
|
|
|
if (!_pygst_element_check_error (element)) {
|
|
|
|
g_assert_not_reached (); /* only returns FALSE when there's no error */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
call_activatepull_function (GstPad * pad, gboolean active)
|
|
|
|
{
|
|
|
|
GClosure * closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args[2] = { {0, }, {0, } };
|
|
|
|
gboolean bool;
|
|
|
|
|
|
|
|
g_value_init (&ret, G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (&ret, FALSE);
|
|
|
|
g_value_init (&args[0], GST_TYPE_PAD);
|
|
|
|
g_value_set_object (&args[0], pad);
|
|
|
|
g_value_init (&args[1], G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (&args[1], active);
|
|
|
|
closure = pad_private(pad)->activatepull_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 2, args, NULL);
|
|
|
|
|
|
|
|
bool = g_value_get_boolean (&ret);
|
|
|
|
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args[0]);
|
|
|
|
g_value_unset (&args[1]);
|
|
|
|
|
|
|
|
return bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_set_activatepull_function (PyGObject *self,
|
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
|
|
|
{
|
|
|
|
SET_PAD_CLOSURE (self, args, kwargs, activatepull_function);
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_set_activatepush_function kwargs
|
|
|
|
|
|
|
|
static void EXCEPTION_HANDLER
|
|
|
|
handle_activatepush_function_exception (GValue * ret, guint n, const GValue * params)
|
|
|
|
{
|
|
|
|
GstElement *element = GST_ELEMENT (gst_pad_get_parent (g_value_get_object (¶ms[0])));
|
|
|
|
|
|
|
|
if (!_pygst_element_check_error (element)) {
|
|
|
|
g_assert_not_reached (); /* only returns FALSE when there's no error */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
call_activatepush_function (GstPad * pad, gboolean active)
|
|
|
|
{
|
|
|
|
GClosure * closure;
|
|
|
|
GValue ret = { 0, };
|
|
|
|
GValue args[2] = { {0, }, {0, }};
|
|
|
|
gboolean bool;
|
|
|
|
|
|
|
|
g_value_init (&ret, G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (&ret, FALSE);
|
|
|
|
g_value_init (&args[0], GST_TYPE_PAD);
|
|
|
|
g_value_set_object (&args[0], pad);
|
|
|
|
g_value_init (&args[1], G_TYPE_BOOLEAN);
|
|
|
|
g_value_set_boolean (&args[1], active);
|
|
|
|
closure = pad_private(pad)->activatepush_function;
|
|
|
|
|
|
|
|
g_closure_invoke (closure, &ret, 2, args, NULL);
|
|
|
|
|
|
|
|
bool = g_value_get_boolean (&ret);
|
|
|
|
|
|
|
|
g_value_unset (&ret);
|
|
|
|
g_value_unset (&args[0]);
|
|
|
|
g_value_unset (&args[1]);
|
|
|
|
|
|
|
|
return bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_set_activatepush_function (PyGObject *self,
|
|
|
|
PyObject *args,
|
|
|
|
PyObject *kwargs)
|
|
|
|
{
|
|
|
|
SET_PAD_CLOSURE (self, args, kwargs, activatepush_function);
|
|
|
|
}
|
2005-01-01 15:23:42 +00:00
|
|
|
%%
|
|
|
|
override-slot GstPad.tp_repr
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_tp_repr (PyGObject *self)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
char *buf;
|
|
|
|
PyObject *retval;
|
2005-10-06 16:58:38 +00:00
|
|
|
GstPad *pad;
|
|
|
|
GstElement *parent;
|
|
|
|
gchar *padname = NULL;
|
|
|
|
gchar *elementname = NULL;
|
2005-09-08 13:34:29 +00:00
|
|
|
|
|
|
|
pad = GST_PAD(self->obj);
|
|
|
|
parent = GST_ELEMENT (gst_pad_get_parent (pad));
|
|
|
|
|
2005-10-06 16:58:38 +00:00
|
|
|
padname = gst_pad_get_name (pad);
|
2005-09-28 09:52:37 +00:00
|
|
|
if (parent)
|
2005-10-06 16:58:38 +00:00
|
|
|
elementname = gst_element_get_name (parent);
|
|
|
|
|
|
|
|
buf = g_strdup_printf ("<GstPad (%s:%s) at %lx>",
|
|
|
|
parent ? elementname : "---",
|
|
|
|
padname, (long) self->obj);
|
|
|
|
|
|
|
|
if (parent) {
|
2005-09-28 09:52:37 +00:00
|
|
|
gst_object_unref (parent);
|
2005-10-06 16:58:38 +00:00
|
|
|
g_free(elementname);
|
|
|
|
}
|
|
|
|
g_free(padname);
|
2005-09-08 13:34:29 +00:00
|
|
|
|
|
|
|
retval = PyString_FromString(buf);
|
|
|
|
g_free(buf);
|
|
|
|
return retval;
|
2005-01-01 15:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
%%
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
override gst_pad_query kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_query(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "query", NULL };
|
|
|
|
int ret;
|
|
|
|
PyGstMiniObject *query;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!:GstPad.query", kwlist, &PyGstQuery_Type, &query))
|
|
|
|
return NULL;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
2007-04-11 09:22:15 +00:00
|
|
|
pyg_begin_allow_threads;
|
2005-07-12 16:37:31 +00:00
|
|
|
ret = gst_pad_query(GST_PAD(self->obj), GST_QUERY (query->obj));
|
2007-04-11 09:22:15 +00:00
|
|
|
pyg_end_allow_threads;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
return PyBool_FromLong(ret);
|
|
|
|
}
|
|
|
|
%%
|
2005-01-01 15:23:42 +00:00
|
|
|
override gst_pad_convert kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_convert(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
static char *kwlist[] = { "src_format", "src_value",
|
|
|
|
"dest_format", NULL };
|
|
|
|
GstFormat src_format, dest_format;
|
|
|
|
PyObject *src_value_obj;
|
|
|
|
gint64 src_value, dest_value = 0;
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
|
|
|
"iOi:GstPad.convert", kwlist,
|
|
|
|
&src_format, &src_value_obj,
|
|
|
|
&dest_format))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
src_value = PyLong_AsLongLong(src_value_obj);
|
|
|
|
|
|
|
|
ret = gst_pad_convert(GST_PAD(self->obj), src_format, src_value,
|
|
|
|
&dest_format, &dest_value);
|
|
|
|
return PyLong_FromLongLong(dest_value);
|
2005-01-01 15:23:42 +00:00
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_link kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_link(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "sinkpad", NULL };
|
|
|
|
PyGObject *sinkpad;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!:GstPad.link", kwlist,
|
|
|
|
&PyGstPad_Type, &sinkpad))
|
|
|
|
return NULL;
|
|
|
|
ret = gst_pad_link(GST_PAD(self->obj), GST_PAD(sinkpad->obj));
|
2005-06-26 12:35:07 +00:00
|
|
|
if (ret) {
|
2005-10-13 10:41:06 +00:00
|
|
|
PyObject *exc_val = pyg_enum_from_gtype(GST_TYPE_PAD_LINK_RETURN, ret);
|
|
|
|
PyErr_SetObject(PyGstExc_LinkError, exc_val);
|
|
|
|
Py_DECREF(exc_val);
|
2005-01-01 15:23:42 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return PyBool_FromLong(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
%%
|
|
|
|
override gst_pad_link_filtered kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_link_filtered(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "sinkpad", "filtercaps", NULL };
|
|
|
|
PyGObject *sinkpad;
|
|
|
|
PyObject *py_filtercaps;
|
|
|
|
int ret;
|
|
|
|
GstCaps *filtercaps = NULL;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!O:GstPad.link_filtered",
|
|
|
|
kwlist, &PyGstPad_Type, &sinkpad,
|
|
|
|
&py_filtercaps))
|
|
|
|
return NULL;
|
|
|
|
if (pyg_boxed_check(py_filtercaps, GST_TYPE_CAPS))
|
|
|
|
filtercaps = pyg_boxed_get(py_filtercaps, GstCaps);
|
|
|
|
else {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "filtercaps should be a GstCaps");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ret = gst_pad_link_filtered(GST_PAD(self->obj),
|
|
|
|
GST_PAD(sinkpad->obj),
|
|
|
|
filtercaps);
|
2005-06-26 12:35:07 +00:00
|
|
|
if (ret) {
|
2005-10-13 10:41:06 +00:00
|
|
|
PyObject *exc_val = pyg_enum_from_gtype(GST_TYPE_PAD_LINK_RETURN, ret);
|
|
|
|
PyErr_SetObject(PyGstExc_LinkError, exc_val);
|
|
|
|
Py_DECREF(exc_val);
|
2005-01-01 15:23:42 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return PyBool_FromLong(ret);
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_get_pad_template_caps noargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_get_pad_template_caps(PyGObject *self)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
GstCaps *ret = (GstCaps*)gst_pad_get_pad_template_caps(GST_PAD(self->obj));
|
|
|
|
return pyg_boxed_new(GST_TYPE_CAPS, ret, TRUE, TRUE);
|
2005-01-01 15:23:42 +00:00
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_template_get_caps noargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_template_get_caps(PyGObject *self)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
GstCaps *ret = (GstCaps*)gst_pad_template_get_caps(GST_PAD_TEMPLATE(self->obj));
|
|
|
|
return pyg_boxed_new(GST_TYPE_CAPS, ret, TRUE, TRUE);
|
2005-01-01 15:23:42 +00:00
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_template_get_caps_by_name kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_template_get_caps_by_name(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "name", NULL };
|
|
|
|
char *name;
|
|
|
|
GstCaps *ret;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s:GstPadTemplate.get_caps_by_name", kwlist, &name))
|
|
|
|
return NULL;
|
|
|
|
ret = (GstCaps*)gst_pad_template_get_caps_by_name(GST_PAD_TEMPLATE(self->obj), name);
|
|
|
|
/* pyg_boxed_new handles NULL checking */
|
|
|
|
return pyg_boxed_new(GST_TYPE_CAPS, ret, TRUE, TRUE);
|
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
%%
|
2006-06-09 10:50:21 +00:00
|
|
|
new-constructor GST_TYPE_PAD
|
|
|
|
%%
|
2005-06-17 10:59:47 +00:00
|
|
|
override gst_pad_new kwargs
|
|
|
|
static int
|
|
|
|
_wrap_gst_pad_new(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "name", "direction", NULL };
|
|
|
|
static char *kwlist2[] = { "template", "name", NULL };
|
|
|
|
PyGObject *templ;
|
|
|
|
char *name = NULL;
|
|
|
|
PyObject *py_direction = NULL;
|
|
|
|
GstPadDirection direction;
|
|
|
|
|
2005-09-08 13:34:29 +00:00
|
|
|
if (PyArg_ParseTupleAndKeywords (args, kwargs, "zO:GstPad.__init__",
|
|
|
|
kwlist, &name, &py_direction)) {
|
|
|
|
|
|
|
|
GST_LOG ("gst.Pad.__init__: using gst_pad_new");
|
|
|
|
if (pyg_enum_get_value (GST_TYPE_PAD_DIRECTION, py_direction,
|
|
|
|
(gint *) &direction)) {
|
|
|
|
GST_LOG ("gst.Pad.__init__: direction is not valid");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->obj = (GObject *) gst_pad_new (name, direction);
|
2005-06-17 10:59:47 +00:00
|
|
|
} else {
|
2005-09-08 13:34:29 +00:00
|
|
|
PyErr_Clear ();
|
|
|
|
|
|
|
|
GST_LOG ("gst.Pad.__init__: using gst_pad_new_from_template");
|
|
|
|
if (PyArg_ParseTupleAndKeywords (args, kwargs, "O!|s:GstPad.__init__",
|
|
|
|
kwlist2, &PyGstPadTemplate_Type,
|
|
|
|
&templ, &name)) {
|
|
|
|
if (name == NULL)
|
|
|
|
name = GST_PAD_TEMPLATE_NAME_TEMPLATE (GST_PAD_TEMPLATE (
|
|
|
|
templ->obj));
|
|
|
|
self->obj = (GObject *) gst_pad_new_from_template (
|
|
|
|
GST_PAD_TEMPLATE (templ->obj), name);
|
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
}
|
|
|
|
if (!self->obj) {
|
2005-09-08 13:34:29 +00:00
|
|
|
PyErr_SetString (PyExc_RuntimeError, "could not create GstPad object");
|
2005-06-17 10:59:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-09-08 13:34:29 +00:00
|
|
|
pygobject_register_wrapper ((PyObject *)self);
|
2005-06-17 10:59:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
%%
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
override gst_pad_add_data_probe args
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_add_data_probe(PyGObject *self, PyObject *args)
|
|
|
|
{
|
2008-01-13 17:57:48 +00:00
|
|
|
GstPad *pad = GST_PAD(self->obj);
|
|
|
|
PyObject *method = NULL;
|
|
|
|
PyObject *rv = NULL;
|
|
|
|
PyObject *mylist = PyList_New(1);
|
|
|
|
PyObject *mynewlist = NULL;
|
|
|
|
PyObject *myargs = NULL;
|
|
|
|
PyObject *signalname = NULL;
|
|
|
|
|
|
|
|
signalname = PyString_FromString("have-data");
|
|
|
|
|
|
|
|
if (PyList_SetItem(mylist, 0, signalname)) {
|
|
|
|
Py_DECREF(mylist);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mynewlist = PySequence_InPlaceConcat(mylist, args);
|
|
|
|
|
|
|
|
Py_DECREF(mylist);
|
|
|
|
|
|
|
|
if (!mynewlist)
|
|
|
|
return NULL;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
myargs = PyList_AsTuple(mynewlist);
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
Py_DECREF(mynewlist);
|
|
|
|
|
|
|
|
if (!myargs)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
method = PyObject_GetAttrString((PyObject*)self, "connect");
|
|
|
|
|
|
|
|
if (!method) {
|
|
|
|
Py_DECREF(mylist);
|
2005-09-21 13:36:45 +00:00
|
|
|
return NULL;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
2008-01-13 17:57:48 +00:00
|
|
|
|
|
|
|
GST_OBJECT_LOCK (pad);
|
|
|
|
|
|
|
|
rv = PyObject_CallObject(method, myargs);
|
|
|
|
if (rv) {
|
|
|
|
GST_PAD_DO_BUFFER_SIGNALS (pad)++;
|
|
|
|
GST_PAD_DO_EVENT_SIGNALS (pad)++;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
GST_OBJECT_UNLOCK (pad);
|
|
|
|
|
|
|
|
Py_DECREF(myargs);
|
|
|
|
Py_DECREF(method);
|
|
|
|
|
|
|
|
return rv;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_add_event_probe args
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_add_event_probe(PyGObject *self, PyObject *args)
|
|
|
|
{
|
2008-01-13 17:57:48 +00:00
|
|
|
GstPad *pad = GST_PAD(self->obj);
|
|
|
|
PyObject *method = NULL;
|
|
|
|
PyObject *rv = NULL;
|
|
|
|
PyObject *mylist = PyList_New(1);
|
|
|
|
PyObject *mynewlist = NULL;
|
|
|
|
PyObject *myargs = NULL;
|
|
|
|
PyObject *signalname = NULL;
|
|
|
|
|
|
|
|
signalname = PyString_FromString("have-data::event");
|
|
|
|
|
|
|
|
if (PyList_SetItem(mylist, 0, signalname)) {
|
|
|
|
Py_DECREF(mylist);
|
|
|
|
return NULL;
|
|
|
|
}
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
mynewlist = PySequence_InPlaceConcat(mylist, args);
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
Py_DECREF(mylist);
|
|
|
|
|
|
|
|
if (!mynewlist)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
myargs = PyList_AsTuple(mynewlist);
|
|
|
|
|
|
|
|
Py_DECREF(mynewlist);
|
|
|
|
|
|
|
|
if (!myargs)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
method = PyObject_GetAttrString((PyObject*)self, "connect");
|
|
|
|
|
|
|
|
if (!method) {
|
|
|
|
Py_DECREF(mylist);
|
2005-09-21 13:36:45 +00:00
|
|
|
return NULL;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
GST_OBJECT_LOCK (pad);
|
|
|
|
|
|
|
|
rv = PyObject_CallObject(method, myargs);
|
|
|
|
if (rv)
|
|
|
|
GST_PAD_DO_EVENT_SIGNALS (pad)++;
|
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (pad);
|
|
|
|
|
|
|
|
Py_DECREF(myargs);
|
|
|
|
Py_DECREF(method);
|
|
|
|
|
|
|
|
return rv;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_add_buffer_probe args
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_add_buffer_probe(PyGObject *self, PyObject *args)
|
|
|
|
{
|
2008-01-13 17:57:48 +00:00
|
|
|
GstPad *pad = GST_PAD(self->obj);
|
|
|
|
PyObject *method = NULL;
|
|
|
|
PyObject *rv = NULL;
|
|
|
|
PyObject *mylist = PyList_New(1);
|
|
|
|
PyObject *mynewlist = NULL;
|
|
|
|
PyObject *myargs = NULL;
|
|
|
|
PyObject *signalname = NULL;
|
|
|
|
|
|
|
|
signalname = PyString_FromString("have-data::buffer");
|
|
|
|
|
|
|
|
if (PyList_SetItem(mylist, 0, signalname)) {
|
|
|
|
Py_DECREF(mylist);
|
|
|
|
return NULL;
|
|
|
|
}
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
mynewlist = PySequence_InPlaceConcat(mylist, args);
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
Py_DECREF(mylist);
|
|
|
|
|
|
|
|
if (!mynewlist)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
myargs = PyList_AsTuple(mynewlist);
|
|
|
|
|
|
|
|
Py_DECREF(mynewlist);
|
|
|
|
|
|
|
|
if (!myargs)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
method = PyObject_GetAttrString((PyObject*)self, "connect");
|
|
|
|
|
|
|
|
if (!method) {
|
|
|
|
Py_DECREF(mylist);
|
2005-09-21 13:36:45 +00:00
|
|
|
return NULL;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
|
2008-01-13 17:57:48 +00:00
|
|
|
GST_OBJECT_LOCK (pad);
|
|
|
|
|
|
|
|
rv = PyObject_CallObject(method, myargs);
|
|
|
|
if (rv)
|
|
|
|
GST_PAD_DO_BUFFER_SIGNALS (pad)++;
|
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (pad);
|
|
|
|
|
|
|
|
Py_DECREF(myargs);
|
|
|
|
Py_DECREF(method);
|
|
|
|
|
|
|
|
return rv;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
%%
|
2005-06-17 10:59:47 +00:00
|
|
|
override-slot GstPadTemplate.tp_getattr
|
|
|
|
#define IS_ATTR(name) (strcmp (name, attr) == 0)
|
|
|
|
PyObject *
|
|
|
|
_wrap_gst_pad_template_tp_getattr(PyObject *self, char *attr)
|
|
|
|
{
|
|
|
|
GstPadTemplate *templ = GST_PAD_TEMPLATE (pygobject_get (self));
|
|
|
|
|
|
|
|
if (IS_ATTR ("__members__")) {
|
|
|
|
return Py_BuildValue("[ssss]", "name_template", "direction", "presence", "caps" );
|
|
|
|
} else if (IS_ATTR ("name_template")) {
|
|
|
|
return PyString_FromString (GST_PAD_TEMPLATE_NAME_TEMPLATE(templ));
|
|
|
|
} else if (IS_ATTR ("direction")) {
|
|
|
|
return pyg_enum_from_gtype(GST_TYPE_PAD_DIRECTION, GST_PAD_TEMPLATE_DIRECTION(templ));
|
|
|
|
} else if (IS_ATTR ("presence")) {
|
|
|
|
return pyg_enum_from_gtype(GST_TYPE_PAD_PRESENCE, GST_PAD_TEMPLATE_PRESENCE(templ));
|
|
|
|
} else if (IS_ATTR ("caps")) {
|
|
|
|
return pyg_boxed_new (GST_TYPE_CAPS, GST_PAD_TEMPLATE_CAPS(templ), TRUE, TRUE);
|
|
|
|
}
|
2006-06-09 10:50:21 +00:00
|
|
|
return Py_FindMethod((PyMethodDef*) _PyGstPadTemplate_methods, self, attr);
|
2005-06-17 10:59:47 +00:00
|
|
|
}
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_query_position args
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_query_position (PyGObject *self, PyObject *args)
|
|
|
|
{
|
2005-10-19 17:32:29 +00:00
|
|
|
gint64 cur;
|
2005-09-08 13:34:29 +00:00
|
|
|
gint format;
|
|
|
|
PyObject *pformat;
|
|
|
|
PyObject *ret;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
|
|
|
pformat = (PyObject*)PyTuple_GetItem(args, 0);
|
|
|
|
if (pyg_enum_get_value (GST_TYPE_FORMAT, pformat, &format)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-06-17 10:59:47 +00:00
|
|
|
|
2005-10-19 17:32:29 +00:00
|
|
|
if ((gst_pad_query_position(GST_PAD (self->obj), (GstFormat*) &format, &cur))) {
|
2006-07-03 09:01:18 +00:00
|
|
|
ret = Py_BuildValue("(LO)", cur,
|
|
|
|
pyg_enum_from_gtype (GST_TYPE_FORMAT, format));
|
2005-11-01 18:19:08 +00:00
|
|
|
} else {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
ret = Py_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
2006-07-03 09:31:26 +00:00
|
|
|
override gst_pad_query_duration args
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_query_duration (PyGObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
gint64 cur;
|
|
|
|
gint format;
|
|
|
|
PyObject *pformat;
|
|
|
|
PyObject *ret;
|
|
|
|
|
|
|
|
pformat = (PyObject*)PyTuple_GetItem(args, 0);
|
|
|
|
if (pyg_enum_get_value (GST_TYPE_FORMAT, pformat, &format)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((gst_pad_query_duration(GST_PAD (self->obj), (GstFormat*) &format, &cur))) {
|
|
|
|
ret = Py_BuildValue("(LO)", cur,
|
|
|
|
pyg_enum_from_gtype (GST_TYPE_FORMAT, format));
|
|
|
|
} else {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
ret = Py_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
override gst_pad_query_convert kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_query_convert (PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "fromformat", "fromvalue", "destformat", NULL };
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *pfromformat, *pdestformat;
|
|
|
|
GstFormat srcformat, destformat;
|
|
|
|
gint64 fromval, dstval;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
|
|
|
|
/* Input : src_format, src_val, dst_format */
|
|
|
|
/* Returns : dst_format, dst_val OR None */
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
2005-09-08 13:34:29 +00:00
|
|
|
"0L0:GstPad.query_convert",
|
|
|
|
kwlist, &pfromformat, &fromval, &pdestformat))
|
|
|
|
return NULL;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
if (pyg_enum_get_value(GST_TYPE_FORMAT, pfromformat, (gint *) &srcformat)) {
|
2005-09-08 13:34:29 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
if (pyg_enum_get_value(GST_TYPE_FORMAT, pdestformat, (gint *) &destformat)) {
|
2005-09-08 13:34:29 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(gst_pad_query_convert (GST_PAD(self->obj),
|
2005-09-08 13:34:29 +00:00
|
|
|
srcformat, fromval,
|
|
|
|
&destformat, &dstval))) {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
|
|
|
|
2006-07-03 09:01:18 +00:00
|
|
|
return Py_BuildValue("(OL)",
|
|
|
|
pyg_enum_from_gtype (GST_TYPE_FORMAT, destformat),
|
|
|
|
dstval);
|
gst/: Added GError wrapping,
Original commit message from CVS:
* gst/gst-types.defs:
* gst/gst.defs:
Added GError wrapping,
Removed data field from Buffer,
Added virtual methods to object
Updated to latest API
* gst/gst.override:
wrapped gst_plugin_get_feature_list(), gst_uri_handler_get_protocols(),
gst_registry_pool_list()
* gst/gstbuffer.override:
gst.Buffer() works
get/setters fixed
wrapped gst_buffer_stamp()
* gst/gstbus.override:
wrapped gst_bus_set_sync_handler() and gst_bus_add_watch()
* gst/gstelement.override:
wrapped gst_element_send_event(), gst_element_factory_get_pad_templates()
gst_element_query_convert(), gst_element_get_query_types()
* gst/gstevent.override:
wrapped gst_event_discont_get_value()
* gst/gstmessage.override:
wrapped gst_message_parse_state_changed(), gst_message_parse_error(),
gst_message_parse_warning(), gst_message_parse_tag()
* gst/gstmodule.c:
Added registration of new fundamental type with pygtk
* gst/gstpad.override:
wrapped gst_pad_query(), gst_pad_[add|remove]_[data|event|buffer]_probe(),
gst_pad_query_position(), gst_pad_query_convert()
* gst/gstquery.override:
wrapped gst_query_parse_position(), gst_query_parse_convert(),
gst_query_parse_seeking_query(), gst_query_parse_seeking_reponse()
* gst/pygstminiobject.c:
fixes
* gst/Makefile.am:
added gstbus.override, gstmessage.override, gstquery.override
* testsuite/test_buffer.py:
* testsuite/test_element.py:
* testsuite/test_event.py:
* testsuite/test_pipeline.py:
Updating testsuites
2005-07-12 09:45:58 +00:00
|
|
|
}
|
2005-07-12 16:37:31 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_alloc_buffer kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_alloc_buffer (PyGObject *self, PyObject * args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = {"offset", "size", "caps", NULL};
|
2005-09-08 13:34:29 +00:00
|
|
|
guint64 offset;
|
|
|
|
gint size;
|
|
|
|
PyObject *pcaps;
|
|
|
|
GstCaps *caps;
|
|
|
|
PyObject *ret;
|
|
|
|
GstBuffer *buf;
|
|
|
|
GstFlowReturn res;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
2005-09-08 13:34:29 +00:00
|
|
|
"KiO:GstPad.alloc_buffer",
|
|
|
|
kwlist, &offset, &size, &pcaps))
|
|
|
|
return NULL;
|
2005-07-12 16:37:31 +00:00
|
|
|
caps = pyg_boxed_get(pcaps, GstCaps);
|
|
|
|
res = gst_pad_alloc_buffer (GST_PAD(pygobject_get(self)),
|
2005-09-08 13:34:29 +00:00
|
|
|
offset, size, caps, &buf);
|
2005-10-13 10:58:16 +00:00
|
|
|
ret = PyList_New(2);
|
|
|
|
PyList_SetItem(ret, 0, pyg_enum_from_gtype(GST_TYPE_FLOW_RETURN, res));
|
2005-07-12 16:37:31 +00:00
|
|
|
if (res != GST_FLOW_OK) {
|
2005-11-01 18:19:08 +00:00
|
|
|
PyList_SetItem(ret, 1, Py_None);
|
2005-07-12 16:37:31 +00:00
|
|
|
} else {
|
2005-10-13 10:58:16 +00:00
|
|
|
PyList_SetItem(ret, 1, pygstminiobject_new(GST_MINI_OBJECT(buf)));
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
2006-03-13 11:19:10 +00:00
|
|
|
override gst_pad_alloc_buffer_and_set_caps kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_alloc_buffer_and_set_caps (PyGObject *self, PyObject * args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = {"offset", "size", "caps", NULL};
|
|
|
|
guint64 offset;
|
|
|
|
gint size;
|
|
|
|
PyObject *pcaps;
|
|
|
|
GstCaps *caps;
|
|
|
|
PyObject *ret;
|
|
|
|
GstBuffer *buf;
|
|
|
|
GstFlowReturn res;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
|
|
|
"KiO:GstPad.alloc_buffer_and_set_caps",
|
|
|
|
kwlist, &offset, &size, &pcaps))
|
|
|
|
return NULL;
|
|
|
|
caps = pyg_boxed_get(pcaps, GstCaps);
|
|
|
|
res = gst_pad_alloc_buffer_and_set_caps (GST_PAD(pygobject_get(self)),
|
|
|
|
offset, size, caps, &buf);
|
|
|
|
ret = PyList_New(2);
|
|
|
|
PyList_SetItem(ret, 0, pyg_enum_from_gtype(GST_TYPE_FLOW_RETURN, res));
|
|
|
|
if (res != GST_FLOW_OK) {
|
|
|
|
PyList_SetItem(ret, 1, Py_None);
|
|
|
|
} else {
|
|
|
|
PyList_SetItem(ret, 1, pygstminiobject_new(GST_MINI_OBJECT(buf)));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
2005-07-12 16:37:31 +00:00
|
|
|
override gst_pad_pull_range kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_pull_range (PyGObject *self, PyObject * args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = {"offset", "size", NULL};
|
2005-09-08 13:34:29 +00:00
|
|
|
guint64 offset;
|
|
|
|
gint size;
|
|
|
|
PyObject *ret;
|
|
|
|
GstBuffer *buf;
|
|
|
|
GstFlowReturn res;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
2005-09-08 13:34:29 +00:00
|
|
|
"Ki:GstPad.pull_range",
|
|
|
|
kwlist, &offset, &size))
|
|
|
|
return NULL;
|
2005-07-12 16:37:31 +00:00
|
|
|
res = gst_pad_pull_range (GST_PAD(pygobject_get(self)),
|
2005-09-08 13:34:29 +00:00
|
|
|
offset, size, &buf);
|
2005-10-13 10:58:16 +00:00
|
|
|
ret = PyList_New(2);
|
|
|
|
PyList_SetItem(ret, 0, pyg_enum_from_gtype(GST_TYPE_FLOW_RETURN, res));
|
2005-07-12 16:37:31 +00:00
|
|
|
if (res != GST_FLOW_OK) {
|
2005-11-01 18:19:08 +00:00
|
|
|
PyList_SetItem(ret, 1, Py_None);
|
2005-07-12 16:37:31 +00:00
|
|
|
} else {
|
2005-10-13 10:58:16 +00:00
|
|
|
PyList_SetItem(ret, 1, pygstminiobject_new(GST_MINI_OBJECT(buf)));
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_get_range kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_get_range (PyGObject *self, PyObject * args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = {"offset", "size", NULL};
|
2005-09-08 13:34:29 +00:00
|
|
|
guint64 offset;
|
|
|
|
gint size;
|
|
|
|
PyObject *ret;
|
|
|
|
GstBuffer *buf;
|
|
|
|
GstFlowReturn res;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
2005-09-08 13:34:29 +00:00
|
|
|
"Ki:GstPad.get_range",
|
|
|
|
kwlist, &offset, &size))
|
|
|
|
return NULL;
|
2005-07-12 16:37:31 +00:00
|
|
|
res = gst_pad_get_range (GST_PAD(pygobject_get(self)),
|
2005-09-08 13:34:29 +00:00
|
|
|
offset, size, &buf);
|
2005-10-13 10:58:16 +00:00
|
|
|
ret = PyList_New(2);
|
|
|
|
PyList_SetItem(ret, 0, pyg_enum_from_gtype(GST_TYPE_FLOW_RETURN, res));
|
2005-07-12 16:37:31 +00:00
|
|
|
if (res != GST_FLOW_OK) {
|
2005-11-01 18:19:08 +00:00
|
|
|
PyList_SetItem(ret, 1, Py_None);
|
2005-07-12 16:37:31 +00:00
|
|
|
} else {
|
2005-10-13 10:58:16 +00:00
|
|
|
PyList_SetItem(ret, 1, pygstminiobject_new(GST_MINI_OBJECT(buf)));
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_get_internal_links noargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_get_internal_links (PyGObject * self)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *ret;
|
|
|
|
GList *lst, *tmp;
|
2005-10-13 10:58:16 +00:00
|
|
|
gint i;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
lst = gst_pad_get_internal_links (GST_PAD (pygobject_get(self)));
|
|
|
|
|
2005-10-13 10:58:16 +00:00
|
|
|
ret = PyList_New(g_list_length(lst));
|
|
|
|
for (tmp = lst, i = 0 ; tmp; tmp = g_list_next(tmp), ++i) {
|
2006-07-02 15:25:04 +00:00
|
|
|
PyList_SetItem(ret, i, pygobject_new(G_OBJECT(tmp->data)));
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
g_list_free(lst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_get_internal_links_default noargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_get_internal_links_default (PyGObject * self)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *ret;
|
|
|
|
GList *lst, *tmp;
|
2005-10-13 10:58:16 +00:00
|
|
|
gint i;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
lst = gst_pad_get_internal_links_default (GST_PAD (pygobject_get(self)));
|
|
|
|
|
2005-10-13 10:58:16 +00:00
|
|
|
ret = PyList_New(g_list_length(lst));
|
|
|
|
for (tmp = lst, i = 0 ; tmp; tmp = g_list_next(tmp), ++i) {
|
2006-07-02 15:25:04 +00:00
|
|
|
PyList_SetItem(ret, i, pygobject_new(G_OBJECT(tmp->data)));
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
g_list_free(lst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_get_query_types noargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_get_query_types (PyGObject *self)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *ret;
|
|
|
|
PyObject *item;
|
|
|
|
int i;
|
|
|
|
GstQueryType *tab;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
tab = (GstQueryType*) gst_pad_get_query_types(GST_PAD(self->obj));
|
|
|
|
if (tab == NULL) {
|
2005-09-08 13:34:29 +00:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = PyList_New(0);
|
|
|
|
for (i = 0; tab[i] != 0; i++) {
|
2005-10-13 10:58:16 +00:00
|
|
|
item = pyg_enum_from_gtype (GST_TYPE_QUERY_TYPE, tab[i]);
|
|
|
|
PyList_Append(ret, item);
|
|
|
|
Py_XDECREF(item);
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_get_query_types_default noargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_get_query_types_default (PyGObject *self)
|
|
|
|
{
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *ret;
|
|
|
|
PyObject *item;
|
|
|
|
int i;
|
|
|
|
GstQueryType *tab;
|
2005-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
tab = (GstQueryType*) gst_pad_get_query_types_default(GST_PAD(self->obj));
|
|
|
|
if (tab == NULL) {
|
2005-09-08 13:34:29 +00:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = PyList_New(0);
|
|
|
|
for (i = 0; tab[i] != 0; i++) {
|
2005-10-13 10:58:16 +00:00
|
|
|
item = pyg_enum_from_gtype (GST_TYPE_QUERY_TYPE, tab[i]);
|
|
|
|
PyList_Append(ret, item);
|
|
|
|
Py_XDECREF(item);
|
2005-07-12 16:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2005-07-18 17:13:04 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_blocked_async args
|
|
|
|
|
|
|
|
static void
|
|
|
|
pad_block_callback_marshal(GstPad *pad, gboolean blocked, gpointer user_data)
|
|
|
|
{
|
|
|
|
PyGILState_STATE state;
|
|
|
|
PyObject *callback, *args;
|
|
|
|
PyObject *ret;
|
|
|
|
PyObject *py_user_data;
|
|
|
|
|
|
|
|
g_return_if_fail(user_data != NULL);
|
|
|
|
|
|
|
|
state = pyg_gil_state_ensure();
|
|
|
|
|
|
|
|
py_user_data = (PyObject *) user_data;
|
|
|
|
|
|
|
|
callback = PyTuple_GetItem(py_user_data, 0);
|
2006-04-28 14:55:15 +00:00
|
|
|
args = Py_BuildValue("(NO)",
|
2006-07-02 15:25:04 +00:00
|
|
|
pygobject_new(G_OBJECT(pad)),
|
2006-04-28 14:55:15 +00:00
|
|
|
blocked ? Py_True : Py_False);
|
|
|
|
|
|
|
|
{
|
|
|
|
PyObject *tmp = args;
|
|
|
|
args = PySequence_Concat(tmp, PyTuple_GetItem(py_user_data, 1));
|
|
|
|
Py_DECREF (tmp);
|
2005-07-18 17:13:04 +00:00
|
|
|
}
|
2006-04-28 14:55:15 +00:00
|
|
|
|
2005-07-18 17:13:04 +00:00
|
|
|
ret = PyObject_CallObject(callback, args);
|
2006-04-28 14:55:15 +00:00
|
|
|
Py_DECREF(args);
|
2005-07-18 17:13:04 +00:00
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
PyErr_Print();
|
2006-04-28 14:55:15 +00:00
|
|
|
else
|
|
|
|
Py_DECREF(ret);
|
2005-07-18 17:13:04 +00:00
|
|
|
|
|
|
|
pyg_gil_state_release(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_set_blocked_async (PyGObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *callback, *cbargs = NULL, *data;
|
2005-09-08 13:34:29 +00:00
|
|
|
PyObject *pblocked, *pret;
|
|
|
|
gboolean blocked;
|
|
|
|
gboolean ret;
|
|
|
|
gint len;
|
2005-07-18 17:13:04 +00:00
|
|
|
|
|
|
|
len = PyTuple_Size(args);
|
|
|
|
|
|
|
|
if (len < 2) {
|
2006-04-28 14:55:15 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError, "Requires at least 2 arg");
|
|
|
|
return NULL;
|
2005-07-18 17:13:04 +00:00
|
|
|
}
|
2006-04-28 14:55:15 +00:00
|
|
|
pblocked = PyTuple_GetItem(args, 0);
|
2006-04-05 08:37:32 +00:00
|
|
|
blocked = PyObject_IsTrue(pblocked);
|
2005-07-18 17:13:04 +00:00
|
|
|
|
2006-04-28 14:55:15 +00:00
|
|
|
callback = PyTuple_GetItem(args, 1);
|
2005-07-18 17:13:04 +00:00
|
|
|
if (!PyCallable_Check(callback)) {
|
2006-04-28 14:55:15 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError, "callback is not callable");
|
|
|
|
return NULL;
|
2005-07-18 17:13:04 +00:00
|
|
|
}
|
|
|
|
cbargs = PySequence_GetSlice(args, 2, len);
|
|
|
|
if (cbargs == NULL)
|
2006-04-28 14:55:15 +00:00
|
|
|
return NULL;
|
2005-07-18 17:13:04 +00:00
|
|
|
data = Py_BuildValue("(ON)", callback, cbargs);
|
|
|
|
if (data == NULL)
|
2006-04-28 14:55:15 +00:00
|
|
|
return NULL;
|
2007-06-11 22:00:20 +00:00
|
|
|
pyg_begin_allow_threads;
|
2005-07-18 17:13:04 +00:00
|
|
|
ret = gst_pad_set_blocked_async (GST_PAD (self->obj), blocked,
|
2006-04-28 14:55:15 +00:00
|
|
|
(GstPadBlockCallback) pad_block_callback_marshal, data);
|
2007-06-11 22:00:20 +00:00
|
|
|
pyg_end_allow_threads;
|
2005-07-18 17:13:04 +00:00
|
|
|
if (ret)
|
2006-04-28 14:55:15 +00:00
|
|
|
pret = Py_True;
|
2005-07-18 17:13:04 +00:00
|
|
|
else
|
2006-04-28 14:55:15 +00:00
|
|
|
pret = Py_False;
|
2005-07-18 17:13:04 +00:00
|
|
|
Py_INCREF(pret);
|
|
|
|
|
|
|
|
return pret;
|
|
|
|
}
|
2005-10-11 12:42:53 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_set_caps kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_set_caps(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "caps", NULL };
|
|
|
|
PyObject *py_caps;
|
|
|
|
int ret;
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:GstPad.set_caps", kwlist, &py_caps))
|
|
|
|
return NULL;
|
2007-02-04 10:54:48 +00:00
|
|
|
if (py_caps == Py_None) {
|
|
|
|
caps = NULL;
|
|
|
|
} else {
|
|
|
|
caps = pygst_caps_from_pyobject (py_caps, NULL);
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-10-11 12:42:53 +00:00
|
|
|
pyg_begin_allow_threads;
|
|
|
|
ret = gst_pad_set_caps(GST_PAD(self->obj), caps);
|
2007-02-04 10:54:48 +00:00
|
|
|
if (ret && caps)
|
2005-10-11 12:42:53 +00:00
|
|
|
gst_caps_unref (caps);
|
|
|
|
pyg_end_allow_threads;
|
|
|
|
return PyBool_FromLong(ret);
|
|
|
|
|
|
|
|
}
|
2006-03-24 11:07:22 +00:00
|
|
|
%%
|
|
|
|
override gst_pad_query_peer_position args
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_query_peer_position (PyGObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
gint64 cur;
|
|
|
|
gint format;
|
|
|
|
PyObject *pformat;
|
|
|
|
PyObject *ret;
|
|
|
|
|
|
|
|
pformat = (PyObject*)PyTuple_GetItem(args, 0);
|
|
|
|
if (pyg_enum_get_value (GST_TYPE_FORMAT, pformat, &format)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((gst_pad_query_peer_position(GST_PAD (self->obj), (GstFormat*) &format, &cur))) {
|
|
|
|
ret = PyList_New(2);
|
|
|
|
PyList_SetItem(ret, 0, PyLong_FromLongLong(cur));
|
|
|
|
PyList_SetItem(ret, 1, pyg_enum_from_gtype (GST_TYPE_FORMAT, format ));
|
|
|
|
} else {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
ret = Py_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_query_peer_duration args
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_query_peer_duration (PyGObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
gint64 cur;
|
|
|
|
gint format;
|
|
|
|
PyObject *pformat;
|
|
|
|
PyObject *ret;
|
|
|
|
|
|
|
|
pformat = (PyObject*)PyTuple_GetItem(args, 0);
|
|
|
|
if (pyg_enum_get_value (GST_TYPE_FORMAT, pformat, &format)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((gst_pad_query_peer_duration(GST_PAD (self->obj), (GstFormat*) &format, &cur))) {
|
|
|
|
ret = PyList_New(2);
|
|
|
|
PyList_SetItem(ret, 0, PyLong_FromLongLong(cur));
|
|
|
|
PyList_SetItem(ret, 1, pyg_enum_from_gtype (GST_TYPE_FORMAT, format ));
|
|
|
|
} else {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
ret = Py_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
%%
|
|
|
|
override gst_pad_query_peer_convert kwargs
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_pad_query_peer_convert (PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
|
|
{
|
|
|
|
static char *kwlist[] = { "fromformat", "fromvalue", "destformat", NULL };
|
|
|
|
PyObject *pfromformat, *pdestformat;
|
|
|
|
GstFormat srcformat, destformat;
|
|
|
|
gint64 fromval, dstval;
|
|
|
|
PyObject *ret;
|
|
|
|
|
|
|
|
/* Input : src_format, src_val, dst_format */
|
|
|
|
/* Returns : dst_format, dst_val OR None */
|
|
|
|
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
|
|
|
"0L0:GstPad.query_peer_convert",
|
|
|
|
kwlist, &pfromformat, &fromval, &pdestformat))
|
|
|
|
return NULL;
|
|
|
|
if (pyg_enum_get_value(GST_TYPE_FORMAT, pfromformat, (gint *) &srcformat)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (pyg_enum_get_value(GST_TYPE_FORMAT, pdestformat, (gint *) &destformat)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(gst_pad_query_peer_convert (GST_PAD(self->obj),
|
|
|
|
srcformat, fromval,
|
|
|
|
&destformat, &dstval))) {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = PyList_New(2);
|
|
|
|
PyList_SetItem(ret, 0, pyg_enum_from_gtype (GST_TYPE_FORMAT, destformat));
|
|
|
|
PyList_SetItem(ret, 1, PyLong_FromLongLong(dstval));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2006-06-14 10:00:32 +00:00
|
|
|
%%
|
|
|
|
override-attr GstStaticPadTemplate.static_caps
|
|
|
|
static PyObject *
|
|
|
|
_wrap_gst_static_pad_template__get_static_caps(PyObject *self, void *closure)
|
|
|
|
{
|
|
|
|
GstStaticPadTemplate *templ;
|
|
|
|
|
|
|
|
|
|
|
|
templ = pyg_pointer_get(self, GstStaticPadTemplate);
|
|
|
|
return pyg_pointer_new(GST_TYPE_STATIC_CAPS, &(templ->static_caps));
|
|
|
|
}
|
|
|
|
|