Home | History | Annotate | Download | only in src

Lines Matching refs:eFormat

52 #define JPEG_MCU_NUMBER(width, height, eFormat) \
54 (((eFormat) == IMG_CODEC_YV16) ? 2 : 1))
56 #define JPEG_MCU_PER_CORE(width, height, core, eFormat) \
57 ((core) > 1 ? (((uint32_t)JPEG_MCU_NUMBER(width, height, eFormat) + (core) - 1) / (core))\
58 :(uint32_t)JPEG_MCU_NUMBER(width, height, eFormat))
60 #define JPEG_SCANNING_COUNT(width, height, core, eFormat) \
61 ((uint32_t)(JPEG_MCU_PER_CORE(width, height, core, eFormat) > JPEG_MAX_MCU_PER_SCAN) ? \
62 ((uint32_t)(JPEG_MCU_NUMBER(width, height, eFormat) + JPEG_MAX_MCU_PER_SCAN - 1) \
66 #define JPEG_MCU_PER_SCAN(width, height, core, eFormat) \
67 ((JPEG_MCU_PER_CORE(width, height, core, eFormat) > JPEG_MAX_MCU_PER_SCAN) ? \
68 JPEG_MAX_MCU_PER_SCAN : JPEG_MCU_PER_CORE(width, height, core, eFormat))
71 #define JPEG_CODED_BUF_SEGMENT_SIZE(total, width, height, core, eFormat) \
73 JPEG_SCANNING_COUNT(ctx->Width, ctx->Height, ctx->NumCores, eFormat) \
211 IMG_FORMAT eFormat; //!< Format of the surface
608 IMG_FORMAT eFormat;
639 void SetCompInfoFromFormat(IMG_FORMAT eFormat, IMG_UINT32 ui32Width, IMG_UINT32 ui32Height, IMG_JPEG_INFO *psJpegInfo);
654 //IMG_ERRORCODE Legacy_IMG_JPEG_EncoderInitialise(IMG_UINT16 ui16Width, IMG_UINT16 ui16Height, IMG_FORMAT eFormat, LEGACY_JPEG_ENCODER_CONTEXT ** ppContext);
668 //IMG_ERRORCODE IMG_JPEG_EncoderInitialise(IMG_HENC_CONTEXT hEncContext,IMG_UINT16 ui16Width, IMG_UINT16 ui16Height, IMG_FORMAT eFormat, TOPAZSC_JPEG_ENCODER_CONTEXT ** ppContext);