Fix some incorrect comments caused by recent checkins

Original commit message from CVS:
Fix some incorrect comments caused by recent checkins
This commit is contained in:
David Schleef 2004-01-11 22:46:22 +00:00
parent 61fbbfc278
commit c225160935
2 changed files with 1 additions and 4 deletions

View file

@ -104,9 +104,7 @@ struct _GstBuffer {
guint64 offset;
guint64 offset_end;
/* this is a pointer to the buffer pool (if any) */
GstBufferFreeDataFunc free_data;
/* pointer to pool private data of parent buffer in case of a subbuffer */
gpointer buffer_private;
gpointer _gst_reserved[GST_PADDING];
@ -145,7 +143,6 @@ GstBuffer* gst_buffer_span (GstBuffer *buf1, guint32 offset, GstBuffer *buf2,
/* --- private --- */
void _gst_buffer_initialize (void);
/* functions used by subclasses and bufferpools */
void gst_buffer_default_free (GstBuffer *buffer);
GstBuffer* gst_buffer_default_copy (GstBuffer *buffer);

View file

@ -849,7 +849,7 @@ gst_pad_set_getcaps_function (GstPad *pad,
/**
* gst_pad_set_bufferalloc_function:
* @pad: a #GstPad to set the bufferalloc function for.
* @bufalloc: the #GstPadBufferPoolFunction to set.
* @bufalloc: the #GstPadBufferAllocFunction to set.
*
* Sets the given bufferalloc function for the pad. Note that the
* bufferalloc function can only be set on sinkpads.