Searched refs:Ah (Results 1 - 8 of 8) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djcmaster.c141 int Ss, Se, Ah, Al; local
188 Ah = scanptr->Ah;
192 /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
205 Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
221 if (Ah != 0)
225 if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
234 if (Ss != 0 || Se != DCTSIZE2-1 || Ah !
[all...]
H A Djcparam.c480 int Ss, int Se, int Ah, int Al)
487 scanptr->Ah = Ah;
495 int Ss, int Se, int Ah, int Al)
505 scanptr->Ah = Ah;
513 fill_dc_scans (jpeg_scan_info * scanptr, int ncomps, int Ah, int Al) argument
524 scanptr->Ah = Ah;
529 scanptr = fill_scans(scanptr, ncomps, 0, 0, Ah, A
479 fill_a_scan(jpeg_scan_info * scanptr, int ci, int Ss, int Se, int Ah, int Al) argument
494 fill_scans(jpeg_scan_info * scanptr, int ncomps, int Ss, int Se, int Ah, int Al) argument
[all...]
H A Djdphuff.c119 if (cinfo->Ah != 0) {
120 /* Successive approximation refinement scan: must have Al = Ah-1. */
121 if (cinfo->Al != cinfo->Ah-1)
134 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
146 if (cinfo->Ah != expected)
153 if (cinfo->Ah == 0) {
171 if (cinfo->Ah == 0) { /* DC refinement needs no table */
H A Djcmarker.c337 if (cinfo->Ah != 0 && !cinfo->arith_code)
348 emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al);
576 if (cinfo->Ah == 0) /* DC needs no table for refinement scan */
H A Djcphuff.c125 if (cinfo->Ah == 0) {
156 if (cinfo->Ah != 0) /* DC refinement needs no table */
793 if (cinfo->Ah != 0) /* DC refinement needs no table */
H A Djpeglib.h192 int Ah, Al; /* progressive JPEG successive approx. parms */ member in struct:__anon988
394 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_compress_struct
612 int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */ member in struct:jpeg_decompress_struct
H A Djdhuff.c96 /* Check that the scan parameters Ss, Se, Ah/Al are OK for sequential JPEG.
101 cinfo->Ah != 0 || cinfo->Al != 0)
H A Djdmarker.c360 /* Collect the additional scan parameters Ss, Se, Ah/Al. */
366 cinfo->Ah = (c >> 4) & 15;
370 cinfo->Ah, cinfo->Al);

Completed in 99 milliseconds