mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Remove (incorrect) cast on gst_buffer_is_writable()
Original commit message from CVS: Remove (incorrect) cast on gst_buffer_is_writable()
This commit is contained in:
parent
23823201b3
commit
484c536ba9
1 changed files with 1 additions and 1 deletions
|
@ -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_writable(buf) GST_BUFFER (gst_data_is_writable (GST_DATA (buf)))
|
||||
#define gst_buffer_is_writable(buf) 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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue