gst/gstminiobject.c: Spelling fixes for the API docs.

Original commit message from CVS:
* gst/gstminiobject.c:
Spelling fixes for the API docs.
This commit is contained in:
Stefan Kost 2008-01-14 13:18:37 +00:00
parent aa7e0fa7fa
commit ed2d23a5c5
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2008-01-14 Stefan Kost <ensonic@users.sf.net>
* gst/gstminiobject.c:
Spelling fixes for the API docs.
2008-01-14 Stefan Kost <ensonic@users.sf.net> 2008-01-14 Stefan Kost <ensonic@users.sf.net>
* libs/gst/base/gstbasetransform.c: * libs/gst/base/gstbasetransform.c:

View file

@ -235,7 +235,7 @@ gst_mini_object_is_writable (const GstMiniObject * mini_object)
* gst_mini_object_make_writable: * gst_mini_object_make_writable:
* @mini_object: the mini-object to make writable * @mini_object: the mini-object to make writable
* *
* Checks if a mini-object is writable. If not, a writeable copy is made and * Checks if a mini-object is writable. If not, a writable copy is made and
* returned. This gives away the reference to the original mini object, * returned. This gives away the reference to the original mini object,
* and returns a reference to the new object. * and returns a reference to the new object.
* *
@ -270,7 +270,7 @@ gst_mini_object_make_writable (GstMiniObject * mini_object)
* of @mini-object, see gst_mini_object_is_writable(). It is * of @mini-object, see gst_mini_object_is_writable(). It is
* important to note that keeping additional references to * important to note that keeping additional references to
* GstMiniObject instances can potentially increase the number * GstMiniObject instances can potentially increase the number
* of memcpy operations in a pipeline, especially if the minibject * of memcpy operations in a pipeline, especially if the miniobject
* is a #GstBuffer. * is a #GstBuffer.
* *
* Returns: the mini-object. * Returns: the mini-object.
@ -280,7 +280,7 @@ gst_mini_object_ref (GstMiniObject * mini_object)
{ {
g_return_val_if_fail (mini_object != NULL, NULL); g_return_val_if_fail (mini_object != NULL, NULL);
/* we cannot assert that the refcount > 0 since a bufferalloc /* we cannot assert that the refcount > 0 since a bufferalloc
* function might resurect an object * function might resurrect an object
g_return_val_if_fail (mini_object->refcount > 0, NULL); g_return_val_if_fail (mini_object->refcount > 0, NULL);
*/ */
#ifdef DEBUG_REFCOUNT #ifdef DEBUG_REFCOUNT