From b4ecac2c98c160e238c683e476aa1e1004095d08 Mon Sep 17 00:00:00 2001 From: Sreerenj Balachandran Date: Wed, 6 Jun 2012 11:06:32 +0300 Subject: [PATCH] gstadapter: Align the comment description with public api instead of internal one. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=677536 --- libs/gst/base/gstadapter.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/libs/gst/base/gstadapter.c b/libs/gst/base/gstadapter.c index b27edcfbf1..2e61430f63 100644 --- a/libs/gst/base/gstadapter.c +++ b/libs/gst/base/gstadapter.c @@ -550,16 +550,7 @@ gst_adapter_copy (GstAdapter * adapter, gpointer dest, gsize offset, gsize size) copy_into_unchecked (adapter, dest, offset + adapter->skip, size); } -/** - * gst_adapter_flush: - * @adapter: a #GstAdapter - * @flush: the number of bytes to flush - * - * Flushes the first @flush bytes in the @adapter. The caller must ensure that - * at least this many bytes are available. - * - * See also: gst_adapter_map(), gst_adapter_unmap() - */ +/*Flushes the first @flush bytes in the @adapter*/ static void gst_adapter_flush_unchecked (GstAdapter * adapter, gsize flush) { @@ -615,6 +606,16 @@ gst_adapter_flush_unchecked (GstAdapter * adapter, gsize flush) adapter->scan_entry = NULL; } +/** + * gst_adapter_flush: + * @adapter: a #GstAdapter + * @flush: the number of bytes to flush + * + * Flushes the first @flush bytes in the @adapter. The caller must ensure that + * at least this many bytes are available. + * + * See also: gst_adapter_map(), gst_adapter_unmap() + */ void gst_adapter_flush (GstAdapter * adapter, gsize flush) {