From e8d967a150a8a5433d462271ed0065850548ff69 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 16 Dec 2004 10:49:22 +0000 Subject: [PATCH] docs/gst/tmpl/gstprobe.sgml: Fix documentation of probe callback - it is supposed to return Original commit message from CVS: Reviewed by: Ronald S. Bultje * docs/gst/tmpl/gstprobe.sgml: Fix documentation of probe callback - it is supposed to return FALSE, not TRUE, to remove data from the stream (#159087). --- ChangeLog | 8 ++++++++ docs/gst/tmpl/gstprobe.sgml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a7c7d48610..66c5de5517 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-12-16 Edward Hervey + + Reviewed by: Ronald S. Bultje + + * docs/gst/tmpl/gstprobe.sgml: + Fix documentation of probe callback - it is supposed to return + FALSE, not TRUE, to remove data from the stream (#159087). + 2004-12-16 Daniel Gazard Reviewed by: Ronald S. Bultje diff --git a/docs/gst/tmpl/gstprobe.sgml b/docs/gst/tmpl/gstprobe.sgml index f7243ffba2..cd8411c538 100644 --- a/docs/gst/tmpl/gstprobe.sgml +++ b/docs/gst/tmpl/gstprobe.sgml @@ -36,7 +36,7 @@ The function that will be called when a probe is activated. @probe: The probe that signalled the callback @data: The GstData that triggered the probe @user_data: user data -@Returns: TRUE if the GstData should be removed from the stream. +@Returns: FALSE if the GstData should be removed from the stream.