diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2006-01-16 15:42:08 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2006-01-16 15:42:08 +0000 |
commit | 6876d64a29c5c42266e38919416816009e292ff5 (patch) | |
tree | 193141d078085abe33701529f683a77939fba412 /gst/gstbuffer.h | |
parent | 06b99ec3aefd296b7014c74b5d80a38d3959221c (diff) |
Back out patch until after the release.
Original commit message from CVS:
* gst/gstbuffer.c:
* gst/gstbuffer.h:
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_prepare_output_buf):
* plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
* tests/check/gst/gstbuffer.c: (gst_test_suite):
Back out patch until after the release.
Diffstat (limited to 'gst/gstbuffer.h')
-rw-r--r-- | gst/gstbuffer.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gst/gstbuffer.h b/gst/gstbuffer.h index 90ccb112f..23fa6a8c4 100644 --- a/gst/gstbuffer.h +++ b/gst/gstbuffer.h @@ -310,10 +310,7 @@ G_STMT_START { \ * gst_buffer_is_writable: * @buf: a #GstBuffer * - * Tests if you can safely write data into a buffer's data array or validly - * modify the caps and timestamp metadata. Metadata in a GstBuffer is always - * writable, but it is only safe to change it when there is only one owner - * of the buffer - ie, the buffer is 1. + * Tests if you can safely write data into a buffer's data array. */ #define gst_buffer_is_writable(buf) gst_mini_object_is_writable (GST_MINI_OBJECT (buf)) /** @@ -326,11 +323,6 @@ G_STMT_START { \ */ #define gst_buffer_make_writable(buf) GST_BUFFER_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT (buf))) -/* Ensure that the metadata of the buffer is writable, even if the buffer data - * isn't */ -gboolean gst_buffer_is_metadata_writable (GstBuffer *buf); -GstBuffer* gst_buffer_make_metadata_writable (GstBuffer *buf); - /** * gst_buffer_replace: * @obuf: pointer to a pointer to a #GstBuffer to be replaced. |