File: gst.c
Function: _wrap_gst_message_set_qos_stats
Error: returning (PyObject*)NULL without setting an exception
21832 static PyObject *
21833 _wrap_gst_message_set_qos_stats(PyGstMiniObject *self, PyObject *args, PyObject *kwargs)
21834 {
21835     static char *kwlist[] = { "format", "processed", "dropped", NULL };
21836     PyObject *py_format = NULL;
21837     GstFormat format;
21838     guint64 processed, dropped;
21839 
21840     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"OKK:GstMessage.set_qos_stats", kwlist, &py_format, &processed, &dropped))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
21841         return NULL;
21842     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:21842
when considering range: -0x80000000 <= value <= -1
taking True path
21843         return NULL;
21844     pyg_begin_allow_threads;
21845     gst_message_set_qos_stats(GST_MESSAGE(self->obj), format, processed, dropped);
21846     pyg_end_allow_threads;
21847     Py_INCREF(Py_None);
21848     return Py_None;
21849 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this