mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
Fix: use gst_buffer_copy_on_write() instead of incorrect copying if READONLY.
Original commit message from CVS: Fix: use gst_buffer_copy_on_write() instead of incorrect copying if READONLY.
This commit is contained in:
parent
4ff636bad3
commit
1bed6cbedd
1 changed files with 1 additions and 7 deletions
|
@ -275,13 +275,7 @@ volume_chain_float (GstPad *pad, GstBuffer *buf)
|
|||
filter = GST_VOLUME(GST_OBJECT_PARENT (pad));
|
||||
g_return_if_fail(GST_IS_VOLUME(filter));
|
||||
|
||||
if (GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_READONLY)){
|
||||
out_buf = gst_buffer_copy (buf);
|
||||
gst_buffer_unref(buf);
|
||||
}
|
||||
else {
|
||||
out_buf = buf;
|
||||
}
|
||||
out_buf = gst_buffer_copy_on_write (buf);
|
||||
|
||||
data = (gfloat *)GST_BUFFER_DATA(out_buf);
|
||||
num_samples = GST_BUFFER_SIZE(out_buf)/sizeof(gfloat);
|
||||
|
|
Loading…
Reference in a new issue