File: gst.c
Function: _wrap_gst_event_new_new_segment
Error: returning (PyObject*)NULL without setting an exception
24944 static PyObject *
24945 _wrap_gst_event_new_new_segment(PyObject *self, PyObject *args, PyObject *kwargs)
24946 {
24947     static char *kwlist[] = { "update", "rate", "format", "start_value", "stop_value", "stream_time", NULL };
24948     int update;
24949     double rate;
24950     GstEvent *ret;
24951     PyObject *py_format = NULL, *py_ret;
24952     GstFormat format;
24953     gint64 start_value, stop_value, stream_time;
24954 
24955     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"idOLLL:event_new_new_segment", kwlist, &update, &rate, &py_format, &start_value, &stop_value, &stream_time))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
24956         return NULL;
24957     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:24957
when considering range: -0x80000000 <= value <= -1
taking True path
24958         return NULL;
24959     pyg_begin_allow_threads;
24960     ret = gst_event_new_new_segment(update, rate, format, start_value, stop_value, stream_time);
24961     pyg_end_allow_threads;
24962     py_ret = pygstminiobject_new((GstMiniObject *)ret);
24963     if (ret != NULL)
24964        gst_mini_object_unref((GstMiniObject *)ret);
24965     return py_ret;
24966 }
returning (PyObject*)NULL without setting an exception