Gst.Message.new_structure_change

function new_structure_change(src:Gst.Object, type:Gst.StructureChangeType, owner:Gst.Element, busy:Boolean):Gst.Message {
    // Gjs wrapper for gst_message_new_structure_change()
}

Create a new structure change message. This message is posted when the structure of a pipeline is in the process of being changed, for example when pads are linked or unlinked.

src should be the sinkpad that unlinked or linked.

src

The object originating the message.

type

The change type.

owner

The owner element of src.

busy

Whether the structure change is busy.

Returns

the new structure change message. MT safe.