Home
last modified time | relevance | path

Searched refs:pSectionDecode (Results 1 – 4 of 4) sorted by relevance

/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
DJPEGTest.c624 OMX_CUSTOM_IMAGE_DECODE_SECTION* pSectionDecode = NULL; local
735pSectionDecode = (OMX_CUSTOM_IMAGE_DECODE_SECTION*)malloc(sizeof(OMX_CUSTOM_IMAGE_DECODE_SECTION));
1184 eError = OMX_GetParameter(pHandle, nCustomIndex, pSectionDecode);
1189 pSectionDecode->nMCURow = nMCURow; /*number of slices*/
1190pSectionDecode->bSectionsInput = OMX_FALSE; /*Should be false at input port. Unsupported slice dec…
1191 pSectionDecode->bSectionsOutput = OMX_TRUE; /*Should be true if slice at output port*/
1192 eError = OMX_SetParameter(pHandle, nCustomIndex, pSectionDecode);
1499 if(pSectionDecode){
1500 free(pSectionDecode);
1501 pSectionDecode = NULL;
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
DOMX_JpegDecoder.c650 OMX_MALLOC(pComponentPrivate->pSectionDecode, sizeof(OMX_CUSTOM_IMAGE_DECODE_SECTION)); in OMX_ComponentInit()
707 OMX_CONF_INIT_STRUCT(pComponentPrivate->pSectionDecode, OMX_CUSTOM_IMAGE_DECODE_SECTION); in OMX_ComponentInit()
708 pComponentPrivate->pSectionDecode->nMCURow = 0; in OMX_ComponentInit()
709 pComponentPrivate->pSectionDecode->nAU = 0; in OMX_ComponentInit()
710 pComponentPrivate->pSectionDecode->bSectionsInput = 0; in OMX_ComponentInit()
711 pComponentPrivate->pSectionDecode->bSectionsOutput = 0; in OMX_ComponentInit()
1250 …memcpy(ComponentParameterStructure, pComponentPrivate->pSectionDecode, sizeof(OMX_CUSTOM_IMAGE_DEC… in GetParameter_JPEGDec()
1468 OMX_CUSTOM_IMAGE_DECODE_SECTION* pSectionDecode = pCompParam; in SetParameter_JPEGDec() local
1469 OMX_MEMCPY_CHECK(pSectionDecode); in SetParameter_JPEGDec()
1470 OMX_MEMCPY_CHECK(pComponentPrivate->pSectionDecode); in SetParameter_JPEGDec()
[all …]
DOMX_JpegDec_Utils.c729 if(pComponentPrivate->pSectionDecode->bSectionsInput){ /*Slide decoding enable*/ in Fill_LCMLInitParamsJpegDec()
736 if(pComponentPrivate->pSectionDecode->bSectionsOutput){ /*Slide decoding enable*/ in Fill_LCMLInitParamsJpegDec()
1767 ptJPGDecUALGInBufParam->ulNumMCURow = (int)pComponentPrivate->pSectionDecode->nMCURow; in HandleDataBuf_FromAppJpegDec()
1768 ptJPGDecUALGInBufParam->ulnumAU = (int)pComponentPrivate->pSectionDecode->nAU; in HandleDataBuf_FromAppJpegDec()
2027 … if((pBuffHead->nFlags == OMX_FALSE) && (pComponentPrivate->pSectionDecode->nMCURow == OMX_FALSE)){ in LCML_CallbackJpegDec()
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/inc/
DOMX_JpegDec_Utils.h472 OMX_CUSTOM_IMAGE_DECODE_SECTION* pSectionDecode; member