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:
Tim-Philipp Müller 2013-03-22 20:02:57 +00:00
parent afbba8974a
commit 1e6e797d65

View file

@ -28,8 +28,8 @@ gst_my_filter_init (GstMyFilter * filter)
[..]
/* configure event function on the pad before adding
* the pad to the element */
gst_pad_set_event_function (filter->srcpad,
gst_my_filter_src_event);
gst_pad_set_query_function (filter->srcpad,
gst_my_filter_src_query);
[..]
}