From: DRC Date: Mon, 22 Feb 2016 16:00:19 +0000 (-0600) Subject: Fix v7/v8-compatible build X-Git-Tag: 1.4.90~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=025c1f66de6487eb604297f38364410411acaf77;p=libjpeg-turbo Fix v7/v8-compatible build Broken by 3ab68cf563f6edc2608c085f5c8b2d5d5c61157e Fixes #60 --- diff --git a/jdapistd.c b/jdapistd.c index 06076cb..37afc84 100644 --- a/jdapistd.c +++ b/jdapistd.c @@ -190,7 +190,7 @@ jpeg_crop_scanline (j_decompress_ptr cinfo, JDIMENSION *xoffset, * single-pass decompression case, allowing us to use the same MCU column * width for all of the components. */ - align = cinfo->min_DCT_scaled_size * cinfo->max_h_samp_factor; + align = cinfo->_min_DCT_scaled_size * cinfo->max_h_samp_factor; /* Adjust xoffset to the nearest iMCU boundary <= the requested value */ input_xoffset = *xoffset;