From: Benjamin Otte Date: Wed, 16 Apr 2003 18:35:57 +0000 (+0000) Subject: *_is_writeable => *_is_writable (spelling) X-Git-Tag: BRANCH-ERROR-ROOT~300 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b36a2350ba828c7c1d56cdb9678eea5fb23782c0;p=platform%2Fupstream%2Fgstreamer.git *_is_writeable => *_is_writable (spelling) Original commit message from CVS: *_is_writeable => *_is_writable (spelling) --- diff --git a/gst/gstbuffer.h b/gst/gstbuffer.h index 3e448b1..3f53d28 100644 --- a/gst/gstbuffer.h +++ b/gst/gstbuffer.h @@ -141,7 +141,7 @@ G_STMT_START { \ #define gst_buffer_unref(buf) gst_data_unref (GST_DATA (buf)) /* copy buffer */ #define gst_buffer_copy(buf) GST_BUFFER (gst_data_copy (GST_DATA (buf))) -#define gst_buffer_is_writeable(buf) GST_BUFFER (gst_data_is_writeable (GST_DATA (buf))) +#define gst_buffer_is_writable(buf) GST_BUFFER (gst_data_is_writable (GST_DATA (buf))) #define gst_buffer_copy_on_write(buf) GST_BUFFER (gst_data_copy_on_write (GST_DATA (buf))) #define gst_buffer_free(buf) gst_data_free (GST_DATA (buf)) @@ -182,7 +182,7 @@ void gst_buffer_pool_set_active (GstBufferPool *pool, gboolean active); /* bufferpool operations */ #define gst_buffer_pool_copy(pool) GST_BUFFER_POOL (gst_data_copy (GST_DATA (pool))) -#define gst_buffer_pool_is_writeable(pool) GST_BUFFER_POOL (gst_data_is_writeable (GST_DATA (pool))) +#define gst_buffer_pool_is_writable(pool) GST_BUFFER_POOL (gst_data_is_writable (GST_DATA (pool))) #define gst_buffer_pool_copy_on_write(pool) GST_BUFFER_POOL (gst_data_copy_on_write (GST_DATA (pool))) #define gst_buffer_pool_free(pool) gst_data_free (GST_DATA (pool)) diff --git a/gst/gstdata.c b/gst/gstdata.c index 614950e..3f63ffa 100644 --- a/gst/gstdata.c +++ b/gst/gstdata.c @@ -102,7 +102,7 @@ gst_data_copy (const GstData *data) } /** - * gst_data_is_writeable: + * gst_data_is_writable: * @data: a #GstData to copy * * Query if the gstdata needs to be copied before it can safely be modified. @@ -111,7 +111,7 @@ gst_data_copy (const GstData *data) * be copied before it can be modified safely. */ gboolean -gst_data_is_writeable (GstData *data) +gst_data_is_writable (GstData *data) { gint refcount; diff --git a/gst/gstdata.h b/gst/gstdata.h index 0e47a67..a3d2495 100644 --- a/gst/gstdata.h +++ b/gst/gstdata.h @@ -84,7 +84,7 @@ void gst_data_copy_into (const GstData *data, GstData *target); /* basic operations on data */ GstData* gst_data_copy (const GstData *data); -gboolean gst_data_is_writeable (GstData *data); +gboolean gst_data_is_writable (GstData *data); GstData* gst_data_copy_on_write (GstData *data); void gst_data_free (GstData *data);