Home
last modified time | relevance | path

Searched refs:component (Results 1 – 25 of 30) sorted by relevance

12

/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/core/
DExynos_OMX_Component_Register.c99 …Exynos_OSAL_Strcpy(componentList[totalCompNum].component.componentName, exynosComponentsTemp[i]->c… in Exynos_OMX_Component_Register()
101 …Exynos_OSAL_Strcpy(componentList[totalCompNum].component.roles[j], exynosComponentsTemp[i]->roles[… in Exynos_OMX_Component_Register()
102 … componentList[totalCompNum].component.totalRoleNum = exynosComponentsTemp[i]->totalRoleNum; in Exynos_OMX_Component_Register()
150 OMX_ERRORTYPE Exynos_OMX_ComponentAPICheck(OMX_COMPONENTTYPE *component) in Exynos_OMX_ComponentAPICheck() argument
154 if ((NULL == component->GetComponentVersion) || in Exynos_OMX_ComponentAPICheck()
155 (NULL == component->SendCommand) || in Exynos_OMX_ComponentAPICheck()
156 (NULL == component->GetParameter) || in Exynos_OMX_ComponentAPICheck()
157 (NULL == component->SetParameter) || in Exynos_OMX_ComponentAPICheck()
158 (NULL == component->GetConfig) || in Exynos_OMX_ComponentAPICheck()
159 (NULL == component->SetConfig) || in Exynos_OMX_ComponentAPICheck()
[all …]
DExynos_OMX_Core.c128 snprintf(cComponentName, nNameLength, "%s", gComponentList[nIndex].component.componentName); in Exynos_OMX_ComponentNameEnum()
162 if (Exynos_OSAL_Strcmp(cComponentName, gComponentList[i].component.componentName) == 0) { in Exynos_OMX_GetHandle()
167 … Exynos_OSAL_Strcpy(loadComponent->componentName, gComponentList[i].component.componentName); in Exynos_OMX_GetHandle()
299 max_role_num = gComponentList[i].component.totalRoleNum; in Exynos_OMX_GetComponentsOfRole()
302 if (Exynos_OSAL_Strcmp(gComponentList[i].component.roles[j], role) == 0) { in Exynos_OMX_GetComponentsOfRole()
304 … Exynos_OSAL_Strcpy((OMX_STRING)compNames[*pNumComps], gComponentList[i].component.componentName); in Exynos_OMX_GetComponentsOfRole()
336 if (Exynos_OSAL_Strcmp(gComponentList[i].component.componentName, compName) == 0) { in Exynos_OMX_GetRolesOfComponent()
337 *pNumRoles = totalRoleNum = gComponentList[i].component.totalRoleNum; in Exynos_OMX_GetRolesOfComponent()
356 Exynos_OSAL_Strcpy(roles[i], gComponentList[compNum].component.roles[i]); in Exynos_OMX_GetRolesOfComponent()
DAndroid.mk24 $(EXYNOS_OMX_TOP)/component/common
DExynos_OMX_Component_Register.h45 ExynosRegisterComponentType component; member
/hardware/qcom/media/mm-core/omxcore/src/common/
Domx_core_cmp.cpp49 OMX_COMPONENTTYPE* component = &(pThis->m_cmp); in qc_omx_create_component_wrapper() local
52 component->nSize = sizeof(OMX_COMPONENTTYPE); in qc_omx_create_component_wrapper()
53 component->nVersion.nVersion = OMX_SPEC_VERSION; in qc_omx_create_component_wrapper()
54 component->pApplicationPrivate = 0; in qc_omx_create_component_wrapper()
55 component->pComponentPrivate = obj_ptr; in qc_omx_create_component_wrapper()
57 component->AllocateBuffer = &qc_omx_component_allocate_buffer; in qc_omx_create_component_wrapper()
58 component->FreeBuffer = &qc_omx_component_free_buffer; in qc_omx_create_component_wrapper()
59 component->GetParameter = &qc_omx_component_get_parameter; in qc_omx_create_component_wrapper()
60 component->SetParameter = &qc_omx_component_set_parameter; in qc_omx_create_component_wrapper()
61 component->SendCommand = &qc_omx_component_send_command; in qc_omx_create_component_wrapper()
[all …]
/hardware/qcom/media/mm-core/src/common/
Domx_core_cmp.cpp49 OMX_COMPONENTTYPE* component = &(pThis->m_cmp); in qc_omx_create_component_wrapper() local
52 component->nSize = sizeof(OMX_COMPONENTTYPE); in qc_omx_create_component_wrapper()
53 component->nVersion.nVersion = OMX_SPEC_VERSION; in qc_omx_create_component_wrapper()
54 component->pApplicationPrivate = 0; in qc_omx_create_component_wrapper()
55 component->pComponentPrivate = obj_ptr; in qc_omx_create_component_wrapper()
57 component->AllocateBuffer = &qc_omx_component_allocate_buffer; in qc_omx_create_component_wrapper()
58 component->FreeBuffer = &qc_omx_component_free_buffer; in qc_omx_create_component_wrapper()
59 component->GetParameter = &qc_omx_component_get_parameter; in qc_omx_create_component_wrapper()
60 component->SetParameter = &qc_omx_component_set_parameter; in qc_omx_create_component_wrapper()
61 component->SendCommand = &qc_omx_component_send_command; in qc_omx_create_component_wrapper()
[all …]
/hardware/samsung_slsi/exynos5/libstagefrighthw/
DExynos_OMX_Plugin.cpp70 OMX_COMPONENTTYPE **component) { in makeComponentInstance() argument
76 reinterpret_cast<OMX_HANDLETYPE *>(component), in makeComponentInstance()
82 OMX_COMPONENTTYPE *component) { in destroyComponentInstance() argument
87 return (*mFreeHandle)(reinterpret_cast<OMX_HANDLETYPE *>(component)); in destroyComponentInstance()
DExynos_OMX_Plugin.h33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
/hardware/ti/omap4xxx/libstagefrighthw/
DTIOMXPlugin.cpp76 OMX_COMPONENTTYPE **component) { in makeComponentInstance() argument
82 reinterpret_cast<OMX_HANDLETYPE *>(component), in makeComponentInstance()
88 OMX_COMPONENTTYPE *component) { in destroyComponentInstance() argument
93 return (*mFreeHandle)(reinterpret_cast<OMX_HANDLETYPE *>(component)); in destroyComponentInstance()
DTIOMXPlugin.h33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
/hardware/qcom/media/libstagefrighthw/
DQComOMXPlugin.cpp68 OMX_COMPONENTTYPE **component) { in makeComponentInstance() argument
74 reinterpret_cast<OMX_HANDLETYPE *>(component), in makeComponentInstance()
80 OMX_COMPONENTTYPE *component) { in destroyComponentInstance() argument
85 return (*mFreeHandle)(reinterpret_cast<OMX_HANDLETYPE *>(component)); in destroyComponentInstance()
DQComOMXPlugin.h33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
/hardware/ti/omap3/libstagefrighthw/
DTIOMXPlugin.cpp68 OMX_COMPONENTTYPE **component) { in makeComponentInstance() argument
74 reinterpret_cast<OMX_HANDLETYPE *>(component), in makeComponentInstance()
80 OMX_COMPONENTTYPE *component) { in destroyComponentInstance() argument
85 return (*mFreeHandle)(reinterpret_cast<OMX_HANDLETYPE *>(component)); in destroyComponentInstance()
DTIOMXPlugin.h33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
/hardware/ti/omap4-aah/libstagefrighthw/
DTIOMXPlugin.cpp76 OMX_COMPONENTTYPE **component) { in makeComponentInstance() argument
82 reinterpret_cast<OMX_HANDLETYPE *>(component), in makeComponentInstance()
88 OMX_COMPONENTTYPE *component) { in destroyComponentInstance() argument
93 return (*mFreeHandle)(reinterpret_cast<OMX_HANDLETYPE *>(component)); in destroyComponentInstance()
DTIOMXPlugin.h33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
/hardware/intel/common/libstagefrighthw/
DWrsOMXPlugin.cpp122 OMX_COMPONENTTYPE **component) { in makeComponentInstance() argument
130 reinterpret_cast<OMX_HANDLETYPE *>(component), in makeComponentInstance()
137 comp.mComponent = *component; in makeComponentInstance()
149 OMX_COMPONENTTYPE *component) { in destroyComponentInstance() argument
152 if (mComponents[i].mComponent == component) { in destroyComponentInstance()
156 …PE omx_res = (*(mComponents[i].mCore->mFreeHandle))(reinterpret_cast<OMX_HANDLETYPE *>(component)); in destroyComponentInstance()
DWrsOMXPlugin.h81 OMX_COMPONENTTYPE **component);
84 OMX_COMPONENTTYPE *component);
/hardware/intel/common/libva/test/decode/
Dtinyjpeg-internal.h74 struct component struct
107 struct component component_infos[COMPONENTS];
Dtinyjpeg.c229 struct component *c; in parse_SOF()
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/
DAndroid.mk9 EXYNOS_OMX_COMPONENT := $(EXYNOS_OMX_TOP)/component
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
Didctllm_sse2.asm477 ; DC component
495 ; insert DC component
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
DOMXCameraAdapter.cpp4296 const OMX_HANDLETYPE & component() const in component() function in Ti::Camera::CapabilitiesHandler
4315 OMX_ERRORTYPE eError = OMX_SetParameter(component(), in fetchCapabiltiesForMode()
4325 OMXCameraAdapter::getCaps(sensorId, properties, component()); in fetchCapabiltiesForMode()
4339 const OMX_ERRORTYPE sensorSelectError = OMX_SetConfig(component(), in fetchCapabilitiesForSensor()
4483 if(handler.component()) { in OMXCameraAdapter_Capabilities()
4485 OMX_FreeHandle(handler.component()); in OMXCameraAdapter_Capabilities()
/hardware/samsung_slsi/exynos5/libswconverter/
Dcsc_ARGB8888_to_YUV420SP_NEON.s96 vst1.8 {q8}, [r1]! @write UV component to yuv420_buffer+linear_ylanesiez
/hardware/invensense/6515/libsensors_iio/
DLicense.txt109 Licensee must destroy all copies of the Software and all of its component

12