Searched refs:p_core_comp (Results 1 – 1 of 1) sorted by relevance
190 omx_core_component_t *p_core_comp = NULL; in OMX_GetHandle() local206 p_core_comp = &g_omxcore->component[comp_idx]; in OMX_GetHandle()211 inst_idx = get_free_inst_idx(p_core_comp); in OMX_GetHandle()218 if (FALSE == p_core_comp->open) { in OMX_GetHandle()220 p_core_comp->lib_handle = dlopen(p_core_comp->lib_name, RTLD_NOW); in OMX_GetHandle()221 if (NULL == p_core_comp->lib_handle) { in OMX_GetHandle()227 p_core_comp->open = TRUE; in OMX_GetHandle()229 p_core_comp->create_comp_func = dlsym(p_core_comp->lib_handle, in OMX_GetHandle()231 p_core_comp->get_instance = dlsym(p_core_comp->lib_handle, "getInstance"); in OMX_GetHandle()234 if (!p_core_comp->create_comp_func || !p_core_comp->get_instance) { in OMX_GetHandle()[all …]