Home
last modified time | relevance | path

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

/external/libjpeg-turbo/
Dtransupp.h153 JDIMENSION crop_xoffset; /* X offset of selected region */ member
Dtransupp.c1429 if (!jt_read_integer(&spec, &info->crop_xoffset)) in jtransform_parse_crop_spec()
1582 info->crop_xoffset = 0; /* default to +0 */ in jtransform_request_workspace()
1586 if (info->crop_xoffset >= info->output_width) in jtransform_request_workspace()
1588 info->crop_width = info->output_width - info->crop_xoffset; in jtransform_request_workspace()
1594 info->crop_xoffset >= info->crop_width || in jtransform_request_workspace()
1595 info->crop_xoffset > info->crop_width - info->output_width) in jtransform_request_workspace()
1598 if (info->crop_xoffset >= info->output_width || in jtransform_request_workspace()
1600 info->crop_xoffset > info->output_width - info->crop_width) in jtransform_request_workspace()
1625 xoffset = info->crop_xoffset; in jtransform_request_workspace()
1627 xoffset = info->crop_width - info->output_width - info->crop_xoffset; in jtransform_request_workspace()
[all …]
Dturbojpeg.c1943 xinfo[i].crop_xoffset = t[i].r.x; xinfo[i].crop_xoffset_set = JCROP_POS; in tjTransform()