MxGstBaseClass

Function

It is the structure declaration of the GStreamer plugin class, which is used to store the inheritance relationship and methods of the class.

Structure Definition

struct GstMxBaseClass {
    GstElementClass parentClass;    
    MxPluginBase* (* CreatePluginInstance)();
};

Parameter Description

Parameter

Description

parentClass

Stores the GstElementClass parentClass parent-class variable.

CreatePluginInstance

Function pointer, which is used to obtain the plugin instance.