gstadapter: Align the comment description with public api instead of internal one.

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=677536
This commit is contained in:
Sreerenj Balachandran 2012-06-06 11:06:32 +03:00 committed by Wim Taymans
parent 6758e5f00d
commit b4ecac2c98

View file

@ -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)
{