Lines Matching refs:xinfo

1829   jpeg_transform_info *xinfo = NULL;  in tjTransform()  local
1848 if ((xinfo = in tjTransform()
1851 MEMZERO(xinfo, sizeof(jpeg_transform_info) * n); in tjTransform()
1861 xinfo[i].transform = xformtypes[t[i].op]; in tjTransform()
1862 xinfo[i].perfect = (t[i].options & TJXOPT_PERFECT) ? 1 : 0; in tjTransform()
1863 xinfo[i].trim = (t[i].options & TJXOPT_TRIM) ? 1 : 0; in tjTransform()
1864 xinfo[i].force_grayscale = (t[i].options & TJXOPT_GRAY) ? 1 : 0; in tjTransform()
1865 xinfo[i].crop = (t[i].options & TJXOPT_CROP) ? 1 : 0; in tjTransform()
1866 if (n != 1 && t[i].op == TJXOP_HFLIP) xinfo[i].slow_hflip = 1; in tjTransform()
1867 else xinfo[i].slow_hflip = 0; in tjTransform()
1869 if (xinfo[i].crop) { in tjTransform()
1870 xinfo[i].crop_xoffset = t[i].r.x; xinfo[i].crop_xoffset_set = JCROP_POS; in tjTransform()
1871 xinfo[i].crop_yoffset = t[i].r.y; xinfo[i].crop_yoffset_set = JCROP_POS; in tjTransform()
1873 xinfo[i].crop_width = t[i].r.w; xinfo[i].crop_width_set = JCROP_POS; in tjTransform()
1875 xinfo[i].crop_width = JCROP_UNSET; in tjTransform()
1877 xinfo[i].crop_height = t[i].r.h; xinfo[i].crop_height_set = JCROP_POS; in tjTransform()
1879 xinfo[i].crop_height = JCROP_UNSET; in tjTransform()
1891 if (!jtransform_request_workspace(dinfo, &xinfo[i])) in tjTransform()
1894 if (xinfo[i].crop) { in tjTransform()
1895 if ((t[i].r.x % xinfo[i].iMCU_sample_width) != 0 || in tjTransform()
1896 (t[i].r.y % xinfo[i].iMCU_sample_height) != 0) { in tjTransform()
1900 xinfo[i].iMCU_sample_width, xinfo[i].iMCU_sample_height); in tjTransform()
1911 if (!xinfo[i].crop) { in tjTransform()
1914 w = xinfo[i].crop_width; h = xinfo[i].crop_height; in tjTransform()
1922 dstcoefs = jtransform_adjust_parameters(dinfo, cinfo, srccoefs, &xinfo[i]); in tjTransform()
1931 jtransform_execute_transformation(dinfo, cinfo, srccoefs, &xinfo[i]); in tjTransform()
1969 if (xinfo) free(xinfo); in tjTransform()