GType gst_lookout_vision_meta_api_get_type()

in src/gst/lookoutvisionmeta/gstlookoutvisionmeta.cc [28:37]


GType gst_lookout_vision_meta_api_get_type(void) {
    static volatile GType type = 0;
    static const gchar *tags[] = { NULL };

    if (g_once_init_enter(&type)) {
        GType _type = gst_meta_api_type_register(GST_LOOKOUT_VISION_META_API_NAME, tags);
        g_once_init_leave(&type, _type);
    }
    return type;
}