mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/gstelement.override: So apparently 0 != O :)
Original commit message from CVS: * gst/gstelement.override: So apparently 0 != O :)
This commit is contained in:
parent
489d9c24a5
commit
b6650fb5db
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-11-04 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/gstelement.override:
|
||||
So apparently 0 != O :)
|
||||
|
||||
2005-11-04 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/gstpad.override:
|
||||
|
|
|
@ -428,9 +428,10 @@ _wrap_gst_element_query_convert (PyGObject *self, PyObject *args, PyObject *kwar
|
|||
/* Returns : dst_format, dst_val OR None */
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
|
||||
"0L0:GstElement.query_convert",
|
||||
"OLO:GstElement.query_convert",
|
||||
kwlist, &pfromformat, &fromval, &pdestformat))
|
||||
return NULL;
|
||||
|
||||
if (pyg_enum_get_value(GST_TYPE_FORMAT, pfromformat, (gint *) &srcformat)) {
|
||||
PyErr_SetString(PyExc_TypeError, "argument should be a GstFormat");
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in a new issue