mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
gst/gstpad.override: Long != LongLong ....
Original commit message from CVS: * gst/gstpad.override: (_wrap_gst_pad_query_position): Long != LongLong ....
This commit is contained in:
parent
38acc2aff7
commit
8ad2d61eeb
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-08-09 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/gstpad.override: (_wrap_gst_pad_query_position):
|
||||
Long != LongLong ....
|
||||
|
||||
2005-08-08 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* codegen/codegen.py:
|
||||
|
|
|
@ -779,8 +779,8 @@ _wrap_gst_pad_query_position (PyGObject *self, PyObject *args)
|
|||
|
||||
ret = PyList_New(0);
|
||||
if ((gst_pad_query_position(GST_PAD (self->obj), (GstFormat*) &format, &cur, &end))) {
|
||||
PyList_Append(ret, PyLong_FromLong(cur));
|
||||
PyList_Append(ret, PyLong_FromLong(end));
|
||||
PyList_Append(ret, PyLong_FromLongLong(cur));
|
||||
PyList_Append(ret, PyLong_FromLongLong(end));
|
||||
PyList_Append(ret, pyg_enum_from_gtype (GST_TYPE_FORMAT, format ));
|
||||
} else {
|
||||
Py_INCREF(Py_None);
|
||||
|
|
Loading…
Reference in a new issue