File: gst.c
Function: _wrap_gst_query_set_buffering_range
Error: returning (PyObject*)NULL without setting an exception
22828 static PyObject *
22829 _wrap_gst_query_set_buffering_range(PyGstMiniObject *self, PyObject *args, PyObject *kwargs)
22830 {
22831     static char *kwlist[] = { "format", "start", "stop", "estimated_total", NULL };
22832     PyObject *py_format = NULL;
22833     GstFormat format;
22834     gint64 start, stop, estimated_total;
22835 
22836     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"OLLL:GstQuery.set_buffering_range", kwlist, &py_format, &start, &stop, &estimated_total))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
22837         return NULL;
22838     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:22838
when considering range: -0x80000000 <= value <= -1
taking True path
22839         return NULL;
22840     pyg_begin_allow_threads;
22841     gst_query_set_buffering_range(GST_QUERY(self->obj), format, start, stop, estimated_total);
22842     pyg_end_allow_threads;
22843     Py_INCREF(Py_None);
22844     return Py_None;
22845 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this