From: Benjamin Otte Date: Tue, 15 Apr 2003 21:35:08 +0000 (+0000) Subject: change *_is_readonly to *_is_writeable. Hope the name stays now... X-Git-Tag: 1.19.3~511^2~15460 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=333099fdeb964fa2a4f0600774285a8b79d2af0b;p=platform%2Fupstream%2Fgstreamer.git change *_is_readonly to *_is_writeable. Hope the name stays now... Original commit message from CVS: change *_is_readonly to *_is_writeable. Hope the name stays now... --- diff --git a/gst/audioconvert/gstaudioconvert.c b/gst/audioconvert/gstaudioconvert.c index fc664142f3..05fc70a360 100644 --- a/gst/audioconvert/gstaudioconvert.c +++ b/gst/audioconvert/gstaudioconvert.c @@ -505,7 +505,7 @@ static GstBuffer* gst_audio_convert_get_buffer (GstBuffer *buf, guint size) { GstBuffer *ret; - if (buf->maxsize >= size && !gst_buffer_is_readonly (buf)) { + if (buf->maxsize >= size && gst_buffer_is_writeable (buf)) { gst_buffer_ref (buf); buf->size = size; return buf;