Searched defs:Al (Results 1 - 6 of 6) sorted by relevance

/external/jpeg/
H A Djcmaster.c137 int Ss, Se, Ah, Al; local
142 /* -1 until that coefficient has been seen; then last Al for it */
185 Al = scanptr->Al;
188 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
191 * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
201 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
221 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
224 last_bitpos_ptr[coefi] = Al;
[all...]
H A Djcparam.c476 int Ss, int Se, int Ah, int Al)
484 scanptr->Al = Al;
491 int Ss, int Se, int Ah, int Al)
502 scanptr->Al = Al;
509 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
521 scanptr->Al = Al;
525 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, Al);
475 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
490 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
H A Djdphuff.c115 /* Successive approximation refinement scan: must have Al = Ah-1. */
116 if (cinfo->Al != cinfo->Ah-1)
119 if (cinfo->Al > 13) /* need not check for < 0 */
121 /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
123 * accept. Note: large Al values could result in out-of-range DC
129 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
143 coef_bit_ptr[coefi] = cinfo->Al;
288 int Al = cinfo->Al; local
335 (*block)[0] = (JCOEF) (s << Al);
360 int Al = cinfo->Al; local
[all...]
H A Djcphuff.c383 int Al = cinfo->Al; local
402 /* Compute the DC value after the required point transform by Al.
405 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
471 int Al = cinfo->Al; local
494 /* We must apply the point transform by Al. For AC coefficients this
501 temp >>= Al; /* apply the point transform */ local
505 temp >>= Al; /* apply the point transform */ local
576 int Al local
627 int Al = cinfo->Al; local
654 temp >>= Al; /* apply the point transform */ local
[all...]
H A Djdcoefct.c56 /* When doing block smoothing, we latch coefficient Al values here */
732 int Al, pred; local
828 if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
832 if (Al > 0 && pred >= (1<<Al))
833 pred = (1<<Al)-1;
836 if (Al > 0 && pred >= (1<<Al))
837 pred = (1<<Al)-1;
843 if ((Al
[all...]
H A Djpeglib.h188 int Ah, Al; /* progressive JPEG successive approx. parms */ member in struct:__anon3007
394 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_compress_struct
518 int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
616 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_decompress_struct

Completed in 151 milliseconds