mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
bufferlist: fix example
The _do function now takes user_data in all cases.
This commit is contained in:
parent
27fe127e76
commit
939f6045b1
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@
|
||||||
* buf = gst_buffer_list_iterator_next (it);
|
* buf = gst_buffer_list_iterator_next (it);
|
||||||
* if (buf != NULL) {
|
* if (buf != NULL) {
|
||||||
* buf = gst_buffer_list_iterator_do (it,
|
* buf = gst_buffer_list_iterator_do (it,
|
||||||
* (GstBufferListDoFunction) gst_mini_object_make_writable);
|
* (GstBufferListDoFunction) gst_mini_object_make_writable, NULL);
|
||||||
* modify_data (GST_BUFFER_DATA (buf));
|
* modify_data (GST_BUFFER_DATA (buf));
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
|
|
Loading…
Reference in a new issue