pbutils: Update for latest API change in gstdiscoverer

This commit is contained in:
Edward Hervey 2010-11-08 19:01:50 +01:00
parent d7a89ac66d
commit be08aac982
2 changed files with 3 additions and 3 deletions

View file

@ -348,8 +348,8 @@
(return-type "GType")
)
(define-method container_info_get_streams
(of-object "GstDiscovererStreamInfo")
(define-method get_streams
(of-object "GstDiscovererContainerInfo")
(c-name "gst_discoverer_container_info_get_streams")
(return-type "GList*")
)

View file

@ -376,7 +376,7 @@ _wrap_gst_discoverer_container_info_get_streams(PyGstMiniObject * self)
GList *res, *tmp;
PyObject *pyres;
res = gst_discoverer_container_info_get_streams(GST_DISCOVERER_STREAM_INFO (self->obj));
res = gst_discoverer_container_info_get_streams(GST_DISCOVERER_CONTAINER_INFO (self->obj));
pyres = PyList_New(0);
for (tmp = res; tmp; tmp = tmp->next) {