Searched defs:nRet (Results 1 - 25 of 62) sorted by relevance

123

/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
H A DOMX_AacDec_CompThread.c108 OMX_U32 nRet; local
171 nRet = AACDEC_HandleCommand (pComponentPrivate);
172 if (nRet == EXIT_COMPONENT_THRD) {
H A DOMX_AacDec_Utils.c371 int nRet = 0; local
388 nRet = pipe (pComponentPrivate->dataPipe);
389 if (0 != nRet) {
393 nRet = pipe (pComponentPrivate->cmdPipe);
394 if (0 != nRet) {
398 nRet = pipe (pComponentPrivate->cmdDataPipe);
399 if (0 != nRet) {
405 nRet = pthread_create (&(pComponentPrivate->ComponentThread), &attr, AACDEC_ComponentThread, pComponentPrivate);
407 nRet = pthread_create (&(pComponentPrivate->ComponentThread), NULL, AACDEC_ComponentThread, pComponentPrivate);
409 if ((0 != nRet) || (!pComponentPrivat
444 int nRet=0; local
[all...]
H A DOMX_AacDecoder.c538 int nRet; local
625 nRet = write (pCompPrivate->cmdPipe[1], &Cmd, sizeof(Cmd));
626 if (nRet == -1) {
633 nRet = write (pCompPrivate->cmdDataPipe[1], &pCmdData,sizeof(OMX_PTR));
634 if (nRet == -1) {
640 nRet = write (pCompPrivate->cmdDataPipe[1], &nParam,
642 if (nRet == -1) {
648 /* if (nRet == -1) {
1557 int nRet=0; local
1628 nRet
[all...]
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
H A DOMX_AacEnc_CompThread.c82 OMX_U32 nRet; local
196 nRet = AACENCHandleCommand (pComponentPrivate);
197 if (nRet == EXIT_COMPONENT_THRD)
H A DOMX_AacEncoder.c621 int nRet = 0; local
737 nRet = write (pCompPrivate->cmdPipe[1], &Cmd, sizeof(Cmd));
738 OMX_PRCOMM2(pCompPrivate->dbg, "%d :: AACENC: Cmd pipe has been writen. nRet = %d \n",__LINE__,nRet);
742 if (nRet == -1)
751 nRet = write(pCompPrivate->cmdDataPipe[1], &pCmdData, sizeof(OMX_PTR));
755 nRet = write(pCompPrivate->cmdDataPipe[1], &nParam, sizeof(OMX_U32));
759 if (nRet == -1) {
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
H A DOMX_G711Dec_ComponentThread.c69 OMX_U32 nRet = 0; local
143 nRet = G711DECHandleCommand (pComponentPrivate);
144 if (nRet == EXIT_COMPONENT_THRD) {
H A DOMX_G711Decoder.c573 ssize_t nRet = 0; local
660 nRet = write (pCompPrivate->cmdPipe[1], &Cmd, sizeof(Cmd));
662 if (nRet == -1) {
669 nRet = write(pCompPrivate->cmdDataPipe[1], &pCmdData, sizeof(OMX_PTR));
672 nRet = write(pCompPrivate->cmdDataPipe[1], &nParam, sizeof(OMX_U32));
676 G711DEC_DPRINT ("%d:::nRet = %d\n",__LINE__,nRet);
677 if (nRet == -1) {
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/src/
H A DOMX_G711Enc_ComponentThread.c93 OMX_U32 nRet = 0; local
164 nRet = G711ENC_HandleCommand(pComponentPrivate);
165 if (nRet == G711ENC_EXIT_COMPONENT_THRD) {
H A DOMX_G711Encoder.c557 int nRet = 0; local
631 nRet = write (pCompPrivate->cmdPipe[1], &Cmd, sizeof(Cmd));
632 if (nRet == -1) {
639 nRet = write(pCompPrivate->cmdDataPipe[1], &pCmdData,sizeof(OMX_PTR));
641 nRet = write(pCompPrivate->cmdDataPipe[1], &nParam,sizeof(OMX_U32));
643 if (nRet == -1) {
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
H A DOMX_G726Dec_CompThread.c97 OMX_U32 nRet = 0; local
166 nRet = G726DEC_HandleCommand (pComponentPrivate);
167 if (nRet == EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
H A DOMX_G726Enc_ComponentThread.c90 OMX_U32 nRet = 0; local
136 nRet = G726ENC_HandleCommand(pComponentPrivate);
137 if (nRet == G726ENC_EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
H A DOMX_G729Dec_ComponentThread.c108 OMX_U32 nRet = 0; local
205 nRet = G729DECHandleCommand (pComponentPrivate);
206 if (nRet == EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
H A DOMX_G729Enc_ComponentThread.c111 OMX_U32 nRet = 0; local
203 nRet = G729ENC_HandleCommand(pComponentPrivate);
204 if (nRet == G729ENC_EXIT_COMPONENT_THRD)
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
H A DOMX_Mp3Dec_CompThread.c107 OMX_U32 nRet; local
196 nRet = MP3DEC_HandleCommand (pComponentPrivate);
197 if (nRet == EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
H A DOMX_AmrDec_ComponentThread.c71 OMX_U32 nRet; local
174 nRet = NBAMRDECHandleCommand (pComponentPrivate);
175 if (nRet == EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
H A DOMX_AmrEnc_ComponentThread.c103 OMX_U32 nRet; local
188 nRet = NBAMRENC_HandleCommand(pComponentPrivate);
189 if (nRet == NBAMRENC_EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
H A DOMX_WbAmrDec_ComponentThread.c90 OMX_U32 nRet; local
191 nRet = WBAMR_DEC_HandleCommand (pComponentPrivate);
192 if (nRet == WBAMR_DEC_EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
H A DOMX_WbAmrEnc_CompThread.c96 OMX_U32 nRet; local
198 nRet = WBAMRENC_HandleCommand(pComponentPrivate, command, commandData);
200 if (nRet == WBAMRENC_EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
H A DOMX_WmaDec_ComponentThread.c83 OMX_U32 nRet; local
176 nRet = WMADECHandleCommand (pComponentPrivate);
177 if (nRet == EXIT_COMPONENT_THRD) {
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
H A DOMX_VPP_CompThread.c106 int nRet = -1; local
170 nRet = read(pComponentPrivate->cmdPipe[0], &eCmd, sizeof(eCmd));
171 if (nRet == -1) {
191 nRet = read(pComponentPrivate->nCmdDataPipe[0], &pCmdData, sizeof(pCmdData));
192 if (nRet == -1) {
199 nRet = read(pComponentPrivate->nCmdDataPipe[0], &nParam1, sizeof(nParam1));
200 if (nRet == -1) {
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
H A DOMX_VideoEnc_Thread.c119 int nRet = -1; local
191 nRet = read(pComponentPrivate->nCmdPipe[0],
194 if (nRet == -1)
214 nRet = read(pComponentPrivate->nCmdDataPipe[0],
217 if (nRet == -1)
227 nRet = read(pComponentPrivate->nCmdDataPipe[0],
230 if (nRet == -1)
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
H A DOMX_G722Dec_Utils.c121 OMX_U32 nRet = 0; local
179 nRet = G722DEC_HandleCommand (pComponentPrivate);
180 if (nRet == EXIT_COMPONENT_THRD) {
487 int nRet = 0; local
505 nRet = pipe (pComponentPrivate->dataPipe);
506 if (0 != nRet) {
511 nRet = pipe (pComponentPrivate->cmdPipe);
512 if (0 != nRet) {
517 nRet = pipe (pComponentPrivate->cmdDataPipe);
518 if (0 != nRet) {
572 int nRet=0; local
[all...]
H A DOMX_G722Decoder.c490 int nRet = 0; local
564 nRet = write (pCompPrivate->cmdPipe[1], &Cmd, sizeof(Cmd));
565 if (nRet == -1) {
570 nRet = write (pCompPrivate->cmdDataPipe[1], &pCmdData,
572 if (nRet == -1) {
577 nRet = write (pCompPrivate->cmdDataPipe[1], &nParam,
579 if (nRet == -1) {
1399 int nRet=0; local
1469 nRet = write (pComponentPrivate->dataPipe[1], &pBuffer,
1471 if (nRet
[all...]
/hardware/ti/omap4xxx/domx/omx_proxy_component/omx_h264_enc/src/
H A Domx_proxy_h264enc.c561 OMX_U32 nBufIndex = 0, nSize=0, nRet=0; local
654 nRet = COLORCONVERT_PlatformOpaqueToNV12(pProxy->hCC, (void **) &pGrallocHandle, (void **) &pProxy->gralloc_handle[nBufIndex],
659 if(nRet != 0)
/hardware/ti/omap4xxx/domx/omx_proxy_component/omx_mpeg4_enc/src/
H A Domx_proxy_mpeg4enc.c544 OMX_U32 nBufIndex = 0, nSize=0, nRet=0; local
639 nRet = COLORCONVERT_PlatformOpaqueToNV12(pProxy->hCC, (void **) &pGrallocHandle, (void **) &pProxy->gralloc_handle[nBufIndex],
644 if(nRet != 0)

Completed in 284 milliseconds

123