mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
docs: fix typo in query function example in Plugin Writer's Guide
https://bugzilla.gnome.org/show_bug.cgi?id=696142
This commit is contained in:
parent
afbba8974a
commit
1e6e797d65
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ gst_my_filter_init (GstMyFilter * filter)
|
||||||
[..]
|
[..]
|
||||||
/* configure event function on the pad before adding
|
/* configure event function on the pad before adding
|
||||||
* the pad to the element */
|
* the pad to the element */
|
||||||
gst_pad_set_event_function (filter->srcpad,
|
gst_pad_set_query_function (filter->srcpad,
|
||||||
gst_my_filter_src_event);
|
gst_my_filter_src_query);
|
||||||
[..]
|
[..]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue