Home
last modified time | relevance | path

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

/aosp12/packages/services/BuiltInPrintService/jni/plugins/
H A Dwprint_image_platform.c39 const image_decode_ifc_t *decode_ifc = wprint_image_get_decode_ifc(image_info); in wprint_image_init() local
40 if ((decode_ifc != NULL) && (decode_ifc->init != NULL)) { in wprint_image_init()
41 decode_ifc->init(image_info); in wprint_image_init()
42 image_info->decode_ifc = decode_ifc; in wprint_image_init()
H A Dwprint_image.c68 const image_decode_ifc_t *decode_ifc = image_info->decode_ifc; in wprint_image_get_info() local
70 if ((decode_ifc != NULL) && (decode_ifc->get_hdr != NULL)) { in wprint_image_get_info()
193 const image_decode_ifc_t *decode_ifc = image_info->decode_ifc; in wprint_image_set_output_properties() local
229 if ((decode_ifc != NULL) && (decode_ifc->supports_subsampling(image_info) == OK)) { in wprint_image_set_output_properties()
251 decode_ifc->cleanup(image_info); in wprint_image_set_output_properties()
252 decode_ifc->get_hdr(image_info); in wprint_image_set_output_properties()
619 const image_decode_ifc_t *decode_ifc = image_info->decode_ifc; in _decode_stripe() local
620 if ((decode_ifc == NULL) || (decode_ifc->decode_row == NULL)) { in _decode_stripe()
1068 const image_decode_ifc_t *decode_ifc = image_info->decode_ifc; in wprint_image_cleanup() local
1070 if ((decode_ifc != NULL) && (decode_ifc->cleanup != NULL)) { in wprint_image_cleanup()
[all …]
H A Dwprint_image.h75 const struct _image_decode_ifc_st *decode_ifc; member