OpenMAXBellagio  0.9.3
OMX_Core.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 The Khronos Group Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject
10  * to the following conditions:
11  * The above copyright notice and this permission notice shall be included
12  * in all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  *
22  */
23 
29 #ifndef OMX_Core_h
30 #define OMX_Core_h
31 
32 #ifdef __cplusplus
33 extern "C" {
34 #endif /* __cplusplus */
35 
36 
37 /* Each OMX header shall include all required header files to allow the
38  * header to compile without errors. The includes below are required
39  * for this header file to compile successfully
40  */
41 
42 #include <OMX_Index.h>
43 
44 
49 typedef enum OMX_COMMANDTYPE
50 {
58  OMX_CommandMax = 0X7FFFFFFF
60 
61 
62 
92 typedef enum OMX_STATETYPE
93 {
113  OMX_StateMax = 0X7FFFFFFF
114 } OMX_STATETYPE;
115 
126 typedef enum OMX_ERRORTYPE
127 {
129 
132 
134  OMX_ErrorUndefined = (OMX_S32) 0x80001001,
135 
138 
141 
145 
148 
151 
153  OMX_ErrorUnderflow = (OMX_S32) 0x80001007,
154 
156  OMX_ErrorOverflow = (OMX_S32) 0x80001008,
157 
159  OMX_ErrorHardware = (OMX_S32) 0x80001009,
160 
163 
166 
169 
173 
175  OMX_ErrorNoMore = (OMX_S32) 0x8000100E,
176 
179 
181  OMX_ErrorNotReady = (OMX_S32) 0x80001010,
182 
184  OMX_ErrorTimeout = (OMX_S32) 0x80001011,
185 
187  OMX_ErrorSameState = (OMX_S32) 0x80001012,
188 
192 
198 
204 
210 
213 
214  /* Attempting a command that is not allowed during the present state. */
216 
219 
222 
225 
228 
231 
234 
238 
241 
244 
247 
250 
253 
256  OMX_ErrorMax = 0x7FFFFFFF
257 } OMX_ERRORTYPE;
258 
261 
264 {
265  const char * pName; /* Component name, 128 byte limit (including '\0') applies */
266  OMX_COMPONENTINITTYPE pInitialize; /* Component instance initialization function */
268 
271 
273 typedef struct OMX_PRIORITYMGMTTYPE {
279 
280 /* Component name and Role names are limited to 128 characters including the terminating '\0'. */
281 #define OMX_MAX_STRINGNAME_SIZE 128
282 
289 
299 #define OMX_BUFFERFLAG_EOS 0x00000001
300 
326 #define OMX_BUFFERFLAG_STARTTIME 0x00000002
327 
328 
329 
349 #define OMX_BUFFERFLAG_DECODEONLY 0x00000004
350 
351 
352 /* Data Corrupt Flag: This flag is set when the IL client believes the data in the associated buffer is corrupt
353  * @ingroup buf
354  */
355 
356 #define OMX_BUFFERFLAG_DATACORRUPT 0x00000008
357 
358 /* End of Frame: The buffer contains exactly one end of frame and no data
359  * occurs after the end of frame. This flag is an optional hint. The absence
360  * of this flag does not imply the absence of an end of frame within the buffer.
361  * @ingroup buf
362 */
363 #define OMX_BUFFERFLAG_ENDOFFRAME 0x00000010
364 
365 /* Sync Frame Flag: This flag is set when the buffer content contains a coded sync frame '
366  * a frame that has no dependency on any other frame information
367  * @ingroup buf
368  */
369 #define OMX_BUFFERFLAG_SYNCFRAME 0x00000020
370 
371 /* Extra data present flag: there is extra data appended to the data stream
372  * residing in the buffer
373  * @ingroup buf
374  */
375 #define OMX_BUFFERFLAG_EXTRADATA 0x00000040
376 
393 #define OMX_BUFFERFLAG_CODECCONFIG 0x00000080
394 
395 
396 
398 typedef struct OMX_BUFFERHEADERTYPE
399 {
444 
451 typedef enum OMX_EXTRADATATYPE
452 {
457  OMX_ExtraDataMax = 0x7FFFFFFF
459 
460 
461 typedef struct OMX_OTHER_EXTRADATATYPE {
465  OMX_EXTRADATATYPE eType; /* Extra Data type */
466  OMX_U32 nDataSize; /* Size of the supporting data to follow */
467  OMX_U8 data[1]; /* Supporting data hint */
469 
471 typedef struct OMX_PORT_PARAM_TYPE {
477 
479 typedef enum OMX_EVENTTYPE
480 {
494  OMX_EventMax = 0x7FFFFFFF
495 } OMX_EVENTTYPE;
496 
497 typedef struct OMX_CALLBACKTYPE
498 {
531  OMX_IN OMX_HANDLETYPE hComponent,
532  OMX_IN OMX_PTR pAppData,
533  OMX_IN OMX_EVENTTYPE eEvent,
534  OMX_IN OMX_U32 nData1,
535  OMX_IN OMX_U32 nData2,
536  OMX_IN OMX_PTR pEventData);
537 
561  OMX_IN OMX_HANDLETYPE hComponent,
562  OMX_IN OMX_PTR pAppData,
563  OMX_IN OMX_BUFFERHEADERTYPE* pBuffer);
564 
590  OMX_OUT OMX_HANDLETYPE hComponent,
591  OMX_OUT OMX_PTR pAppData,
592  OMX_OUT OMX_BUFFERHEADERTYPE* pBuffer);
593 
595 
601 {
608  OMX_BufferSupplyMax = 0x7FFFFFFF
610 
611 
621 
622 
627 #define OMX_PORTTUNNELFLAG_READONLY 0x00000001
628 
629 
635 typedef struct OMX_TUNNELSETUPTYPE
636 {
640 
641 /* OMX Component headers is included to enable the core to use
642  macros for functions into the component for OMX release 1.0.
643  Developers should not access any structures or data from within
644  the component header directly */
645 /* TO BE REMOVED - #include <OMX_Component.h> */
646 
684 #define OMX_GetComponentVersion( \
685  hComponent, \
686  pComponentName, \
687  pComponentVersion, \
688  pSpecVersion, \
689  pComponentUUID) \
690  ((OMX_COMPONENTTYPE*)hComponent)->GetComponentVersion( \
691  hComponent, \
692  pComponentName, \
693  pComponentVersion, \
694  pSpecVersion, \
695  pComponentUUID) /* Macro End */
696 
697 
745 #define OMX_SendCommand( \
746  hComponent, \
747  Cmd, \
748  nParam, \
749  pCmdData) \
750  ((OMX_COMPONENTTYPE*)hComponent)->SendCommand( \
751  hComponent, \
752  Cmd, \
753  nParam, \
754  pCmdData) /* Macro End */
755 
756 
786 #define OMX_GetParameter( \
787  hComponent, \
788  nParamIndex, \
789  pComponentParameterStructure) \
790  ((OMX_COMPONENTTYPE*)hComponent)->GetParameter( \
791  hComponent, \
792  nParamIndex, \
793  pComponentParameterStructure) /* Macro End */
794 
795 
825 #define OMX_SetParameter( \
826  hComponent, \
827  nParamIndex, \
828  pComponentParameterStructure) \
829  ((OMX_COMPONENTTYPE*)hComponent)->SetParameter( \
830  hComponent, \
831  nParamIndex, \
832  pComponentParameterStructure) /* Macro End */
833 
834 
861 #define OMX_GetConfig( \
862  hComponent, \
863  nConfigIndex, \
864  pComponentConfigStructure) \
865  ((OMX_COMPONENTTYPE*)hComponent)->GetConfig( \
866  hComponent, \
867  nConfigIndex, \
868  pComponentConfigStructure) /* Macro End */
869 
870 
897 #define OMX_SetConfig( \
898  hComponent, \
899  nConfigIndex, \
900  pComponentConfigStructure) \
901  ((OMX_COMPONENTTYPE*)hComponent)->SetConfig( \
902  hComponent, \
903  nConfigIndex, \
904  pComponentConfigStructure) /* Macro End */
905 
906 
931 #define OMX_GetExtensionIndex( \
932  hComponent, \
933  cParameterName, \
934  pIndexType) \
935  ((OMX_COMPONENTTYPE*)hComponent)->GetExtensionIndex( \
936  hComponent, \
937  cParameterName, \
938  pIndexType) /* Macro End */
939 
940 
958 #define OMX_GetState( \
959  hComponent, \
960  pState) \
961  ((OMX_COMPONENTTYPE*)hComponent)->GetState( \
962  hComponent, \
963  pState) /* Macro End */
964 
965 
985 #define OMX_UseBuffer( \
986  hComponent, \
987  ppBufferHdr, \
988  nPortIndex, \
989  pAppPrivate, \
990  nSizeBytes, \
991  pBuffer) \
992  ((OMX_COMPONENTTYPE*)hComponent)->UseBuffer( \
993  hComponent, \
994  ppBufferHdr, \
995  nPortIndex, \
996  pAppPrivate, \
997  nSizeBytes, \
998  pBuffer)
999 
1000 
1028 #define OMX_AllocateBuffer( \
1029  hComponent, \
1030  ppBuffer, \
1031  nPortIndex, \
1032  pAppPrivate, \
1033  nSizeBytes) \
1034  ((OMX_COMPONENTTYPE*)hComponent)->AllocateBuffer( \
1035  hComponent, \
1036  ppBuffer, \
1037  nPortIndex, \
1038  pAppPrivate, \
1039  nSizeBytes) /* Macro End */
1040 
1041 
1064 #define OMX_FreeBuffer( \
1065  hComponent, \
1066  nPortIndex, \
1067  pBuffer) \
1068  ((OMX_COMPONENTTYPE*)hComponent)->FreeBuffer( \
1069  hComponent, \
1070  nPortIndex, \
1071  pBuffer) /* Macro End */
1072 
1073 
1096 #define OMX_EmptyThisBuffer( \
1097  hComponent, \
1098  pBuffer) \
1099  ((OMX_COMPONENTTYPE*)hComponent)->EmptyThisBuffer( \
1100  hComponent, \
1101  pBuffer) /* Macro End */
1102 
1103 
1126 #define OMX_FillThisBuffer( \
1127  hComponent, \
1128  pBuffer) \
1129  ((OMX_COMPONENTTYPE*)hComponent)->FillThisBuffer( \
1130  hComponent, \
1131  pBuffer) /* Macro End */
1132 
1133 
1134 
1165 #define OMX_UseEGLImage( \
1166  hComponent, \
1167  ppBufferHdr, \
1168  nPortIndex, \
1169  pAppPrivate, \
1170  eglImage) \
1171  ((OMX_COMPONENTTYPE*)hComponent)->UseEGLImage( \
1172  hComponent, \
1173  ppBufferHdr, \
1174  nPortIndex, \
1175  pAppPrivate, \
1176  eglImage)
1177 
1190 
1191 
1205 
1206 
1245  OMX_OUT OMX_STRING cComponentName,
1246  OMX_IN OMX_U32 nNameLength,
1247  OMX_IN OMX_U32 nIndex);
1248 
1249 
1278  OMX_OUT OMX_HANDLETYPE* pHandle,
1279  OMX_IN OMX_STRING cComponentName,
1280  OMX_IN OMX_PTR pAppData,
1281  OMX_IN OMX_CALLBACKTYPE* pCallBacks);
1282 
1283 
1300  OMX_IN OMX_HANDLETYPE hComponent);
1301 
1302 
1303 
1353  OMX_IN OMX_HANDLETYPE hOutput,
1354  OMX_IN OMX_U32 nPortOutput,
1355  OMX_IN OMX_HANDLETYPE hInput,
1356  OMX_IN OMX_U32 nPortInput);
1357 
1360  OMX_OUT OMX_HANDLETYPE *hPipe,
1361  OMX_IN OMX_STRING szURI);
1362 
1391  OMX_IN OMX_STRING role,
1392  OMX_INOUT OMX_U32 *pNumComps,
1393  OMX_INOUT OMX_U8 **compNames);
1394 
1421  OMX_IN OMX_STRING compName,
1422  OMX_INOUT OMX_U32 *pNumRoles,
1423  OMX_OUT OMX_U8 **roles);
1424 
1425 #ifdef __cplusplus
1426 }
1427 #endif /* __cplusplus */
1428 
1429 #endif
1430 /* File EOF */
1431 
OMX_ErrorIncorrectStateTransition
Definition: OMX_Core.h:212
OMX_BufferSupplyMax
Definition: OMX_Core.h:608
OMX_ErrorUnderflow
Definition: OMX_Core.h:153
OMX_ErrorBadPortIndex
Definition: OMX_Core.h:224
OMX_PORT_PARAM_TYPE::nStartPortNumber
OMX_U32 nStartPortNumber
Definition: OMX_Core.h:475
OMX_CALLBACKTYPE::EventHandler
OMX_ERRORTYPE(* EventHandler)(OMX_IN OMX_HANDLETYPE hComponent, OMX_IN OMX_PTR pAppData, OMX_IN OMX_EVENTTYPE eEvent, OMX_IN OMX_U32 nData1, OMX_IN OMX_U32 nData2, OMX_IN OMX_PTR pEventData)
Definition: OMX_Core.h:530
OMX_PRIORITYMGMTTYPE::nGroupID
OMX_U32 nGroupID
Definition: OMX_Core.h:277
OMX_EVENTTYPE
OMX_EVENTTYPE
Definition: OMX_Core.h:479
OMX_EventComponentResumed
Definition: OMX_Core.h:489
OMX_StatePause
Definition: OMX_Core.h:107
OMX_StateKhronosExtensions
Definition: OMX_Core.h:111
OMX_ErrorUnsupportedIndex
Definition: OMX_Core.h:221
OMX_CommandMax
Definition: OMX_Core.h:58
OMX_ErrorInvalidState
Definition: OMX_Core.h:162
OMX_ErrorOverflow
Definition: OMX_Core.h:156
OMX_EventKhronosExtensions
Definition: OMX_Core.h:492
OMX_ERRORTYPE
OMX_ERRORTYPE
Definition: OMX_Core.h:126
OMX_BUFFERHEADERTYPE::nOffset
OMX_U32 nOffset
Definition: OMX_Core.h:407
OMX_IN
#define OMX_IN
Definition: OMX_Types.h:75
OMX_COMPONENTREGISTERTYPE::pName
const char * pName
Definition: OMX_Core.h:265
OMX_U32
unsigned long OMX_U32
Definition: OMX_Types.h:145
OMX_PARAM_BUFFERSUPPLIERTYPE
Definition: OMX_Core.h:615
OMX_ComponentRegistered
OMX_COMPONENTREGISTERTYPE OMX_ComponentRegistered[]
OMX_BUFFERHEADERTYPE::nTickCount
OMX_U32 nTickCount
Definition: OMX_Core.h:422
OMX_ErrorUnsupportedSetting
Definition: OMX_Core.h:218
OMX_BUFFERHEADERTYPE::nAllocLen
OMX_U32 nAllocLen
Definition: OMX_Core.h:404
OMX_StateVendorStartUnused
Definition: OMX_Core.h:112
OMX_PRIORITYMGMTTYPE
struct OMX_PRIORITYMGMTTYPE OMX_PRIORITYMGMTTYPE
OMX_CommandFlush
Definition: OMX_Core.h:52
OMX_ErrorPortUnresponsiveDuringStop
Definition: OMX_Core.h:209
OMX_GetComponentsOfRole
OMX_API OMX_ERRORTYPE OMX_GetComponentsOfRole(OMX_IN OMX_STRING role, OMX_INOUT OMX_U32 *pNumComps, OMX_INOUT OMX_U8 **compNames)
OMX_ErrorVendorStartUnused
Definition: OMX_Core.h:255
OMX_OTHER_EXTRADATATYPE::eType
OMX_EXTRADATATYPE eType
Definition: OMX_Core.h:465
OMX_ExtraDataQuantization
Definition: OMX_Core.h:454
OMX_ErrorInvalidComponent
Definition: OMX_Core.h:144
OMX_ErrorTunnelingUnsupported
Definition: OMX_Core.h:252
OMX_PARAM_BUFFERSUPPLIERTYPE::nPortIndex
OMX_U32 nPortIndex
Definition: OMX_Core.h:618
OMX_CALLBACKTYPE
Definition: OMX_Core.h:497
OMX_ExtraDataVendorStartUnused
Definition: OMX_Core.h:456
OMX_OTHER_EXTRADATATYPE
struct OMX_OTHER_EXTRADATATYPE OMX_OTHER_EXTRADATATYPE
OMX_ErrorResourcesPreempted
Definition: OMX_Core.h:191
OMX_CommandKhronosExtensions
Definition: OMX_Core.h:56
OMX_PORT_PARAM_TYPE
Definition: OMX_Core.h:471
OMX_ErrorKhronosExtensions
Definition: OMX_Core.h:254
OMX_TICKS
OMX_S64 OMX_TICKS
Definition: OMX_Types.h:282
OMX_ErrorSameState
Definition: OMX_Core.h:187
OMX_CommandPortEnable
Definition: OMX_Core.h:54
OMX_ErrorComponentSuspended
Definition: OMX_Core.h:230
OMX_BufferSupplyVendorStartUnused
Definition: OMX_Core.h:607
OMX_COMPONENTREGISTERTYPE::pInitialize
OMX_COMPONENTINITTYPE pInitialize
Definition: OMX_Core.h:266
OMX_BUFFERHEADERTYPE::nFilledLen
OMX_U32 nFilledLen
Definition: OMX_Core.h:405
OMX_ErrorStreamCorrupt
Definition: OMX_Core.h:165
OMX_HANDLETYPE
void * OMX_HANDLETYPE
Definition: OMX_Types.h:295
OMX_EventCmdComplete
Definition: OMX_Core.h:481
OMX_ErrorVersionMismatch
Definition: OMX_Core.h:178
OMX_BUFFERHEADERTYPE
struct OMX_BUFFERHEADERTYPE OMX_BUFFERHEADERTYPE
OMX_PRIORITYMGMTTYPE::nSize
OMX_U32 nSize
Definition: OMX_Core.h:274
OMX_EventVendorStartUnused
Definition: OMX_Core.h:493
OMX_PARAM_BUFFERSUPPLIERTYPE::nVersion
OMX_VERSIONTYPE nVersion
Definition: OMX_Core.h:617
OMX_GetHandle
OMX_API OMX_ERRORTYPE OMX_APIENTRY OMX_GetHandle(OMX_OUT OMX_HANDLETYPE *pHandle, OMX_IN OMX_STRING cComponentName, OMX_IN OMX_PTR pAppData, OMX_IN OMX_CALLBACKTYPE *pCallBacks)
OMX_ErrorMbErrorsInFrame
Definition: OMX_Core.h:237
OMX_FreeHandle
OMX_API OMX_ERRORTYPE OMX_APIENTRY OMX_FreeHandle(OMX_IN OMX_HANDLETYPE hComponent)
OMX_PRIORITYMGMTTYPE::nGroupPriority
OMX_U32 nGroupPriority
Definition: OMX_Core.h:276
OMX_CALLBACKTYPE::FillBufferDone
OMX_ERRORTYPE(* FillBufferDone)(OMX_OUT OMX_HANDLETYPE hComponent, OMX_OUT OMX_PTR pAppData, OMX_OUT OMX_BUFFERHEADERTYPE *pBuffer)
Definition: OMX_Core.h:589
OMX_PARAM_COMPONENTROLETYPE::cRole
OMX_U8 cRole[128]
Definition: OMX_Core.h:287
OMX_StateInvalid
Definition: OMX_Core.h:94
OMX_OTHER_EXTRADATATYPE::nPortIndex
OMX_U32 nPortIndex
Definition: OMX_Core.h:464
OMX_ErrorInvalidComponentName
Definition: OMX_Core.h:137
OMX_OTHER_EXTRADATATYPE
Definition: OMX_Core.h:461
OMX_OTHER_EXTRADATATYPE::data
OMX_U8 data[1]
Definition: OMX_Core.h:467
OMX_ErrorPortUnresponsiveDuringAllocation
Definition: OMX_Core.h:197
OMX_OTHER_EXTRADATATYPE::nSize
OMX_U32 nSize
Definition: OMX_Core.h:462
OMX_ExtraDataKhronosExtensions
Definition: OMX_Core.h:455
OMX_ErrorSeperateTablesUsed
Definition: OMX_Core.h:249
OMX_ErrorUndefined
Definition: OMX_Core.h:134
OMX_API
#define OMX_API
Definition: OMX_Types.h:62
OMX_CALLBACKTYPE
struct OMX_CALLBACKTYPE OMX_CALLBACKTYPE
OMX_Init
OMX_API OMX_ERRORTYPE OMX_APIENTRY OMX_Init(void)
The OMX_Init standard function.
Definition: omxcore.c:94
OMX_PORT_PARAM_TYPE::nVersion
OMX_VERSIONTYPE nVersion
Definition: OMX_Core.h:473
OMX_PARAM_COMPONENTROLETYPE::nVersion
OMX_VERSIONTYPE nVersion
Definition: OMX_Core.h:286
OMX_BUFFERHEADERTYPE::nInputPortIndex
OMX_U32 nInputPortIndex
Definition: OMX_Core.h:441
OMX_APIENTRY
#define OMX_APIENTRY
Definition: OMX_Types.h:68
OMX_ExtraDataMax
Definition: OMX_Core.h:457
OMX_OTHER_EXTRADATATYPE::nDataSize
OMX_U32 nDataSize
Definition: OMX_Core.h:466
OMX_EventPortSettingsChanged
Definition: OMX_Core.h:484
OMX_BUFFERHEADERTYPE::pOutputPortPrivate
OMX_PTR pOutputPortPrivate
Definition: OMX_Core.h:415
OMX_VERSIONTYPE
Definition: OMX_Types.h:328
OMX_ErrorBadParameter
Definition: OMX_Core.h:147
OMX_ErrorNotReady
Definition: OMX_Core.h:181
OMX_BUFFERSUPPLIERTYPE
OMX_BUFFERSUPPLIERTYPE
Definition: OMX_Core.h:600
OMX_ErrorIncorrectStateOperation
Definition: OMX_Core.h:215
OMX_PTR
void * OMX_PTR
Definition: OMX_Types.h:199
OMX_PARAM_BUFFERSUPPLIERTYPE::nSize
OMX_U32 nSize
Definition: OMX_Core.h:616
OMX_TUNNELSETUPTYPE
Definition: OMX_Core.h:635
OMX_PORT_PARAM_TYPE
struct OMX_PORT_PARAM_TYPE OMX_PORT_PARAM_TYPE
OMX_ErrorTimeout
Definition: OMX_Core.h:184
OMX_PARAM_COMPONENTROLETYPE
struct OMX_PARAM_COMPONENTROLETYPE OMX_PARAM_COMPONENTROLETYPE
OMX_BufferSupplyInput
Definition: OMX_Core.h:604
OMX_EventDynamicResourcesAvailable
Definition: OMX_Core.h:490
OMX_EventMark
Definition: OMX_Core.h:483
OMX_BUFFERHEADERTYPE::nFlags
OMX_U32 nFlags
Definition: OMX_Core.h:438
OMX_ErrorNotImplemented
Definition: OMX_Core.h:150
OMX_EventError
Definition: OMX_Core.h:482
OMX_INOUT
#define OMX_INOUT
Definition: OMX_Types.h:91
OMX_BUFFERHEADERTYPE::hMarkTargetComponent
OMX_HANDLETYPE hMarkTargetComponent
Definition: OMX_Core.h:417
OMX_ErrorFormatNotDetected
Definition: OMX_Core.h:240
OMX_ErrorInsufficientResources
Definition: OMX_Core.h:131
OMX_BUFFERHEADERTYPE::pAppPrivate
OMX_PTR pAppPrivate
Definition: OMX_Core.h:409
OMX_EventBufferFlag
Definition: OMX_Core.h:485
OMX_ErrorPortUnresponsiveDuringDeallocation
Definition: OMX_Core.h:203
OMX_ErrorNoMore
Definition: OMX_Core.h:175
OMX_BUFFERHEADERTYPE::pPlatformPrivate
OMX_PTR pPlatformPrivate
Definition: OMX_Core.h:411
OMX_ExtraDataNone
Definition: OMX_Core.h:453
OMX_ErrorContentPipeOpenFailed
Definition: OMX_Core.h:243
OMX_EventPortFormatDetected
Definition: OMX_Core.h:491
OMX_ErrorMax
Definition: OMX_Core.h:256
OMX_TUNNELSETUPTYPE::nTunnelFlags
OMX_U32 nTunnelFlags
Definition: OMX_Core.h:637
OMX_BUFFERHEADERTYPE::nOutputPortIndex
OMX_U32 nOutputPortIndex
Definition: OMX_Core.h:439
OMX_COMPONENTINITTYPE
OMX_ERRORTYPE(* OMX_COMPONENTINITTYPE)(OMX_IN OMX_HANDLETYPE hComponent)
Definition: OMX_Core.h:260
OMX_TUNNELSETUPTYPE
struct OMX_TUNNELSETUPTYPE OMX_TUNNELSETUPTYPE
OMX_CALLBACKTYPE::EmptyBufferDone
OMX_ERRORTYPE(* EmptyBufferDone)(OMX_IN OMX_HANDLETYPE hComponent, OMX_IN OMX_PTR pAppData, OMX_IN OMX_BUFFERHEADERTYPE *pBuffer)
Definition: OMX_Core.h:560
OMX_StateExecuting
Definition: OMX_Core.h:105
OMX_PORT_PARAM_TYPE::nPorts
OMX_U32 nPorts
Definition: OMX_Core.h:474
OMX_GetContentPipe
OMX_API OMX_ERRORTYPE OMX_GetContentPipe(OMX_OUT OMX_HANDLETYPE *hPipe, OMX_IN OMX_STRING szURI)
OMX_CommandVendorStartUnused
Definition: OMX_Core.h:57
OMX_PORT_PARAM_TYPE::nSize
OMX_U32 nSize
Definition: OMX_Core.h:472
OMX_EventResourcesAcquired
Definition: OMX_Core.h:486
OMX_COMPONENTREGISTERTYPE
Definition: OMX_Core.h:263
OMX_STATETYPE
OMX_STATETYPE
Definition: OMX_Core.h:92
OMX_GetRolesOfComponent
OMX_API OMX_ERRORTYPE OMX_GetRolesOfComponent(OMX_IN OMX_STRING compName, OMX_INOUT OMX_U32 *pNumRoles, OMX_OUT OMX_U8 **roles)
OMX_BUFFERHEADERTYPE::nTimeStamp
OMX_TICKS nTimeStamp
Definition: OMX_Core.h:431
OMX_STRING
char * OMX_STRING
Definition: OMX_Types.h:206
OMX_PRIORITYMGMTTYPE::nVersion
OMX_VERSIONTYPE nVersion
Definition: OMX_Core.h:275
OMX_SetupTunnel
OMX_API OMX_ERRORTYPE OMX_APIENTRY OMX_SetupTunnel(OMX_IN OMX_HANDLETYPE hOutput, OMX_IN OMX_U32 nPortOutput, OMX_IN OMX_HANDLETYPE hInput, OMX_IN OMX_U32 nPortInput)
OMX_BufferSupplyUnspecified
Definition: OMX_Core.h:602
OMX_CommandMarkBuffer
Definition: OMX_Core.h:55
OMX_OTHER_EXTRADATATYPE::nVersion
OMX_VERSIONTYPE nVersion
Definition: OMX_Core.h:463
OMX_EXTRADATATYPE
OMX_EXTRADATATYPE
Definition: OMX_Core.h:451
OMX_Index.h
OMX_StateWaitForResources
Definition: OMX_Core.h:108
OMX_BUFFERHEADERTYPE::pInputPortPrivate
OMX_PTR pInputPortPrivate
Definition: OMX_Core.h:413
OMX_MAX_STRINGNAME_SIZE
#define OMX_MAX_STRINGNAME_SIZE
Definition: OMX_Core.h:281
OMX_ErrorComponentNotFound
Definition: OMX_Core.h:140
OMX_Deinit
OMX_API OMX_ERRORTYPE OMX_APIENTRY OMX_Deinit(void)
The OMX_Deinit standard function.
Definition: omxcore.c:123
OMX_BUFFERHEADERTYPE
Definition: OMX_Core.h:398
OMX_PARAM_COMPONENTROLETYPE
Definition: OMX_Core.h:284
OMX_ErrorNone
Definition: OMX_Core.h:128
OMX_PARAM_BUFFERSUPPLIERTYPE
struct OMX_PARAM_BUFFERSUPPLIERTYPE OMX_PARAM_BUFFERSUPPLIERTYPE
OMX_PARAM_BUFFERSUPPLIERTYPE::eBufferSupplier
OMX_BUFFERSUPPLIERTYPE eBufferSupplier
Definition: OMX_Core.h:619
OMX_U8
unsigned char OMX_U8
Definition: OMX_Types.h:133
OMX_COMMANDTYPE
OMX_COMMANDTYPE
Definition: OMX_Core.h:49
OMX_ErrorHardware
Definition: OMX_Core.h:159
OMX_ErrorPortsNotCompatible
Definition: OMX_Core.h:168
OMX_ErrorResourcesLost
Definition: OMX_Core.h:172
OMX_EventMax
Definition: OMX_Core.h:494
OMX_COMPONENTREGISTERTYPE
struct OMX_COMPONENTREGISTERTYPE OMX_COMPONENTREGISTERTYPE
OMX_BufferSupplyKhronosExtensions
Definition: OMX_Core.h:606
OMX_CommandStateSet
Definition: OMX_Core.h:51
OMX_ErrorContentPipeCreationFailed
Definition: OMX_Core.h:246
OMX_BufferSupplyOutput
Definition: OMX_Core.h:605
OMX_OUT
#define OMX_OUT
Definition: OMX_Types.h:82
OMX_ErrorPortUnpopulated
Definition: OMX_Core.h:227
OMX_PARAM_COMPONENTROLETYPE::nSize
OMX_U32 nSize
Definition: OMX_Core.h:285
OMX_BUFFERHEADERTYPE::pBuffer
OMX_U8 * pBuffer
Definition: OMX_Core.h:402
OMX_PRIORITYMGMTTYPE
Definition: OMX_Core.h:273
OMX_ComponentNameEnum
OMX_API OMX_ERRORTYPE OMX_APIENTRY OMX_ComponentNameEnum(OMX_OUT OMX_STRING cComponentName, OMX_IN OMX_U32 nNameLength, OMX_IN OMX_U32 nIndex)
OMX_ErrorDynamicResourcesUnavailable
Definition: OMX_Core.h:233
OMX_StateMax
Definition: OMX_Core.h:113
OMX_StateIdle
Definition: OMX_Core.h:102
OMX_TUNNELSETUPTYPE::eSupplier
OMX_BUFFERSUPPLIERTYPE eSupplier
Definition: OMX_Core.h:638
OMX_S32
signed long OMX_S32
Definition: OMX_Types.h:148
OMX_BUFFERHEADERTYPE::nSize
OMX_U32 nSize
Definition: OMX_Core.h:400
OMX_CommandPortDisable
Definition: OMX_Core.h:53
OMX_StateLoaded
Definition: OMX_Core.h:97
OMX_BUFFERHEADERTYPE::nVersion
OMX_VERSIONTYPE nVersion
Definition: OMX_Core.h:401
OMX_BUFFERHEADERTYPE::pMarkData
OMX_PTR pMarkData
Definition: OMX_Core.h:419

Generated for OpenMAX Bellagio rel. 0.9.3 by  doxygen 1.5.1
SourceForge.net Logo