mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
gst/gstcaps.*: Change from copy_on_write.
Original commit message from CVS: 2005-02-10 Andy Wingo <wingo@pobox.com> * gst/gstcaps.h: * gst/gstcaps.c (gst_caps_get_writable): Change from copy_on_write.
This commit is contained in:
parent
e0b0e3dab2
commit
6e0dfb6f50
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
2005-02-10 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/gstcaps.h:
|
||||
* gst/gstcaps.c (gst_caps_get_writable): Change from
|
||||
copy_on_write.
|
||||
|
||||
* docs/gst/tmpl: Commit whatever automagic updates gtkdoc is
|
||||
doing.
|
||||
|
||||
|
|
|
@ -242,7 +242,7 @@ _gst_caps_free (GstCaps * caps)
|
|||
}
|
||||
|
||||
GstCaps *
|
||||
gst_caps_copy_on_write (GstCaps * caps)
|
||||
gst_caps_get_writable (GstCaps * caps)
|
||||
{
|
||||
GstCaps *copy;
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ GstCaps * gst_caps_copy (const G
|
|||
GstCaps * gst_caps_copy_1 (const GstCaps *caps);
|
||||
|
||||
/* reference counting */
|
||||
GstCaps * gst_caps_copy_on_write (GstCaps *caps);
|
||||
GstCaps * gst_caps_get_writable (GstCaps *caps);
|
||||
GstCaps * gst_caps_ref (GstCaps* caps);
|
||||
GstCaps * gst_caps_ref_by_count (GstCaps* caps, gint count);
|
||||
void gst_caps_unref (GstCaps* caps);
|
||||
|
|
Loading…
Reference in a new issue