History log of /hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
32e9830130645f88e7a2ad43556ad4adb3db31d4 09-Dec-2014 Andreas Gampe <agampe@google.com> Wrs Omxil: Remove unused variables

For build-system CFLAGS clean-up, remove unused variables.

Bug: 18632512
Change-Id: I4da2cb255b4bc08c5dfc04d7d31c58e63d90948e
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
3f7ceee13aa17ae32d4263aed2ce67eb9a37c58b 24-Jul-2014 ywan171 <yi.a.wang@intel.com> remove the warning in wrs_core

BZ: 209178

remove the warning in wrs_core
Signed-off-by: ywan171 <yi.a.wang@intel.com>

Change-Id: I5655dcc283325cf7da5e0b088887e63cd24fb056
Signed-off-by: ywan171 <yi.a.wang@intel.com>
Reviewed-on: https://android.intel.com/220500
Reviewed-by: Fourdan, Olivier <olivier.fourdan@intel.com>
Tested-by: Fourdan, Olivier <olivier.fourdan@intel.com>
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
855c54271cbfd2ad54a13ba36c457d2fdcd1efcf 13-Sep-2011 Shuduo Sang <shuduo.sang@intel.com> [PORT FROM R1] [omx-component] clean up the initialize flag after DeInit for wrs core.

BZ: 8568

wrs core can not be loaded again because the g_initialize flag is not clean up
after deinit the wrs core.

Change-Id: Id9bbe20e439303c28075c0edb05aa58f3e433a0a
Orig-Change-Id: Icfe5cf3074792b1eacbbe17d5a79ef2bcb40046f
Signed-off-by: xli111 <xiaowei.a.li@intel.com>
Reviewed-on: http://android.intel.com:8080/18307
Tested-by: Sang, Shuduo <shuduo.sang@intel.com>
Reviewed-by: Monnier, OlivierX <olivierx.monnier@intel.com>
Reviewed-by: buildbot <buildbot@intel.com>
Tested-by: buildbot <buildbot@intel.com>
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
2f6e87e64736666857c1bbe2cb0692c1f4e56508 26-Feb-2010 Ho-Eun Ryu <ho-eun.ryu@windriver.com> copyright: apply Apache License, Version 2.0
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
2793d8451908b3e613725f1d3dfd561d402cba95 09-Feb-2010 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: skip loading modules starting with sharp

if you want not to load a specific module listed in
wrs_omxil_components.list. you can comment out the libraries like this.

----- wrs_omxil_components.list -----

libwrs_omxil_wrs_a.so
#libwrs_omxil_wrs_b.so

-------------------------------------
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
bda0aed55a4fa0b0a610ee40f378ce800fa3e067 30-Dec-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: fix debug messages
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
aa8a53ba28b4e12dcdc08683e770d7b3fd68ff8d 28-Oct-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> base,core: introduce new module interface, use WRS_OMXIL_CMODULE_SYMBOL

typedef OMX_ERRORTYPE (*cmodule_instantiate_t)(OMX_PTR *);
typedef OMX_ERRORTYPE (*cmodule_query_name_t)(OMX_STRING, OMX_U32);
typedef OMX_ERRORTYPE (*cmodule_query_roles_t)(OMX_U32 *, OMX_U8 **);

WRS_OMXIL_CMODULE_SYMBOL

struct wrs_omxil_cmodule_ops_s {
OMX_ERRORTYPE (*instantiate)(OMX_PTR *);
};

struct wrs_omxil_cmodule_s {
const char *name;

const char **roles;
const int nr_roles;

struct wrs_omxil_cmodule_ops_s *ops;
};

modified: base/inc/cmodule.h
modified: base/src/cmodule.cpp
modified: base/src/componentbase.cpp
modified: core/src/wrs_omxcore.cpp
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
3739d03aa380db0d809c6acf7968c629e769b0c2 28-Oct-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> misc: remove trailing whitespace
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
30bd6062e4b295f5f7bcaeb98165065310d29269 28-Oct-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> misc: add windriver standard copyright
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
e4197969e018f1f455d8a99ebabd51994b150506 16-Oct-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> misc: add copyright and author
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
0649b314d453ee61c2a045787524566fc9b76b4d 16-Oct-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: fix minor, changed file extension from .cfg to .list for library list
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
f5d697d33a0ea9889e63672fbbd062fd5ca3789c 01-Oct-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> base:component: fix unknown bug, delete cbase at FreeHandle()

unloading cmodule before deletion of componentbase instance causes segfault
at delete [instance]. FOUND OUT WHAT HAPPENS.
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
9a02e273568833f7f87151227c44dbaf77c3de87 30-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: fix minor, prevent Deinit() if having component instances
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
270c00d100c3fd6f1313e478f2d568c378399e22 30-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: fix Get/FreeHandle, use new cmodule api
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
103aec6ed1456b43659800de1854c3d9f384dece 30-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: fix funcs relative to Role with new cmodule api
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
15f26c4a309c9a2ad12dec562a67116c0a240936 30-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: fix OMX_GetComponentNameEnum with new cmodule api
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
a0953d19a863c0125b304774f9dcd7897c289e5f 30-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: fix OMX_Init/Deinit with new cmodule api
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
92ca60ee46ce50a49b39c314ed25b9ad276d4569 30-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: remove unneeded construct_components()
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
171059ac68f28f5292c0dbb847ae549353615177 29-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: use cmodule->GetLibraryName()
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
6f72f05f17977a2fe36c78e96e720ef4d48a574f 25-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: impement Get/FreeHandle()
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
9b88640fe94198cf3f03151136840b04014a0a7d 25-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core,base:component: handling roles and names of component
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp
5f9ba478fd89d66705e5ca7d2d66aa174c6bcd32 25-Sep-2009 Ho-Eun Ryu <ho-eun.ryu@windriver.com> core: add omxil-core modules
/hardware/intel/common/wrs_omxil_core/core/src/wrs_omxcore.cpp