Home | History | Annotate | Download | only in videocodec

Lines Matching full:virtual

37     virtual ~OMXComponentCodecBase();
40 virtual OMX_ERRORTYPE ComponentAllocatePorts(void);
41 virtual OMX_ERRORTYPE InitInputPort(void) = 0;
42 virtual OMX_ERRORTYPE InitOutputPort(void) = 0;
44 virtual OMX_ERRORTYPE ComponentGetParameter(
48 virtual OMX_ERRORTYPE ComponentSetParameter(
52 virtual OMX_ERRORTYPE ComponentGetConfig(
56 virtual OMX_ERRORTYPE ComponentSetConfig(
60 virtual OMX_COLOR_FORMATTYPE GetOutputColorFormat(int width);
62 virtual OMX_ERRORTYPE ProcessorInit(void); /* Loaded to Idle */
63 virtual OMX_ERRORTYPE ProcessorDeinit(void);/* Idle to Loaded */
64 virtual OMX_ERRORTYPE ProcessorStart(void); /* Idle to Executing/Pause */
65 virtual OMX_ERRORTYPE ProcessorStop(void); /* Executing/Pause to Idle */
66 virtual OMX_ERRORTYPE ProcessorPause(void); /* Executing to Pause */
67 virtual OMX_ERRORTYPE ProcessorResume(void);/* Pause to Executing */
78 virtual OMX_ERRORTYPE AddHandler(OMX_INDEXTYPE type, OMXHANDLER getter, OMXHANDLER setter);
79 virtual OMX_ERRORTYPE BuildHandlerList(void);