HomeSort by relevance Sort by last modified time
    Searched defs:pComponentPrivate (Results 1 - 25 of 75) sorted by null

1 2 3

  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_sample/src/
omx_proxy_sample.c 70 PROXY_COMPONENT_PRIVATE *pComponentPrivate;
76 pHandle->pComponentPrivate =
81 pComponentPrivate =
82 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
83 if (pHandle->pComponentPrivate == NULL)
90 pComponentPrivate->cCompName =
95 TIMM_OSAL_Memcpy(pComponentPrivate->cCompName, COMPONENT_NAME,
102 TIMM_OSAL_Free(pComponentPrivate->cCompName);
103 TIMM_OSAL_Free(pComponentPrivate);
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
OMX_AacDec_CompThread.c 110 AACDEC_COMPONENT_PRIVATE* pComponentPrivate = (AACDEC_COMPONENT_PRIVATE*)pThreadData;
111 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
118 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering ComponentThread \n",__LINE__);
120 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('A', 'C', 'D', '_'),
124 fdmax = pComponentPrivate->cmdPipe[0];
126 if (pComponentPrivate->dataPipe[0] > fdmax) {
127 fdmax = pComponentPrivate->dataPipe[0];
133 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
134 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
149 if (pComponentPrivate->bExitCompThrd == 1)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEnc_CompThread.c 87 AACENC_COMPONENT_PRIVATE* pComponentPrivate = (AACENC_COMPONENT_PRIVATE*)pThreadData;
88 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
92 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('A', 'A', 'C', 'E'),
97 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering ComponentThread\n", __LINE__);
98 fdmax = pComponentPrivate->cmdPipe[0];
100 if (pComponentPrivate->dataPipe[0] > fdmax)
101 fdmax = pComponentPrivate->dataPipe[0];
106 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
107 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
120 if (pComponentPrivate->bIsThreadstop == 1)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Dec_ComponentThread.c 71 G711DEC_COMPONENT_PRIVATE* pComponentPrivate = (G711DEC_COMPONENT_PRIVATE*)pThreadData;
72 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
78 fdmax = pComponentPrivate->cmdPipe[0];
80 if (pComponentPrivate->dataPipe[0] > fdmax) {
81 fdmax = pComponentPrivate->dataPipe[0];
86 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
87 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
102 if (pComponentPrivate->bIsStopping == 1) {
103 pComponentPrivate->bIsStopping = 0;
104 pComponentPrivate->lcml_nOpBuf = 0
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/src/
OMX_G711Enc_ComponentThread.c 95 G711ENC_COMPONENT_PRIVATE* pComponentPrivate = (G711ENC_COMPONENT_PRIVATE*)pThreadData;
96 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
99 fdmax = pComponentPrivate->cmdPipe[0];
100 if (pComponentPrivate->dataPipe[0] > fdmax) {
101 fdmax = pComponentPrivate->dataPipe[0];
106 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
107 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
122 if (pComponentPrivate->bIsThreadstop == 1) {
123 pComponentPrivate->bIsThreadstop = 0;
124 pComponentPrivate->lcml_nOpBuf = 0
    [all...]
OMX_G711Encoder.c 181 G711ENC_COMPONENT_PRIVATE *pComponentPrivate=NULL;
212 G711ENC_OMX_MALLOC_STRUCT(pHandle->pComponentPrivate, G711ENC_COMPONENT_PRIVATE);
214 ((G711ENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
215 pComponentPrivate = pHandle->pComponentPrivate;
218 pComponentPrivate->pCompPort[G711ENC_INPUT_PORT] = pCompPort;
221 pComponentPrivate->pCompPort[G711ENC_OUTPUT_PORT] = pCompPort;
223 G711ENC_OMX_MALLOC_STRUCT(pComponentPrivate->sPortParam, OMX_PORT_PARAM_TYPE);
224 OMX_G711ENC_INIT_STRUCT(pComponentPrivate->sPortParam, OMX_PORT_PARAM_TYPE);
227 pComponentPrivate->sPortParam->nPorts = 0x2
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
OMX_G726Dec_CompThread.c 99 G726DEC_COMPONENT_PRIVATE* pComponentPrivate = (G726DEC_COMPONENT_PRIVATE*)pThreadData;
100 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
104 fdmax = pComponentPrivate->cmdPipe[0];
106 if (pComponentPrivate->dataPipe[0] > fdmax) {
107 fdmax = pComponentPrivate->dataPipe[0];
113 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
114 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
127 if (pComponentPrivate->bExitCompThrd == 1) {
134 if (pComponentPrivate->bExitCompThrd == 1) {
141 pComponentPrivate->cbInfo.EventHandler
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Enc_ComponentThread.c 92 G726ENC_COMPONENT_PRIVATE* pComponentPrivate = (G726ENC_COMPONENT_PRIVATE*)pThreadData;
93 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
95 fdmax = pComponentPrivate->cmdPipe[0];
97 if (pComponentPrivate->dataPipe[0] > fdmax) {
98 fdmax = pComponentPrivate->dataPipe[0];
103 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
104 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
114 G726ENC_DPRINT("%d :: bIsStopping = %ld\n",__LINE__,pComponentPrivate->bIsStopping);
115 if (pComponentPrivate->bIsStopping == 1) {
116 pComponentPrivate->bIsStopping = 0;
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Dec_ComponentThread.c 110 G729DEC_COMPONENT_PRIVATE* pComponentPrivate = (G729DEC_COMPONENT_PRIVATE*)pThreadData;
111 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
117 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('7', '2', '9', 'E'),
121 fdmax = pComponentPrivate->cmdPipe[0];
123 if (pComponentPrivate->dataPipe[0] > fdmax) {
124 fdmax = pComponentPrivate->dataPipe[0];
129 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
130 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
143 (int)pComponentPrivate->bIsStopping);
146 (int)pComponentPrivate->lcml_nOpBuf)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
OMX_G729Enc_ComponentThread.c 113 G729ENC_COMPONENT_PRIVATE* pComponentPrivate = (G729ENC_COMPONENT_PRIVATE*)pThreadData;
114 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
118 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('7', '2', '9', 'E'),
122 fdmax = pComponentPrivate->cmdPipe[0];
124 if (pComponentPrivate->dataPipe[0] > fdmax)
126 fdmax = pComponentPrivate->dataPipe[0];
132 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
133 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
147 G729ENC_DPRINT("bIsThreadstop=%ld\n", pComponentPrivate->bIsThreadstop);
148 G729ENC_DPRINT("lcml_nOpBuf=%ld\n", pComponentPrivate->lcml_nOpBuf)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Dec_CompThread.c 109 MP3DEC_COMPONENT_PRIVATE* pComponentPrivate = (MP3DEC_COMPONENT_PRIVATE*)pThreadData;
110 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
117 OMX_PRINT1(pComponentPrivate->dbg, ":: Entering ComponentThread \n");
120 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('M', 'P', '3',' '),
125 fdmax = pComponentPrivate->cmdPipe[0];
127 if (pComponentPrivate->dataPipe[0] > fdmax) {
128 fdmax = pComponentPrivate->dataPipe[0];
133 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
134 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
147 if (pComponentPrivate->bExitCompThrd == 1)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDec_ComponentThread.c 73 AMRDEC_COMPONENT_PRIVATE* pComponentPrivate = (AMRDEC_COMPONENT_PRIVATE*)pThreadData;
74 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
78 OMX_PRINT1(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: \n",__LINE__);
81 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('N', 'B', '_', 'D'),
86 fdmax = pComponentPrivate->cmdPipe[0];
88 if (pComponentPrivate->dataPipe[0] > fdmax) {
89 fdmax = pComponentPrivate->dataPipe[0];
94 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
95 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
109 if (pComponentPrivate->bIsStopping == 1)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEnc_ComponentThread.c 105 AMRENC_COMPONENT_PRIVATE* pComponentPrivate = (AMRENC_COMPONENT_PRIVATE*)pThreadData;
106 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
107 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering NBAMRENC_CompThread\n", __LINE__);
110 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('N', 'B', '_', 'E'),
115 fdmax = pComponentPrivate->cmdPipe[0];
117 if (pComponentPrivate->dataPipe[0] > fdmax) {
118 fdmax = pComponentPrivate->dataPipe[0];
123 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
124 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
137 if (pComponentPrivate->bIsThreadstop == 1)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDec_ComponentThread.c 92 WBAMR_DEC_COMPONENT_PRIVATE* pComponentPrivate = (WBAMR_DEC_COMPONENT_PRIVATE*)pThreadData;
93 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
102 OMX_PRINT1(pComponentPrivate->dbg, "Entering\n");
105 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('W', 'B', '_', 'D'),
110 fdmax = pComponentPrivate->cmdPipe[0];
112 if (pComponentPrivate->dataPipe[0] > fdmax) {
113 fdmax = pComponentPrivate->dataPipe[0];
118 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
119 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
124 OMX_PRINT1(pComponentPrivate->dbg, "AmrComponentThread \n")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_CompThread.c 98 WBAMRENC_COMPONENT_PRIVATE* pComponentPrivate = (WBAMRENC_COMPONENT_PRIVATE*)pThreadData;
99 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
104 OMX_PRINT1(pComponentPrivate->dbg, "Entering\n");
107 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('W', 'B', 'E', '_'),
112 fdmax = pComponentPrivate->cmdPipe[0];
114 if (pComponentPrivate->dataPipe[0] > fdmax) {
115 fdmax = pComponentPrivate->dataPipe[0];
120 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
121 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
135 if (pComponentPrivate->bIsThreadstop == 1)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDec_ComponentThread.c 90 WMADEC_COMPONENT_PRIVATE* pComponentPrivate = (WMADEC_COMPONENT_PRIVATE*)pThreadData;
91 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
93 OMX_PRINT1(pComponentPrivate->dbg, "OMX_WmaDec_ComponentThread:%d\n",__LINE__);
95 OMX_PRDSP2(pComponentPrivate->dbg, "PERF%d :: OMX_WmaDec_ComponentThread.c\n",__LINE__);
96 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('W', 'M', 'A', 'D'),
100 fdmax = pComponentPrivate->cmdPipe[0];
102 if (pComponentPrivate->dataPipe[0] > fdmax) {
103 fdmax = pComponentPrivate->dataPipe[0];
108 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
109 FD_SET (pComponentPrivate->dataPipe[0], &rfds)
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
OMX_JpegDec_Thread.c 83 JPEGDEC_COMPONENT_PRIVATE *pComponentPrivate = (JPEGDEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
88 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURS("JPDT"),
95 nFdmax = pComponentPrivate->nCmdPipe[0];
97 if (pComponentPrivate->nFree_outBuf_Q[0] > nFdmax) {
98 nFdmax = pComponentPrivate->nFree_outBuf_Q[0];
101 if (pComponentPrivate->nFilled_inpBuf_Q[0] > nFdmax) {
102 nFdmax = pComponentPrivate->nFilled_inpBuf_Q[0];
105 OMX_PRINT1(pComponentPrivate->dbg, "fd max is %d\n", nFdmax);
110 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds)
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Thread.c 106 JPEGENC_COMPONENT_PRIVATE *pComponentPrivate = (JPEGENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
109 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURS("JPET"),
115 fdmax = pComponentPrivate->nCmdPipe[0];
117 if ( pComponentPrivate->free_outBuf_Q[0] > fdmax ) {
118 fdmax = pComponentPrivate->free_outBuf_Q[0];
122 if ( pComponentPrivate->filled_inpBuf_Q[0] > fdmax ) {
123 fdmax = pComponentPrivate->filled_inpBuf_Q[0];
126 OMX_TRACE2(pComponentPrivate->dbg, "fd max is %d\n",fdmax);
130 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds)
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_CompThread.c 112 VPP_COMPONENT_PRIVATE* pComponentPrivate = (VPP_COMPONENT_PRIVATE*)pThreadData;
113 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
116 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('V','P','P','T'),
122 fdmax = pComponentPrivate->cmdPipe[0];
126 if (pComponentPrivate->nFree_oPipe[0] > fdmax) {
127 fdmax = pComponentPrivate->nFree_oPipe[0];
130 if (pComponentPrivate->nFilled_iPipe[0] > fdmax) {
131 fdmax = pComponentPrivate->nFilled_iPipe[0];
136 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
138 if (pComponentPrivate->curState != OMX_StatePause)
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
OMX_VideoEnc_Thread.c 121 VIDENC_COMPONENT_PRIVATE* pComponentPrivate = NULL;
131 pComponentPrivate = (VIDENC_COMPONENT_PRIVATE*)pThreadData;
132 pLcmlHandle = (LCML_DSP_INTERFACE*)pComponentPrivate->pLCML;
135 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('V', 'E', ' ', 'T'),
143 fdmax = pComponentPrivate->nCmdPipe[0];
145 if (pComponentPrivate->nFree_oPipe[0] > fdmax)
147 fdmax = pComponentPrivate->nFree_oPipe[0];
150 if (pComponentPrivate->nFilled_iPipe[0] > fdmax)
152 fdmax = pComponentPrivate->nFilled_iPipe[0];
158 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds)
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_video_dec/src/
omx_proxy_videodec_secure.c 23 PROXY_COMPONENT_PRIVATE *pComponentPrivate = NULL;
34 pHandle->pComponentPrivate =
39 PROXY_assert(pHandle->pComponentPrivate != NULL,
43 pComponentPrivate =
44 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
46 TIMM_OSAL_Memset(pComponentPrivate, 0,
49 pComponentPrivate->cCompName =
53 PROXY_assert(pComponentPrivate->cCompName != NULL,
61 TIMM_OSAL_Memcpy(pComponentPrivate->cCompName, COMPONENT_NAME,
64 pComponentPrivate->secure_misc_drv_fd = open("/dev/rproc_user", O_SYNC | O_RDWR)
    [all...]
omx_proxy_videodec.c 124 PROXY_COMPONENT_PRIVATE *pComponentPrivate = NULL;
131 pHandle->pComponentPrivate =
136 PROXY_assert(pHandle->pComponentPrivate != NULL,
140 pComponentPrivate =
141 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
143 TIMM_OSAL_Memset(pComponentPrivate, 0,
146 pComponentPrivate->cCompName =
150 PROXY_assert(pComponentPrivate->cCompName != NULL,
164 PROXY_COMPONENT_PRIVATE *pComponentPrivate = NULL;
176 pComponentPrivate
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_obj.h 59 ((PERF_Private *) ( (handle)->pComponentPrivate ))
73 /** pComponentPrivate is a pointer to the component private
78 void *pComponentPrivate;
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
OMX_VideoDec_Thread.c 83 extern OMX_ERRORTYPE VIDDEC_DisablePort(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1);
84 extern OMX_ERRORTYPE VIDDEC_EnablePort(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1);
85 extern OMX_ERRORTYPE VIDDEC_HandleDataBuf_FromApp( VIDDEC_COMPONENT_PRIVATE *pComponentPrivate);
86 extern OMX_ERRORTYPE VIDDEC_HandleDataBuf_FromDsp( VIDDEC_COMPONENT_PRIVATE *pComponentPrivate );
87 extern OMX_ERRORTYPE VIDDEC_HandleFreeDataBuf( VIDDEC_COMPONENT_PRIVATE *pComponentPrivate );
88 extern OMX_ERRORTYPE VIDDEC_HandleFreeOutputBufferFromApp(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate) ;
91 extern OMX_ERRORTYPE VIDDEC_HandleCommandMarkBuffer(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1, OMX_PTR pCmdData);
92 extern OMX_ERRORTYPE VIDDEC_HandleCommandFlush(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1, OMX_BOOL bPass);
93 extern OMX_ERRORTYPE VIDDEC_Handle_InvalidState (VIDDEC_COMPONENT_PRIVATE* pComponentPrivate);
120 VIDDEC_COMPONENT_PRIVATE* pComponentPrivate;
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
OMX_G722Encoder.c 199 G722ENC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
228 pHandle->pComponentPrivate = (G722ENC_COMPONENT_PRIVATE *)
231 G722ENC_MEMPRINT("%d:::[ALLOC] %p\n",__LINE__,pHandle->pComponentPrivate);
232 if(pHandle->pComponentPrivate == NULL) {
237 memset (pHandle->pComponentPrivate,0,sizeof(G722ENC_COMPONENT_PRIVATE));
240 ((G722ENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
242 pHandle->pComponentPrivate)->sPortParam.nPorts = 0x2;
244 pHandle->pComponentPrivate)->sPortParam.nStartPortNumber = 0x0;
246 pHandle->pComponentPrivate)->pcmParams = NULL;
248 pHandle->pComponentPrivate)->g722Params = NULL
    [all...]

Completed in 458 milliseconds

1 2 3