Gst.Pad.prototype.iterate_internal_links_default

function iterate_internal_links_default(parent:Gst.Object):Gst.Iterator {
    // Gjs wrapper for gst_pad_iterate_internal_links_default()
}

Iterate the list of pads to which the given pad is linked to inside of the parent element. This is the default handler, and thus returns an iterator of all of the pads inside the parent element with opposite direction.

The caller must free this iterator after use with Gst.Iterator.prototype.free.

parent

the parent of pad or NULL

Returns

a Gst.Iterator of Gst.Pad, or NULL if pad has no parent. Unref each returned pad with Gst.Object.prototype.unref.