Home
last modified time | relevance | path

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

/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
DJPEGTest.c625 OMX_CUSTOM_IMAGE_DECODE_SUBREGION* pSubRegionDecode = NULL; local
736pSubRegionDecode = (OMX_CUSTOM_IMAGE_DECODE_SUBREGION*)malloc(sizeof(OMX_CUSTOM_IMAGE_DECODE_SUBRE…
1206 eError = OMX_GetParameter(pHandle, nCustomIndex, pSubRegionDecode);
1212 pSubRegionDecode->nXOrg = nXOrg;
1213 pSubRegionDecode->nYOrg = nYOrg;
1214 pSubRegionDecode->nXLength = nXLength;
1215 pSubRegionDecode->nYLength = nYLength;
1216 eError = OMX_SetParameter(pHandle, nCustomIndex, pSubRegionDecode);
1503 if(pSubRegionDecode){
1504 free(pSubRegionDecode);
[all …]
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
DOMX_JpegDecoder.c651 OMX_MALLOC(pComponentPrivate->pSubRegionDecode, sizeof(OMX_CUSTOM_IMAGE_DECODE_SUBREGION)); in OMX_ComponentInit()
713 OMX_CONF_INIT_STRUCT(pComponentPrivate->pSubRegionDecode, OMX_CUSTOM_IMAGE_DECODE_SUBREGION); in OMX_ComponentInit()
714 pComponentPrivate->pSubRegionDecode->nXOrg = 0; in OMX_ComponentInit()
715 pComponentPrivate->pSubRegionDecode->nYOrg = 0; in OMX_ComponentInit()
716 pComponentPrivate->pSubRegionDecode->nXLength = 0; in OMX_ComponentInit()
717 pComponentPrivate->pSubRegionDecode->nYLength = 0; in OMX_ComponentInit()
1257 …memcpy(ComponentParameterStructure, pComponentPrivate->pSubRegionDecode, sizeof(OMX_CUSTOM_IMAGE_D… in GetParameter_JPEGDec()
1477 OMX_CUSTOM_IMAGE_DECODE_SUBREGION* pSubRegionDecode = pCompParam; in SetParameter_JPEGDec() local
1478 OMX_MEMCPY_CHECK(pSubRegionDecode); in SetParameter_JPEGDec()
1479 OMX_MEMCPY_CHECK(pComponentPrivate->pSubRegionDecode); in SetParameter_JPEGDec()
[all …]
DOMX_JpegDec_Utils.c1770 ptJPGDecUALGInBufParam->ulXOrg = (int)pComponentPrivate->pSubRegionDecode->nXOrg; in HandleDataBuf_FromAppJpegDec()
1771 ptJPGDecUALGInBufParam->ulYOrg = (int)pComponentPrivate->pSubRegionDecode->nYOrg; in HandleDataBuf_FromAppJpegDec()
1772 ptJPGDecUALGInBufParam->ulXLength = (int)pComponentPrivate->pSubRegionDecode->nXLength; in HandleDataBuf_FromAppJpegDec()
1773 ptJPGDecUALGInBufParam->ulYLength = (int)pComponentPrivate->pSubRegionDecode->nYLength; in HandleDataBuf_FromAppJpegDec()
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/inc/
DOMX_JpegDec_Utils.h473 OMX_CUSTOM_IMAGE_DECODE_SUBREGION* pSubRegionDecode; member