From 1d9fbd1a7cf73ac828df6368cb1287280da8aad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 16 Oct 2010 18:26:20 +0100 Subject: [PATCH] Revert "libs/gst/dataqueue: Document gst_data_queue_new_full" This reverts commit 80727c117703507f790a86b0962ab3d915e5a491. This doesn't make sense. gst_data_queue_new_full() is already documented above. And we need the doc blurb for _new() here. --- libs/gst/base/gstdataqueue.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/libs/gst/base/gstdataqueue.c b/libs/gst/base/gstdataqueue.c index fe8ba16c0c..a90ab73f31 100644 --- a/libs/gst/base/gstdataqueue.c +++ b/libs/gst/base/gstdataqueue.c @@ -219,17 +219,11 @@ gst_data_queue_new_full (GstDataQueueCheckFullFunction checkfull, } /** - * gst_data_queue_new_full: + * gst_data_queue_new: * @checkfull: the callback used to tell if the element considers the queue full * or not. - * @fullcallback: the callback which will be called when the queue is considered full. - * @emptycallback: the callback which will be called when the queue is considered empty. * @checkdata: a #gpointer that will be given in the @checkfull callback. * - * Creates a new #GstDataQueue. The difference with @gst_data_queue_new is that it will - * not emit the 'full' and 'empty' signals, but instead calling directly @fullcallback - * or @emptycallback. - * * Returns: a new #GstDataQueue. */