mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-16 06:21:36 +00:00
pbutils: Update for latest API change in gstdiscoverer
This commit is contained in:
parent
d7a89ac66d
commit
be08aac982
2 changed files with 3 additions and 3 deletions
|
@ -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*")
|
||||
)
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue