mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-09 07:52:36 +00:00
gst/gst.override (_wrap_gst_tag_setter_get_list): Override, to avoid compiler warning.
Original commit message from CVS: * gst/gst.override (_wrap_gst_tag_setter_get_list): Override, to avoid compiler warning.
This commit is contained in:
parent
195af7df00
commit
857242d2f1
2 changed files with 14 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
2004-11-15 Johan Dahlin <johan@gnome.org>
|
2004-11-15 Johan Dahlin <johan@gnome.org>
|
||||||
|
|
||||||
|
* gst/gst.override (_wrap_gst_tag_setter_get_list): Override, to
|
||||||
|
avoid compiler warning.
|
||||||
|
|
||||||
* gst/gstmodule.c (init_gst): Reset LC_NUMERIC, since it might
|
* gst/gstmodule.c (init_gst): Reset LC_NUMERIC, since it might
|
||||||
change in gst_init_check. Fixes 100% CPU usage in flumotion
|
change in gst_init_check. Fixes 100% CPU usage in flumotion
|
||||||
when using a non C locale.
|
when using a non C locale.
|
||||||
|
|
|
@ -1248,3 +1248,14 @@ _wrap_gst_xml_parse_memory(PyGObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
|
||||||
return PyBool_FromLong(ret);
|
return PyBool_FromLong(ret);
|
||||||
}
|
}
|
||||||
|
%%
|
||||||
|
override gst_tag_setter_get_list noargs
|
||||||
|
static PyObject *
|
||||||
|
_wrap_gst_tag_setter_get_list(PyGObject *self)
|
||||||
|
{
|
||||||
|
GstTagList *ret;
|
||||||
|
|
||||||
|
ret = (GstTagList*)gst_tag_setter_get_list(GST_TAG_SETTER(self->obj));
|
||||||
|
/* pyg_boxed_new handles NULL checking */
|
||||||
|
return pyg_boxed_new(GST_TYPE_TAG_LIST, ret, TRUE, TRUE);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue