File: gst.c
Function: _wrap_gst_query_set_segment
Error: returning (PyObject*)NULL without setting an exception
22559 static PyObject *
22560 _wrap_gst_query_set_segment(PyGstMiniObject *self, PyObject *args, PyObject *kwargs)
22561 {
22562     static char *kwlist[] = { "rate", "format", "start_value", "stop_value", NULL };
22563     PyObject *py_format = NULL;
22564     double rate;
22565     GstFormat format;
22566     gint64 start_value, stop_value;
22567 
22568     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"dOLL:GstQuery.set_segment", kwlist, &rate, &py_format, &start_value, &stop_value))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
22569         return NULL;
22570     if (pyg_enum_get_value(GST_TYPE_FORMAT, py_format, (gint *)&format))
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
calling unknown gint (*) (GType, struct PyObject *, gint *) from gst.c:22570
when considering range: -0x80000000 <= value <= -1
taking True path
22571         return NULL;
22572     pyg_begin_allow_threads;
22573     gst_query_set_segment(GST_QUERY(self->obj), rate, format, start_value, stop_value);
22574     pyg_end_allow_threads;
22575     Py_INCREF(Py_None);
22576     return Py_None;
22577 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this