aboutsummaryrefslogtreecommitdiff
path: root/core/src/pv_omx_interface.cpp
diff options
context:
space:
mode:
authorHo-Eun Ryu <ho-eun.ryu@windriver.com>2010-02-26 16:39:48 +0900
committerPatrick Tjin <pattjin@google.com>2014-07-21 22:03:36 -0700
commit2f6e87e64736666857c1bbe2cb0692c1f4e56508 (patch)
tree2f8f39e5fd15afd84fe2fc7219d13ebc0da2c6c1 /core/src/pv_omx_interface.cpp
parentb814d1307374f9654abab7c7f8ada4271070bfe0 (diff)
downloadwrs_omxil_core-2f6e87e64736666857c1bbe2cb0692c1f4e56508.tar.gz
copyright: apply Apache License, Version 2.0
Diffstat (limited to 'core/src/pv_omx_interface.cpp')
-rw-r--r--core/src/pv_omx_interface.cpp20
1 files changed, 8 insertions, 12 deletions
diff --git a/core/src/pv_omx_interface.cpp b/core/src/pv_omx_interface.cpp
index 2d406ba..7de2d20 100644
--- a/core/src/pv_omx_interface.cpp
+++ b/core/src/pv_omx_interface.cpp
@@ -1,11 +1,3 @@
-/*
- * Copyright (c) 2009-2010 Wind River Systems, Inc.
- *
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
- */
-
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
@@ -23,11 +15,16 @@
* and limitations under the License.
* -------------------------------------------------------------------
*/
+
+/* Contains changes by Wind River Systems, 2009-2010 */
+
#include "pvlogger.h"
#include "pv_omxcore.h"
#include "omx_interface.h"
+
+
class PVOMXInterface : public OMXInterface
{
public:
@@ -69,7 +66,7 @@ class PVOMXInterface : public OMXInterface
pOMX_GetRolesOfComponent = OMX_GetRolesOfComponent;
pOMX_SetupTunnel = OMX_SetupTunnel;
pOMX_GetContentPipe = OMX_GetContentPipe;
- //pOMXConfigParser = OMXConfigParser;
+ /* pOMXConfigParser = OMXConfigParser; */
};
};
@@ -81,13 +78,12 @@ extern "C"
{
return PVOMXInterface::Instance();
}
- OSCL_EXPORT_REF void PVReleaseInterface(void* aInterface)
+ OSCL_EXPORT_REF void PVReleaseInterface(void* interface)
{
- PVOMXInterface* pInterface = (PVOMXInterface*)aInterface;
+ PVOMXInterface* pInterface = (PVOMXInterface*)interface;
if (pInterface)
{
OSCL_DELETE(pInterface);
}
}
-
}