Home
last modified time | relevance | path

Searched refs:pQuantTable (Results 1 – 3 of 3) sorted by relevance

/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
DOMX_JpegEncoder.c1113 …OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE *pQuantTable = (OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE *)pCom… in JPEGENC_GetParameter() local
1114 if (pQuantTable->eQuantizationTable == OMX_IMAGE_QuantizationTableLuma) { in JPEGENC_GetParameter()
1115 …memcpy(pQuantTable, pComponentPrivate->pCustomLumaQuantTable, sizeof(OMX_IMAGE_PARAM_QUANTIZATIONT… in JPEGENC_GetParameter()
1117 else if (pQuantTable->eQuantizationTable == OMX_IMAGE_QuantizationTableChroma) { in JPEGENC_GetParameter()
1118 …memcpy(pQuantTable, pComponentPrivate->pCustomChromaQuantTable, sizeof(OMX_IMAGE_PARAM_QUANTIZATIO… in JPEGENC_GetParameter()
1268 …OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE *pQuantTable = (OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE *)pCom… in JPEGENC_SetParameter() local
1269 if (pQuantTable->eQuantizationTable == OMX_IMAGE_QuantizationTableLuma) { in JPEGENC_SetParameter()
1270 …memcpy(pComponentPrivate->pCustomLumaQuantTable, pQuantTable, sizeof(OMX_IMAGE_PARAM_QUANTIZATIONT… in JPEGENC_SetParameter()
1274 else if (pQuantTable->eQuantizationTable == OMX_IMAGE_QuantizationTableChroma) { in JPEGENC_SetParameter()
1275 …memcpy(pComponentPrivate->pCustomChromaQuantTable, pQuantTable, sizeof(OMX_IMAGE_PARAM_QUANTIZATIO… in JPEGENC_SetParameter()
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
DOMX_JpegDecoder.c662 OMX_MALLOC(pComponentPrivate->pQuantTable, sizeof(OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE)); in OMX_ComponentInit()
663 OMX_CONF_INIT_STRUCT(pComponentPrivate->pQuantTable,OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE); in OMX_ComponentInit()
664 pComponentPrivate->pQuantTable->eQuantizationTable = OMX_IMAGE_QuantizationTableLuma; in OMX_ComponentInit()
1235 …memcpy(ComponentParameterStructure, pComponentPrivate->pQuantTable, sizeof(OMX_IMAGE_PARAM_QUANTIZ… in GetParameter_JPEGDec()
1440 OMX_MEMCPY_CHECK(pComponentPrivate->pQuantTable); in SetParameter_JPEGDec()
1441 …memcpy(pComponentPrivate->pQuantTable, pQuantizationTable, sizeof(OMX_IMAGE_PARAM_QUANTIZATIONTABL… in SetParameter_JPEGDec()
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/inc/
DOMX_JpegDec_Utils.h453 OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE* pQuantTable; member