Home
last modified time | relevance | path

Searched refs:oldstr (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgststructure.c598 GstStructure *oldstr; in gst_structure_take() local
603 oldstr = g_atomic_pointer_get ((gpointer *) oldstr_ptr); in gst_structure_take()
604 if (G_UNLIKELY (oldstr == newstr)) { in gst_structure_take()
609 oldstr_ptr, (gpointer) oldstr, newstr))); in gst_structure_take()
611 if (oldstr) in gst_structure_take()
612 gst_structure_free (oldstr); in gst_structure_take()
/third_party/gstreamer/gstreamer/
DChangeLog5826 1. First "oldstr == newstr" check (before the loop) fails.
5829 3. Second "oldstr == newstr" check (in the loop) succeeds, loop breaks.
5830 4. "oldstr" check succeeds, old structure gets freed.