summaryrefslogtreecommitdiffstats
path: root/sec_mm/sec_omx/sec_omx_core
diff options
context:
space:
mode:
Diffstat (limited to 'sec_mm/sec_omx/sec_omx_core')
-rw-r--r--sec_mm/sec_omx/sec_omx_core/Android.mk25
-rw-r--r--sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.c269
-rw-r--r--sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.h75
-rw-r--r--sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.c363
-rw-r--r--sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.h78
-rw-r--r--sec_mm/sec_omx/sec_omx_core/secomxregistry4
6 files changed, 0 insertions, 814 deletions
diff --git a/sec_mm/sec_omx/sec_omx_core/Android.mk b/sec_mm/sec_omx/sec_omx_core/Android.mk
deleted file mode 100644
index ddc3c4d..0000000
--- a/sec_mm/sec_omx/sec_omx_core/Android.mk
+++ /dev/null
@@ -1,25 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_SRC_FILES := SEC_OMX_Component_Register.c \
- SEC_OMX_Core.c
-
-
-LOCAL_MODULE := libSEC_OMX_Core.aries
-
-LOCAL_CFLAGS :=
-
-LOCAL_ARM_MODE := arm
-
-LOCAL_STATIC_LIBRARIES := libsecosal.aries libsecbasecomponent.aries
-LOCAL_SHARED_LIBRARIES := libc libdl libcutils libutils
-
-LOCAL_C_INCLUDES := $(SEC_OMX_INC)/khronos \
- $(SEC_OMX_INC)/sec \
- $(SEC_OMX_TOP)/sec_osal \
- $(SEC_OMX_TOP)/sec_omx_component/common
-
-include $(BUILD_SHARED_LIBRARY)
-
diff --git a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.c b/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.c
deleted file mode 100644
index 1464397..0000000
--- a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.c
+++ /dev/null
@@ -1,269 +0,0 @@
-/*
- *
- * Copyright 2010 Samsung Electronics S.LSI Co. LTD
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/*
- * @file SEC_OMX_Component_Register.c
- * @brief SEC OpenMAX IL Component Register
- * @author SeungBeom Kim (sbcrux.kim@samsung.com)
- * @version 1.0
- * @history
- * 2010.7.15 : Create
- */
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <dlfcn.h>
-#include <sys/types.h>
-#include <dirent.h>
-#include <errno.h>
-#include <assert.h>
-
-#include "OMX_Component.h"
-#include "SEC_OSAL_Memory.h"
-#include "SEC_OSAL_ETC.h"
-#include "SEC_OSAL_Library.h"
-#include "SEC_OMX_Component_Register.h"
-#include "SEC_OMX_Macros.h"
-
-#undef SEC_LOG_TAG
-#define SEC_LOG_TAG "SEC_COMP_REGS"
-#define SEC_LOG_OFF
-#include "SEC_OSAL_Log.h"
-
-
-#define REGISTRY_FILENAME "secomxregistry"
-
-
-OMX_ERRORTYPE SEC_OMX_Component_Register(SEC_OMX_COMPONENT_REGLIST **compList, OMX_U32 *compNum)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
- int componentNum = 0, roleNum = 0, totalCompNum = 0;
- int read;
- char *omxregistryfile = NULL;
- char *line = NULL;
- char *libName;
- FILE *omxregistryfp;
- size_t len;
- OMX_HANDLETYPE soHandle;
- const char *errorMsg;
- int (*SEC_OMX_COMPONENT_Library_Register)(SECRegisterComponentType **secComponents);
- SECRegisterComponentType **secComponentsTemp;
- SEC_OMX_COMPONENT_REGLIST *componentList;
-
- FunctionIn();
-
- omxregistryfile = SEC_OSAL_Malloc(strlen("/system/etc/") + strlen(REGISTRY_FILENAME) + 2);
- SEC_OSAL_Strcpy(omxregistryfile, "/system/etc/");
- SEC_OSAL_Strcat(omxregistryfile, REGISTRY_FILENAME);
-
- omxregistryfp = fopen(omxregistryfile, "r");
- if (omxregistryfp == NULL) {
- ret = OMX_ErrorUndefined;
- goto EXIT;
- }
- SEC_OSAL_Free(omxregistryfile);
-
- fseek(omxregistryfp, 0, 0);
- componentList = (SEC_OMX_COMPONENT_REGLIST *)SEC_OSAL_Malloc(sizeof(SEC_OMX_COMPONENT_REGLIST) * MAX_OMX_COMPONENT_NUM);
- SEC_OSAL_Memset(componentList, 0, sizeof(SEC_OMX_COMPONENT_REGLIST) * MAX_OMX_COMPONENT_NUM);
- libName = SEC_OSAL_Malloc(MAX_OMX_COMPONENT_LIBNAME_SIZE);
-
- while ((read = getline(&line, &len, omxregistryfp)) != -1) {
- if ((*line == 'l') && (*(line + 1) == 'i') && (*(line + 2) == 'b') &&
- (*(line + 3) == 'O') && (*(line + 4) == 'M') && (*(line + 5) == 'X')) {
- SEC_OSAL_Memset(libName, 0, MAX_OMX_COMPONENT_LIBNAME_SIZE);
- SEC_OSAL_Strncpy(libName, line, SEC_OSAL_Strlen(line)-1);
- SEC_OSAL_Log(SEC_LOG_TRACE, "libName : %s", libName);
-
- if ((soHandle = SEC_OSAL_dlopen(libName, RTLD_NOW)) != NULL) {
- SEC_OSAL_dlerror(); /* clear error*/
- if ((SEC_OMX_COMPONENT_Library_Register = SEC_OSAL_dlsym(soHandle, "SEC_OMX_COMPONENT_Library_Register")) != NULL) {
- int i = 0, j = 0;
-
- componentNum = (*SEC_OMX_COMPONENT_Library_Register)(NULL);
- secComponentsTemp = (SECRegisterComponentType **)SEC_OSAL_Malloc(sizeof(SECRegisterComponentType*) * componentNum);
- for (i = 0; i < componentNum; i++) {
- secComponentsTemp[i] = SEC_OSAL_Malloc(sizeof(SECRegisterComponentType));
- SEC_OSAL_Memset(secComponentsTemp[i], 0, sizeof(SECRegisterComponentType));
- }
- (*SEC_OMX_COMPONENT_Library_Register)(secComponentsTemp);
-
- for (i = 0; i < componentNum; i++) {
- SEC_OSAL_Strcpy(componentList[totalCompNum].component.componentName, secComponentsTemp[i]->componentName);
- for (j = 0; j < secComponentsTemp[i]->totalRoleNum; j++)
- SEC_OSAL_Strcpy(componentList[totalCompNum].component.roles[j], secComponentsTemp[i]->roles[j]);
- componentList[totalCompNum].component.totalRoleNum = secComponentsTemp[i]->totalRoleNum;
-
- SEC_OSAL_Strcpy(componentList[totalCompNum].libName, libName);
-
- totalCompNum++;
- }
- for (i = 0; i < componentNum; i++) {
- SEC_OSAL_Free(secComponentsTemp[i]);
- }
-
- SEC_OSAL_Free(secComponentsTemp);
- } else {
- if ((errorMsg = SEC_OSAL_dlerror()) != NULL)
- SEC_OSAL_Log(SEC_LOG_WARNING, "dlsym failed: %s", errorMsg);
- }
- SEC_OSAL_dlclose(soHandle);
- } else {
- SEC_OSAL_Log(SEC_LOG_WARNING, "dlopen failed: %s", SEC_OSAL_dlerror());
- }
- } else {
- /* not a component name line. skip */
- continue;
- }
- }
-
- SEC_OSAL_Free(libName);
- fclose(omxregistryfp);
-
- *compList = componentList;
- *compNum = totalCompNum;
-
-EXIT:
- FunctionOut();
-
- return ret;
-}
-
-OMX_ERRORTYPE SEC_OMX_Component_Unregister(SEC_OMX_COMPONENT_REGLIST *componentList)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
-
- SEC_OSAL_Memset(componentList, 0, sizeof(SEC_OMX_COMPONENT_REGLIST) * MAX_OMX_COMPONENT_NUM);
- SEC_OSAL_Free(componentList);
-
-EXIT:
- return ret;
-}
-
-OMX_ERRORTYPE SEC_OMX_ComponentAPICheck(OMX_COMPONENTTYPE component)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
-
- if ((NULL == component.GetComponentVersion) ||
- (NULL == component.SendCommand) ||
- (NULL == component.GetParameter) ||
- (NULL == component.SetParameter) ||
- (NULL == component.GetConfig) ||
- (NULL == component.SetConfig) ||
- (NULL == component.GetExtensionIndex) ||
- (NULL == component.GetState) ||
- (NULL == component.ComponentTunnelRequest) ||
- (NULL == component.UseBuffer) ||
- (NULL == component.AllocateBuffer) ||
- (NULL == component.FreeBuffer) ||
- (NULL == component.EmptyThisBuffer) ||
- (NULL == component.FillThisBuffer) ||
- (NULL == component.SetCallbacks) ||
- (NULL == component.ComponentDeInit) ||
- (NULL == component.UseEGLImage) ||
- (NULL == component.ComponentRoleEnum))
- ret = OMX_ErrorInvalidComponent;
- else
- ret = OMX_ErrorNone;
-
- return ret;
-}
-
-OMX_ERRORTYPE SEC_OMX_ComponentLoad(SEC_OMX_COMPONENT *sec_component)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
- OMX_HANDLETYPE libHandle;
- OMX_COMPONENTTYPE *pOMXComponent;
-
- FunctionIn();
-
- OMX_ERRORTYPE (*SEC_OMX_ComponentInit)(OMX_HANDLETYPE hComponent, OMX_STRING componentName);
-
- libHandle = SEC_OSAL_dlopen(sec_component->libName, RTLD_NOW);
- if (!libHandle) {
- ret = OMX_ErrorInvalidComponentName;
- SEC_OSAL_Log(SEC_LOG_ERROR, "OMX_ErrorInvalidComponentName, Line:%d", __LINE__);
- goto EXIT;
- }
-
- SEC_OMX_ComponentInit = SEC_OSAL_dlsym(libHandle, "SEC_OMX_ComponentInit");
- if (!SEC_OMX_ComponentInit) {
- SEC_OSAL_dlclose(libHandle);
- ret = OMX_ErrorInvalidComponent;
- SEC_OSAL_Log(SEC_LOG_ERROR, "OMX_ErrorInvalidComponent, Line:%d", __LINE__);
- goto EXIT;
- }
-
- pOMXComponent = (OMX_COMPONENTTYPE *)SEC_OSAL_Malloc(sizeof(OMX_COMPONENTTYPE));
- INIT_SET_SIZE_VERSION(pOMXComponent, OMX_COMPONENTTYPE);
- ret = (*SEC_OMX_ComponentInit)((OMX_HANDLETYPE)pOMXComponent, sec_component->componentName);
- if (ret != OMX_ErrorNone) {
- SEC_OSAL_Free(pOMXComponent);
- SEC_OSAL_dlclose(libHandle);
- ret = OMX_ErrorInvalidComponent;
- SEC_OSAL_Log(SEC_LOG_ERROR, "OMX_ErrorInvalidComponent, Line:%d", __LINE__);
- goto EXIT;
- } else {
- if (SEC_OMX_ComponentAPICheck(*pOMXComponent) != OMX_ErrorNone) {
- SEC_OSAL_Free(pOMXComponent);
- SEC_OSAL_dlclose(libHandle);
- if (NULL != pOMXComponent->ComponentDeInit)
- pOMXComponent->ComponentDeInit(pOMXComponent);
- ret = OMX_ErrorInvalidComponent;
- SEC_OSAL_Log(SEC_LOG_ERROR, "OMX_ErrorInvalidComponent, Line:%d", __LINE__);
- goto EXIT;
- }
- sec_component->libHandle = libHandle;
- sec_component->pOMXComponent = pOMXComponent;
- ret = OMX_ErrorNone;
- }
-
-EXIT:
- FunctionOut();
-
- return ret;
-}
-
-OMX_ERRORTYPE SEC_OMX_ComponentUnload(SEC_OMX_COMPONENT *sec_component)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
- OMX_COMPONENTTYPE *pOMXComponent = NULL;
-
- FunctionIn();
-
- if (!sec_component) {
- ret = OMX_ErrorBadParameter;
- goto EXIT;
- }
-
- pOMXComponent = sec_component->pOMXComponent;
- if (pOMXComponent != NULL) {
- pOMXComponent->ComponentDeInit(pOMXComponent);
- SEC_OSAL_Free(pOMXComponent);
- sec_component->pOMXComponent = NULL;
- }
-
- if (sec_component->libHandle != NULL) {
- SEC_OSAL_dlclose(sec_component->libHandle);
- sec_component->libHandle = NULL;
- }
-
-EXIT:
- FunctionOut();
-
- return ret;
-}
diff --git a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.h b/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.h
deleted file mode 100644
index 66580bd..0000000
--- a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Component_Register.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- *
- * Copyright 2010 Samsung Electronics S.LSI Co. LTD
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/*
- * @file SEC_OMX_Component_Register.h
- * @brief SEC OpenMAX IL Component Register
- * @author SeungBeom Kim (sbcrux.kim@samsung.com)
- * @version 1.0
- * @history
- * 2010.7.15 : Create
- */
-
-#ifndef SEC_OMX_COMPONENT_REG
-#define SEC_OMX_COMPONENT_REG
-
-#include "SEC_OMX_Def.h"
-#include "OMX_Types.h"
-#include "OMX_Core.h"
-#include "OMX_Component.h"
-
-
-typedef struct _SECRegisterComponentType
-{
- OMX_U8 componentName[MAX_OMX_COMPONENT_NAME_SIZE];
- OMX_U8 roles[MAX_OMX_COMPONENT_ROLE_NUM][MAX_OMX_COMPONENT_ROLE_SIZE];
- OMX_U32 totalRoleNum;
-} SECRegisterComponentType;
-
-typedef struct _SEC_OMX_COMPONENT_REGLIST
-{
- SECRegisterComponentType component;
- OMX_U8 libName[MAX_OMX_COMPONENT_LIBNAME_SIZE];
-} SEC_OMX_COMPONENT_REGLIST;
-
-struct SEC_OMX_COMPONENT;
-typedef struct _SEC_OMX_COMPONENT
-{
- OMX_U8 componentName[MAX_OMX_COMPONENT_NAME_SIZE];
- OMX_U8 libName[MAX_OMX_COMPONENT_LIBNAME_SIZE];
- OMX_HANDLETYPE libHandle;
- OMX_COMPONENTTYPE *pOMXComponent;
- struct SEC_OMX_COMPONENT *nextOMXComp;
-} SEC_OMX_COMPONENT;
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-OMX_ERRORTYPE SEC_OMX_Component_Register(SEC_OMX_COMPONENT_REGLIST **compList, OMX_U32 *compNum);
-OMX_ERRORTYPE SEC_OMX_Component_Unregister(SEC_OMX_COMPONENT_REGLIST *componentList);
-OMX_ERRORTYPE SEC_OMX_ComponentLoad(SEC_OMX_COMPONENT *sec_component);
-OMX_ERRORTYPE SEC_OMX_ComponentUnload(SEC_OMX_COMPONENT *sec_component);
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
diff --git a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.c b/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.c
deleted file mode 100644
index fb2875d..0000000
--- a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.c
+++ /dev/null
@@ -1,363 +0,0 @@
-/*
- *
- * Copyright 2010 Samsung Electronics S.LSI Co. LTD
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/*
- * @file SEC_OMX_Core.c
- * @brief SEC OpenMAX IL Core
- * @author SeungBeom Kim (sbcrux.kim@samsung.com)
- * HyeYeon Chung (hyeon.chung@samsung.com)
- * Yunji Kim (yunji.kim@samsung.com)
- * @version 1.0
- * @history
- * 2010.7.15 : Create
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <pthread.h> // for pthread related functions
-
-#include "SEC_OMX_Core.h"
-#include "SEC_OSAL_Mutex.h" // for mutext related functions
-#include "SEC_OSAL_ETC.h" // for SEC_OSAL_Strcmp, etc
-#include "SEC_OMX_Component_Register.h"
-#include "SEC_OSAL_Memory.h"
-#include "SEC_OMX_Resourcemanager.h"
-
-#undef SEC_LOG_TAG
-#define SEC_LOG_TAG "SEC_OMX_CORE"
-#define SEC_LOG_OFF
-#include "SEC_OSAL_Log.h"
-
-
-static int gInitialized = 0;
-static OMX_U32 gComponentNum = 0;
-
-static SEC_OMX_COMPONENT_REGLIST *gComponentList = NULL;
-static SEC_OMX_COMPONENT *gLoadComponentList = NULL;
-static pthread_mutex_t ghLoadComponentListMutex = PTHREAD_MUTEX_INITIALIZER;
-
-
-OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_Init(void)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
-
- FunctionIn();
-
- SEC_OSAL_MutexLock(&ghLoadComponentListMutex);
- if (gInitialized == 0) {
- if (SEC_OMX_Component_Register(&gComponentList, &gComponentNum)) {
- ret = OMX_ErrorInsufficientResources;
- SEC_OSAL_Log(SEC_LOG_ERROR, "SEC_OMX_Init : %s", "OMX_ErrorInsufficientResources");
- goto EXIT;
- }
-
- SEC_OMX_ResourceManager_Init();
- SEC_OSAL_Log(SEC_LOG_TRACE, "SEC_OMX_Init : %s", "OMX_ErrorNone");
- }
- ++gInitialized;
-
-EXIT:
- SEC_OSAL_MutexUnlock(&ghLoadComponentListMutex);
- FunctionOut();
-
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_Deinit(void)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
-
- FunctionIn();
-
- SEC_OSAL_MutexLock(&ghLoadComponentListMutex);
- if (gInitialized > 0) {
- --gInitialized;
- }
-
- if (gInitialized != 0) {
- // Some component still uses the core.
- // Nothing needs to be done
- goto EXIT;
- }
-
- SEC_OMX_ResourceManager_Deinit();
-
- if (OMX_ErrorNone != SEC_OMX_Component_Unregister(gComponentList)) {
- ret = OMX_ErrorUndefined;
- goto EXIT;
- }
- gComponentList = NULL;
- gComponentNum = 0;
-
-EXIT:
- SEC_OSAL_MutexUnlock(&ghLoadComponentListMutex);
- FunctionOut();
-
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_ComponentNameEnum(
- OMX_OUT OMX_STRING cComponentName,
- OMX_IN OMX_U32 nNameLength,
- OMX_IN OMX_U32 nIndex)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
-
- FunctionIn();
-
- if (nIndex >= gComponentNum) {
- ret = OMX_ErrorNoMore;
- goto EXIT;
- }
-
- sprintf(cComponentName, "%s", gComponentList[nIndex].component.componentName);
- ret = OMX_ErrorNone;
-
-EXIT:
- FunctionOut();
-
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_GetHandle(
- OMX_OUT OMX_HANDLETYPE *pHandle,
- OMX_IN OMX_STRING cComponentName,
- OMX_IN OMX_PTR pAppData,
- OMX_IN OMX_CALLBACKTYPE *pCallBacks)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
- SEC_OMX_COMPONENT *loadComponent;
- SEC_OMX_COMPONENT *currentComponent;
-
- FunctionIn();
-
- if (gInitialized != 1) {
- ret = OMX_ErrorNotReady;
- goto EXIT;
- }
-
- if ((pHandle == NULL) || (cComponentName == NULL) || (pCallBacks == NULL)) {
- ret = OMX_ErrorBadParameter;
- goto EXIT;
- }
- SEC_OSAL_Log(SEC_LOG_TRACE, "ComponentName : %s", cComponentName);
-
- OMX_U32 i = 0;
- for (i = 0; i < gComponentNum; i++) {
- if (SEC_OSAL_Strcmp(cComponentName, gComponentList[i].component.componentName) == 0) {
- loadComponent = SEC_OSAL_Malloc(sizeof(SEC_OMX_COMPONENT));
- SEC_OSAL_Memset(loadComponent, 0, sizeof(SEC_OMX_COMPONENT));
-
- SEC_OSAL_Strcpy(loadComponent->libName, gComponentList[i].libName);
- SEC_OSAL_Strcpy(loadComponent->componentName, gComponentList[i].component.componentName);
- ret = SEC_OMX_ComponentLoad(loadComponent);
- if (ret != OMX_ErrorNone) {
- SEC_OSAL_Free(loadComponent);
- SEC_OSAL_Log(SEC_LOG_ERROR, "OMX_Error, Line:%d", __LINE__);
- goto EXIT;
- }
-
- ret = loadComponent->pOMXComponent->SetCallbacks(loadComponent->pOMXComponent, pCallBacks, pAppData);
- if (ret != OMX_ErrorNone) {
- SEC_OMX_ComponentUnload(loadComponent);
- SEC_OSAL_Free(loadComponent);
- SEC_OSAL_Log(SEC_LOG_ERROR, "OMX_Error, Line:%d", __LINE__);
- goto EXIT;
- }
-
- SEC_OSAL_MutexLock(&ghLoadComponentListMutex);
- if (gLoadComponentList == NULL) {
- gLoadComponentList = loadComponent;
- } else {
- currentComponent = gLoadComponentList;
- while (currentComponent->nextOMXComp != NULL) {
- currentComponent = currentComponent->nextOMXComp;
- }
- currentComponent->nextOMXComp = loadComponent;
- }
- SEC_OSAL_MutexUnlock(&ghLoadComponentListMutex);
-
- *pHandle = loadComponent->pOMXComponent;
- ret = OMX_ErrorNone;
- SEC_OSAL_Log(SEC_LOG_TRACE, "SEC_OMX_GetHandle : %s", "OMX_ErrorNone");
- goto EXIT;
- }
- }
-
- ret = OMX_ErrorComponentNotFound;
-
-EXIT:
- FunctionOut();
-
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_FreeHandle(OMX_IN OMX_HANDLETYPE hComponent)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
- SEC_OMX_COMPONENT *currentComponent;
- SEC_OMX_COMPONENT *deleteComponent;
-
- FunctionIn();
-
- if (gInitialized != 1) {
- ret = OMX_ErrorNotReady;
- goto EXIT;
- }
-
- if (!hComponent) {
- ret = OMX_ErrorBadParameter;
- goto EXIT;
- }
-
- SEC_OSAL_MutexLock(&ghLoadComponentListMutex);
- currentComponent = gLoadComponentList;
- if (gLoadComponentList->pOMXComponent == hComponent) {
- deleteComponent = gLoadComponentList;
- gLoadComponentList = gLoadComponentList->nextOMXComp;
- } else {
- while ((currentComponent != NULL) && (((SEC_OMX_COMPONENT *)(currentComponent->nextOMXComp))->pOMXComponent != hComponent))
- currentComponent = currentComponent->nextOMXComp;
-
- if (((SEC_OMX_COMPONENT *)(currentComponent->nextOMXComp))->pOMXComponent == hComponent) {
- deleteComponent = currentComponent->nextOMXComp;
- currentComponent->nextOMXComp = deleteComponent->nextOMXComp;
- } else if (currentComponent == NULL) {
- ret = OMX_ErrorComponentNotFound;
- goto EXIT;
- }
- }
-
- SEC_OMX_ComponentUnload(deleteComponent);
- SEC_OSAL_Free(deleteComponent);
-
-EXIT:
- SEC_OSAL_MutexUnlock(&ghLoadComponentListMutex);
- FunctionOut();
-
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_SetupTunnel(
- OMX_IN OMX_HANDLETYPE hOutput,
- OMX_IN OMX_U32 nPortOutput,
- OMX_IN OMX_HANDLETYPE hInput,
- OMX_IN OMX_U32 nPortInput)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNotImplemented;
-
-EXIT:
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE SEC_OMX_GetContentPipe(
- OMX_OUT OMX_HANDLETYPE *hPipe,
- OMX_IN OMX_STRING szURI)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNotImplemented;
-
-EXIT:
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE SEC_OMX_GetComponentsOfRole (
- OMX_IN OMX_STRING role,
- OMX_INOUT OMX_U32 *pNumComps,
- OMX_INOUT OMX_U8 **compNames)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
- int max_role_num = 0;
- OMX_STRING RoleString[MAX_OMX_COMPONENT_ROLE_SIZE];
- int i = 0, j = 0;
-
- FunctionIn();
-
- if (gInitialized != 1) {
- ret = OMX_ErrorNotReady;
- goto EXIT;
- }
-
- *pNumComps = 0;
-
- for (i = 0; i < MAX_OMX_COMPONENT_NUM; i++) {
- max_role_num = gComponentList[i].component.totalRoleNum;
-
- for (j = 0; j < max_role_num; j++) {
- if (SEC_OSAL_Strcmp(gComponentList[i].component.roles[j], role) == 0) {
- if (compNames != NULL) {
- SEC_OSAL_Strcpy((OMX_STRING)compNames[*pNumComps], gComponentList[i].component.componentName);
- }
- *pNumComps = (*pNumComps + 1);
- }
- }
- }
-
-EXIT:
- FunctionOut();
-
- return ret;
-}
-
-OMX_API OMX_ERRORTYPE SEC_OMX_GetRolesOfComponent (
- OMX_IN OMX_STRING compName,
- OMX_INOUT OMX_U32 *pNumRoles,
- OMX_OUT OMX_U8 **roles)
-{
- OMX_ERRORTYPE ret = OMX_ErrorNone;
- OMX_BOOL detectComp = OMX_FALSE;
- int compNum = 0, totalRoleNum = 0;
- int i = 0;
-
- FunctionIn();
-
- if (gInitialized != 1) {
- ret = OMX_ErrorNotReady;
- goto EXIT;
- }
-
- for (i = 0; i < MAX_OMX_COMPONENT_NUM; i++) {
- if (gComponentList != NULL) {
- if (SEC_OSAL_Strcmp(gComponentList[i].component.componentName, compName) == 0) {
- *pNumRoles = totalRoleNum = gComponentList[i].component.totalRoleNum;
- compNum = i;
- detectComp = OMX_TRUE;
- break;
- }
- } else {
- ret = OMX_ErrorUndefined;
- goto EXIT;
- }
- }
-
- if (detectComp == OMX_FALSE) {
- *pNumRoles = 0;
- ret = OMX_ErrorComponentNotFound;
- goto EXIT;
- }
-
- if (roles != NULL) {
- for (i = 0; i < totalRoleNum; i++) {
- SEC_OSAL_Strcpy(roles[i], gComponentList[compNum].component.roles[i]);
- }
- }
-
-EXIT:
- FunctionOut();
-
- return ret;
-}
diff --git a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.h b/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.h
deleted file mode 100644
index 87f561c..0000000
--- a/sec_mm/sec_omx/sec_omx_core/SEC_OMX_Core.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- *
- * Copyright 2010 Samsung Electronics S.LSI Co. LTD
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/*
- * @file SEC_OMX_Core.h
- * @brief SEC OpenMAX IL Core
- * @author SeungBeom Kim (sbcrux.kim@samsung.com)
- * HyeYeon Chung (hyeon.chung@samsung.com)
- * Yunji Kim (yunji.kim@samsung.com)
- * @version 1.0
- * @history
- * 2010.7.15 : Create
- */
-
-#ifndef SEC_OMX_CORE
-#define SEC_OMX_CORE
-
-#include "SEC_OMX_Def.h"
-#include "OMX_Types.h"
-#include "OMX_Core.h"
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_Init(void);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_Deinit(void);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_ComponentNameEnum(
- OMX_OUT OMX_STRING cComponentName,
- OMX_IN OMX_U32 nNameLength,
- OMX_IN OMX_U32 nIndex);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_GetHandle(
- OMX_OUT OMX_HANDLETYPE *pHandle,
- OMX_IN OMX_STRING cComponentName,
- OMX_IN OMX_PTR pAppData,
- OMX_IN OMX_CALLBACKTYPE *pCallBacks);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_FreeHandle(
- OMX_IN OMX_HANDLETYPE hComponent);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE OMX_APIENTRY SEC_OMX_SetupTunnel(
- OMX_IN OMX_HANDLETYPE hOutput,
- OMX_IN OMX_U32 nPortOutput,
- OMX_IN OMX_HANDLETYPE hInput,
- OMX_IN OMX_U32 nPortInput);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE SEC_OMX_GetContentPipe(
- OMX_OUT OMX_HANDLETYPE *hPipe,
- OMX_IN OMX_STRING szURI);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE SEC_OMX_GetComponentsOfRole(
- OMX_IN OMX_STRING role,
- OMX_INOUT OMX_U32 *pNumComps,
- OMX_INOUT OMX_U8 **compNames);
-SEC_EXPORT_REF OMX_API OMX_ERRORTYPE SEC_OMX_GetRolesOfComponent(
- OMX_IN OMX_STRING compName,
- OMX_INOUT OMX_U32 *pNumRoles,
- OMX_OUT OMX_U8 **roles);
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-
diff --git a/sec_mm/sec_omx/sec_omx_core/secomxregistry b/sec_mm/sec_omx/sec_omx_core/secomxregistry
deleted file mode 100644
index cc762e6..0000000
--- a/sec_mm/sec_omx/sec_omx_core/secomxregistry
+++ /dev/null
@@ -1,4 +0,0 @@
-libOMX.SEC.AVC.Decoder.aries.so
-libOMX.SEC.M4V.Decoder.aries.so
-libOMX.SEC.AVC.Encoder.aries.so
-libOMX.SEC.M4V.Encoder.aries.so