summaryrefslogtreecommitdiffstats
path: root/domx/domx/omx_rpc/inc/omx_rpc_stub.h
diff options
context:
space:
mode:
Diffstat (limited to 'domx/domx/omx_rpc/inc/omx_rpc_stub.h')
-rwxr-xr-xdomx/domx/omx_rpc/inc/omx_rpc_stub.h145
1 files changed, 145 insertions, 0 deletions
diff --git a/domx/domx/omx_rpc/inc/omx_rpc_stub.h b/domx/domx/omx_rpc/inc/omx_rpc_stub.h
new file mode 100755
index 0000000..5e3837f
--- /dev/null
+++ b/domx/domx/omx_rpc/inc/omx_rpc_stub.h
@@ -0,0 +1,145 @@
+/*
+ * Copyright (c) 2010, Texas Instruments Incorporated
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * * Neither the name of Texas Instruments Incorporated nor the names of
+ * its contributors may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+ * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/**
+ * @file omx_rpc_stub.h
+ * This file contains methods that provides the functionality for
+ * the OpenMAX1.1 DOMX Framework RPC.
+ *
+ * @path \WTSD_DucatiMMSW\framework\domx\omx_rpc\inc
+ *
+ * @rev 1.0
+ */
+
+/*==============================================================
+ *! Revision History
+ *! ============================
+ *! 29-Mar-2010 Abhishek Ranka : Revamped DOMX implementation
+ *!
+ *! 19-August-2009 B Ravi Kiran ravi.kiran@ti.com: Initial Version
+ *================================================================*/
+
+#ifndef OMX_RPC_STUBH
+#define OMX_RPC_STUBH
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+/******************************************************************
+ * INCLUDE FILES
+ ******************************************************************/
+#include "omx_rpc.h"
+#include "omx_rpc_internal.h"
+
+ RPC_OMX_ERRORTYPE RPC_GetHandle(OMX_HANDLETYPE hRPCCtx,
+ OMX_STRING cComponentName, OMX_PTR pAppData,
+ OMX_CALLBACKTYPE * pCallBacks, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_FreeHandle(OMX_HANDLETYPE hRPCCtx,
+ OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_UseBuffer(OMX_HANDLETYPE hRPCCtx,
+ OMX_INOUT OMX_BUFFERHEADERTYPE ** ppBufferHdr, OMX_U32 nPortIndex,
+ OMX_PTR pAppPrivate, OMX_U32 nSizeBytes, OMX_U8 * pBuffer,
+ OMX_U32 * pBufHeaderRemote, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_SetParameter(OMX_HANDLETYPE hRPCCtx,
+ OMX_INDEXTYPE nParamIndex, OMX_PTR pCompParam,
+ OMX_PTR pLocBufNeedMap, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_GetParameter(OMX_HANDLETYPE hRPCCtx,
+ OMX_INDEXTYPE nParamIndex, OMX_PTR pCompParam,
+ OMX_PTR pLocBufNeedMap, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_FillThisBuffer(OMX_HANDLETYPE hRPCCtx,
+ OMX_BUFFERHEADERTYPE * pBufferHdr, OMX_U32 BufHdrRemote,
+ OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_EmptyThisBuffer(OMX_HANDLETYPE hRPCCtx,
+ OMX_BUFFERHEADERTYPE * pBufferHdr, OMX_U32 BufHdrRemote,
+ OMX_ERRORTYPE * nCmdStatus,OMX_BOOL bMapBuffer);
+
+ RPC_OMX_ERRORTYPE RPC_FreeBuffer(OMX_HANDLETYPE hRPCCtx,
+ OMX_IN OMX_U32 nPortIndex, OMX_IN OMX_U32 BufHdrRemote,
+ OMX_U32 pBuffer, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_SetConfig(OMX_HANDLETYPE hRPCCtx,
+ OMX_INDEXTYPE nConfigIndex, OMX_PTR pCompConfig,
+ OMX_PTR pLocBufNeedMap, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_GetConfig(OMX_HANDLETYPE hRPCCtx,
+ OMX_INDEXTYPE nConfigIndex, OMX_PTR pCompConfig,
+ OMX_PTR pLocBufNeedMap, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_GetComponentVersion(OMX_HANDLETYPE hRPCCtx,
+ OMX_STRING pComponentName, OMX_VERSIONTYPE * pComponentVersion,
+ OMX_VERSIONTYPE * pSpecVersion, OMX_UUIDTYPE * pComponentUUID,
+ OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_SendCommand(OMX_HANDLETYPE hRPCCtx,
+ OMX_COMMANDTYPE eCmd, OMX_U32 nParam, OMX_PTR pCmdData,
+ OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_GetState(OMX_HANDLETYPE hRPCCtx,
+ OMX_STATETYPE * pState, OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_GetExtensionIndex(OMX_HANDLETYPE hComponent,
+ OMX_STRING cParameterName, OMX_INDEXTYPE * pIndexType,
+ OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_AllocateBuffer(OMX_HANDLETYPE hRPCCtx,
+ OMX_INOUT OMX_BUFFERHEADERTYPE ** ppBufferHdr,
+ OMX_IN OMX_U32 nPortIndex, OMX_U32 * pBufHeaderRemote,
+ OMX_PTR pAppPrivate, OMX_U32 nSizeBytes,
+ OMX_ERRORTYPE * nCmdStatus);
+
+ RPC_OMX_ERRORTYPE RPC_ComponentTunnelRequest(OMX_HANDLETYPE hRPCCtx,
+ OMX_IN OMX_U32 nPort, OMX_HANDLETYPE hTunneledremoteHandle,
+ OMX_U32 nTunneledPort,
+ OMX_INOUT OMX_TUNNELSETUPTYPE * pTunnelSetup,
+ OMX_ERRORTYPE * nCmdStatus);
+
+/*Empty Stubs*/
+ OMX_ERRORTYPE RPC_EventHandler(OMX_HANDLETYPE hRPCCtx,
+ OMX_PTR pAppData, OMX_EVENTTYPE eEvent, OMX_U32 nData1,
+ OMX_U32 nData2, OMX_PTR pEventData);
+ OMX_ERRORTYPE RPC_EmptyBufferDone(OMX_HANDLETYPE hRPCCtx,
+ OMX_PTR pAppData, OMX_BUFFERHEADERTYPE * pBuffer);
+ OMX_ERRORTYPE RPC_FillBufferDone(OMX_HANDLETYPE hRPCCtx,
+ OMX_PTR pAppData, OMX_BUFFERHEADERTYPE * pBuffer);
+
+#ifdef __cplusplus
+}
+#endif
+#endif