1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105 |
- #define JPEG_INTERNALS
- #include "jinclude.h"
- #include "jpeglib.h"
- #include "jsimd.h"
- #include "jconfigint.h"
- #include <limits.h>
- #ifdef HAVE_INTRIN_H
- #include <intrin.h>
- #ifdef _MSC_VER
- #ifdef HAVE_BITSCANFORWARD64
- #pragma intrinsic(_BitScanForward64)
- #endif
- #ifdef HAVE_BITSCANFORWARD
- #pragma intrinsic(_BitScanForward)
- #endif
- #endif
- #endif
- #ifdef C_PROGRESSIVE_SUPPORTED
- #if defined(__GNUC__) && (defined(__arm__) || defined(__aarch64__))
- #if !defined(__thumb__) || defined(__thumb2__)
- #define USE_CLZ_INTRINSIC
- #endif
- #endif
- #ifdef USE_CLZ_INTRINSIC
- #define JPEG_NBITS_NONZERO(x) (32 - __builtin_clz(x))
- #define JPEG_NBITS(x) (x ? JPEG_NBITS_NONZERO(x) : 0)
- #else
- #include "jpeg_nbits_table.h"
- #define JPEG_NBITS(x) (jpeg_nbits_table[x])
- #define JPEG_NBITS_NONZERO(x) JPEG_NBITS(x)
- #endif
- typedef struct {
- struct jpeg_entropy_encoder pub;
-
- void (*AC_first_prepare) (const JCOEF *block,
- const int *jpeg_natural_order_start, int Sl,
- int Al, JCOEF *values, size_t *zerobits);
-
- int (*AC_refine_prepare) (const JCOEF *block,
- const int *jpeg_natural_order_start, int Sl,
- int Al, JCOEF *absvalues, size_t *bits);
-
- boolean gather_statistics;
-
- JOCTET *next_output_byte;
- size_t free_in_buffer;
- size_t put_buffer;
- int put_bits;
- j_compress_ptr cinfo;
-
- int last_dc_val[MAX_COMPS_IN_SCAN];
-
- int ac_tbl_no;
- unsigned int EOBRUN;
- unsigned int BE;
- char *bit_buffer;
-
- unsigned int restarts_to_go;
- int next_restart_num;
-
- c_derived_tbl *derived_tbls[NUM_HUFF_TBLS];
-
- long *count_ptrs[NUM_HUFF_TBLS];
- } phuff_entropy_encoder;
- typedef phuff_entropy_encoder *phuff_entropy_ptr;
- #define MAX_CORR_BITS 1000
- #ifdef RIGHT_SHIFT_IS_UNSIGNED
- #define ISHIFT_TEMPS int ishift_temp;
- #define IRIGHT_SHIFT(x, shft) \
- ((ishift_temp = (x)) < 0 ? \
- (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \
- (ishift_temp >> (shft)))
- #else
- #define ISHIFT_TEMPS
- #define IRIGHT_SHIFT(x, shft) ((x) >> (shft))
- #endif
- #define PAD(v, p) ((v + (p) - 1) & (~((p) - 1)))
- METHODDEF(boolean) encode_mcu_DC_first(j_compress_ptr cinfo,
- JBLOCKROW *MCU_data);
- METHODDEF(void) encode_mcu_AC_first_prepare
- (const JCOEF *block, const int *jpeg_natural_order_start, int Sl, int Al,
- JCOEF *values, size_t *zerobits);
- METHODDEF(boolean) encode_mcu_AC_first(j_compress_ptr cinfo,
- JBLOCKROW *MCU_data);
- METHODDEF(boolean) encode_mcu_DC_refine(j_compress_ptr cinfo,
- JBLOCKROW *MCU_data);
- METHODDEF(int) encode_mcu_AC_refine_prepare
- (const JCOEF *block, const int *jpeg_natural_order_start, int Sl, int Al,
- JCOEF *absvalues, size_t *bits);
- METHODDEF(boolean) encode_mcu_AC_refine(j_compress_ptr cinfo,
- JBLOCKROW *MCU_data);
- METHODDEF(void) finish_pass_phuff(j_compress_ptr cinfo);
- METHODDEF(void) finish_pass_gather_phuff(j_compress_ptr cinfo);
- INLINE
- METHODDEF(int)
- count_zeroes(size_t *x)
- {
- int result;
- #if defined(HAVE_BUILTIN_CTZL)
- result = __builtin_ctzl(*x);
- *x >>= result;
- #elif defined(HAVE_BITSCANFORWARD64)
- _BitScanForward64(&result, *x);
- *x >>= result;
- #elif defined(HAVE_BITSCANFORWARD)
- _BitScanForward(&result, *x);
- *x >>= result;
- #else
- result = 0;
- while ((*x & 1) == 0) {
- ++result;
- *x >>= 1;
- }
- #endif
- return result;
- }
- METHODDEF(void)
- start_pass_phuff(j_compress_ptr cinfo, boolean gather_statistics)
- {
- phuff_entropy_ptr entropy = (phuff_entropy_ptr)cinfo->entropy;
- boolean is_DC_band;
- int ci, tbl;
- jpeg_component_info *compptr;
- entropy->cinfo = cinfo;
- entropy->gather_statistics = gather_statistics;
- is_DC_band = (cinfo->Ss == 0);
-
-
- if (cinfo->Ah == 0) {
- if (is_DC_band)
- entropy->pub.encode_mcu = encode_mcu_DC_first;
- else
- entropy->pub.encode_mcu = encode_mcu_AC_first;
- if (jsimd_can_encode_mcu_AC_first_prepare())
- entropy->AC_first_prepare = jsimd_encode_mcu_AC_first_prepare;
- else
- entropy->AC_first_prepare = encode_mcu_AC_first_prepare;
- } else {
- if (is_DC_band)
- entropy->pub.encode_mcu = encode_mcu_DC_refine;
- else {
- entropy->pub.encode_mcu = encode_mcu_AC_refine;
- if (jsimd_can_encode_mcu_AC_refine_prepare())
- entropy->AC_refine_prepare = jsimd_encode_mcu_AC_refine_prepare;
- else
- entropy->AC_refine_prepare = encode_mcu_AC_refine_prepare;
-
- if (entropy->bit_buffer == NULL)
- entropy->bit_buffer = (char *)
- (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
- MAX_CORR_BITS * sizeof(char));
- }
- }
- if (gather_statistics)
- entropy->pub.finish_pass = finish_pass_gather_phuff;
- else
- entropy->pub.finish_pass = finish_pass_phuff;
-
- for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
- compptr = cinfo->cur_comp_info[ci];
-
- entropy->last_dc_val[ci] = 0;
-
- if (is_DC_band) {
- if (cinfo->Ah != 0)
- continue;
- tbl = compptr->dc_tbl_no;
- } else {
- entropy->ac_tbl_no = tbl = compptr->ac_tbl_no;
- }
- if (gather_statistics) {
-
-
- if (tbl < 0 || tbl >= NUM_HUFF_TBLS)
- ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tbl);
-
-
- if (entropy->count_ptrs[tbl] == NULL)
- entropy->count_ptrs[tbl] = (long *)
- (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
- 257 * sizeof(long));
- MEMZERO(entropy->count_ptrs[tbl], 257 * sizeof(long));
- } else {
-
-
- jpeg_make_c_derived_tbl(cinfo, is_DC_band, tbl,
- &entropy->derived_tbls[tbl]);
- }
- }
-
- entropy->EOBRUN = 0;
- entropy->BE = 0;
-
- entropy->put_buffer = 0;
- entropy->put_bits = 0;
-
- entropy->restarts_to_go = cinfo->restart_interval;
- entropy->next_restart_num = 0;
- }
- #define emit_byte(entropy, val) { \
- *(entropy)->next_output_byte++ = (JOCTET)(val); \
- if (--(entropy)->free_in_buffer == 0) \
- dump_buffer(entropy); \
- }
- LOCAL(void)
- dump_buffer(phuff_entropy_ptr entropy)
- {
- struct jpeg_destination_mgr *dest = entropy->cinfo->dest;
- if (!(*dest->empty_output_buffer) (entropy->cinfo))
- ERREXIT(entropy->cinfo, JERR_CANT_SUSPEND);
-
- entropy->next_output_byte = dest->next_output_byte;
- entropy->free_in_buffer = dest->free_in_buffer;
- }
- LOCAL(void)
- emit_bits(phuff_entropy_ptr entropy, unsigned int code, int size)
- {
-
- register size_t put_buffer = (size_t)code;
- register int put_bits = entropy->put_bits;
-
- if (size == 0)
- ERREXIT(entropy->cinfo, JERR_HUFF_MISSING_CODE);
- if (entropy->gather_statistics)
- return;
- put_buffer &= (((size_t)1) << size) - 1;
- put_bits += size;
- put_buffer <<= 24 - put_bits;
- put_buffer |= entropy->put_buffer;
- while (put_bits >= 8) {
- int c = (int)((put_buffer >> 16) & 0xFF);
- emit_byte(entropy, c);
- if (c == 0xFF) {
- emit_byte(entropy, 0);
- }
- put_buffer <<= 8;
- put_bits -= 8;
- }
- entropy->put_buffer = put_buffer;
- entropy->put_bits = put_bits;
- }
- LOCAL(void)
- flush_bits(phuff_entropy_ptr entropy)
- {
- emit_bits(entropy, 0x7F, 7);
- entropy->put_buffer = 0;
- entropy->put_bits = 0;
- }
- LOCAL(void)
- emit_symbol(phuff_entropy_ptr entropy, int tbl_no, int symbol)
- {
- if (entropy->gather_statistics)
- entropy->count_ptrs[tbl_no][symbol]++;
- else {
- c_derived_tbl *tbl = entropy->derived_tbls[tbl_no];
- emit_bits(entropy, tbl->ehufco[symbol], tbl->ehufsi[symbol]);
- }
- }
- LOCAL(void)
- emit_buffered_bits(phuff_entropy_ptr entropy, char *bufstart,
- unsigned int nbits)
- {
- if (entropy->gather_statistics)
- return;
- while (nbits > 0) {
- emit_bits(entropy, (unsigned int)(*bufstart), 1);
- bufstart++;
- nbits--;
- }
- }
- LOCAL(void)
- emit_eobrun(phuff_entropy_ptr entropy)
- {
- register int temp, nbits;
- if (entropy->EOBRUN > 0) {
- temp = entropy->EOBRUN;
- nbits = JPEG_NBITS_NONZERO(temp) - 1;
-
- if (nbits > 14)
- ERREXIT(entropy->cinfo, JERR_HUFF_MISSING_CODE);
- emit_symbol(entropy, entropy->ac_tbl_no, nbits << 4);
- if (nbits)
- emit_bits(entropy, entropy->EOBRUN, nbits);
- entropy->EOBRUN = 0;
-
- emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE);
- entropy->BE = 0;
- }
- }
- LOCAL(void)
- emit_restart(phuff_entropy_ptr entropy, int restart_num)
- {
- int ci;
- emit_eobrun(entropy);
- if (!entropy->gather_statistics) {
- flush_bits(entropy);
- emit_byte(entropy, 0xFF);
- emit_byte(entropy, JPEG_RST0 + restart_num);
- }
- if (entropy->cinfo->Ss == 0) {
-
- for (ci = 0; ci < entropy->cinfo->comps_in_scan; ci++)
- entropy->last_dc_val[ci] = 0;
- } else {
-
- entropy->EOBRUN = 0;
- entropy->BE = 0;
- }
- }
- METHODDEF(boolean)
- encode_mcu_DC_first(j_compress_ptr cinfo, JBLOCKROW *MCU_data)
- {
- phuff_entropy_ptr entropy = (phuff_entropy_ptr)cinfo->entropy;
- register int temp, temp2, temp3;
- register int nbits;
- int blkn, ci;
- int Al = cinfo->Al;
- JBLOCKROW block;
- jpeg_component_info *compptr;
- ISHIFT_TEMPS
- entropy->next_output_byte = cinfo->dest->next_output_byte;
- entropy->free_in_buffer = cinfo->dest->free_in_buffer;
-
- if (cinfo->restart_interval)
- if (entropy->restarts_to_go == 0)
- emit_restart(entropy, entropy->next_restart_num);
-
- for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
- block = MCU_data[blkn];
- ci = cinfo->MCU_membership[blkn];
- compptr = cinfo->cur_comp_info[ci];
-
- temp2 = IRIGHT_SHIFT((int)((*block)[0]), Al);
-
- temp = temp2 - entropy->last_dc_val[ci];
- entropy->last_dc_val[ci] = temp2;
-
-
- temp3 = temp >> (CHAR_BIT * sizeof(int) - 1);
- temp ^= temp3;
- temp -= temp3;
-
- temp2 = temp ^ temp3;
-
- nbits = JPEG_NBITS(temp);
-
- if (nbits > MAX_COEF_BITS + 1)
- ERREXIT(cinfo, JERR_BAD_DCT_COEF);
-
- emit_symbol(entropy, compptr->dc_tbl_no, nbits);
-
-
- if (nbits)
- emit_bits(entropy, (unsigned int)temp2, nbits);
- }
- cinfo->dest->next_output_byte = entropy->next_output_byte;
- cinfo->dest->free_in_buffer = entropy->free_in_buffer;
-
- if (cinfo->restart_interval) {
- if (entropy->restarts_to_go == 0) {
- entropy->restarts_to_go = cinfo->restart_interval;
- entropy->next_restart_num++;
- entropy->next_restart_num &= 7;
- }
- entropy->restarts_to_go--;
- }
- return TRUE;
- }
- #define COMPUTE_ABSVALUES_AC_FIRST(Sl) { \
- for (k = 0; k < Sl; k++) { \
- temp = block[jpeg_natural_order_start[k]]; \
- if (temp == 0) \
- continue; \
-
- \
- temp2 = temp >> (CHAR_BIT * sizeof(int) - 1); \
- temp ^= temp2; \
- temp -= temp2; \
- temp >>= Al; \
- \
- if (temp == 0) \
- continue; \
- \
- temp2 ^= temp; \
- values[k] = temp; \
- values[k + DCTSIZE2] = temp2; \
- zerobits |= ((size_t)1U) << k; \
- } \
- }
- METHODDEF(void)
- encode_mcu_AC_first_prepare(const JCOEF *block,
- const int *jpeg_natural_order_start, int Sl,
- int Al, JCOEF *values, size_t *bits)
- {
- register int k, temp, temp2;
- size_t zerobits = 0U;
- int Sl0 = Sl;
- #if SIZEOF_SIZE_T == 4
- if (Sl0 > 32)
- Sl0 = 32;
- #endif
- COMPUTE_ABSVALUES_AC_FIRST(Sl0);
- bits[0] = zerobits;
- #if SIZEOF_SIZE_T == 4
- zerobits = 0U;
- if (Sl > 32) {
- Sl -= 32;
- jpeg_natural_order_start += 32;
- values += 32;
- COMPUTE_ABSVALUES_AC_FIRST(Sl);
- }
- bits[1] = zerobits;
- #endif
- }
- #define ENCODE_COEFS_AC_FIRST(label) { \
- while (zerobits) { \
- r = count_zeroes(&zerobits); \
- cvalue += r; \
- label \
- temp = cvalue[0]; \
- temp2 = cvalue[DCTSIZE2]; \
- \
- \
- while (r > 15) { \
- emit_symbol(entropy, entropy->ac_tbl_no, 0xF0); \
- r -= 16; \
- } \
- \
- \
- nbits = JPEG_NBITS_NONZERO(temp); \
- \
- if (nbits > MAX_COEF_BITS) \
- ERREXIT(cinfo, JERR_BAD_DCT_COEF); \
- \
- \
- emit_symbol(entropy, entropy->ac_tbl_no, (r << 4) + nbits); \
- \
- \
- \
- emit_bits(entropy, (unsigned int)temp2, nbits); \
- \
- cvalue++; \
- zerobits >>= 1; \
- } \
- }
- METHODDEF(boolean)
- encode_mcu_AC_first(j_compress_ptr cinfo, JBLOCKROW *MCU_data)
- {
- phuff_entropy_ptr entropy = (phuff_entropy_ptr)cinfo->entropy;
- register int temp, temp2;
- register int nbits, r;
- int Sl = cinfo->Se - cinfo->Ss + 1;
- int Al = cinfo->Al;
- JCOEF values_unaligned[2 * DCTSIZE2 + 15];
- JCOEF *values;
- const JCOEF *cvalue;
- size_t zerobits;
- size_t bits[8 / SIZEOF_SIZE_T];
- entropy->next_output_byte = cinfo->dest->next_output_byte;
- entropy->free_in_buffer = cinfo->dest->free_in_buffer;
-
- if (cinfo->restart_interval)
- if (entropy->restarts_to_go == 0)
- emit_restart(entropy, entropy->next_restart_num);
- #ifdef WITH_SIMD
- cvalue = values = (JCOEF *)PAD((size_t)values_unaligned, 16);
- #else
-
- cvalue = values = values_unaligned;
- #endif
-
- entropy->AC_first_prepare(MCU_data[0][0], jpeg_natural_order + cinfo->Ss,
- Sl, Al, values, bits);
- zerobits = bits[0];
- #if SIZEOF_SIZE_T == 4
- zerobits |= bits[1];
- #endif
-
- if (zerobits && (entropy->EOBRUN > 0))
- emit_eobrun(entropy);
- #if SIZEOF_SIZE_T == 4
- zerobits = bits[0];
- #endif
-
- ENCODE_COEFS_AC_FIRST((void)0;);
- #if SIZEOF_SIZE_T == 4
- zerobits = bits[1];
- if (zerobits) {
- int diff = ((values + DCTSIZE2 / 2) - cvalue);
- r = count_zeroes(&zerobits);
- r += diff;
- cvalue += r;
- goto first_iter_ac_first;
- }
- ENCODE_COEFS_AC_FIRST(first_iter_ac_first:);
- #endif
- if (cvalue < (values + Sl)) {
- entropy->EOBRUN++;
- if (entropy->EOBRUN == 0x7FFF)
- emit_eobrun(entropy);
- }
- cinfo->dest->next_output_byte = entropy->next_output_byte;
- cinfo->dest->free_in_buffer = entropy->free_in_buffer;
-
- if (cinfo->restart_interval) {
- if (entropy->restarts_to_go == 0) {
- entropy->restarts_to_go = cinfo->restart_interval;
- entropy->next_restart_num++;
- entropy->next_restart_num &= 7;
- }
- entropy->restarts_to_go--;
- }
- return TRUE;
- }
- METHODDEF(boolean)
- encode_mcu_DC_refine(j_compress_ptr cinfo, JBLOCKROW *MCU_data)
- {
- phuff_entropy_ptr entropy = (phuff_entropy_ptr)cinfo->entropy;
- register int temp;
- int blkn;
- int Al = cinfo->Al;
- JBLOCKROW block;
- entropy->next_output_byte = cinfo->dest->next_output_byte;
- entropy->free_in_buffer = cinfo->dest->free_in_buffer;
-
- if (cinfo->restart_interval)
- if (entropy->restarts_to_go == 0)
- emit_restart(entropy, entropy->next_restart_num);
-
- for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
- block = MCU_data[blkn];
-
- temp = (*block)[0];
- emit_bits(entropy, (unsigned int)(temp >> Al), 1);
- }
- cinfo->dest->next_output_byte = entropy->next_output_byte;
- cinfo->dest->free_in_buffer = entropy->free_in_buffer;
-
- if (cinfo->restart_interval) {
- if (entropy->restarts_to_go == 0) {
- entropy->restarts_to_go = cinfo->restart_interval;
- entropy->next_restart_num++;
- entropy->next_restart_num &= 7;
- }
- entropy->restarts_to_go--;
- }
- return TRUE;
- }
- #define COMPUTE_ABSVALUES_AC_REFINE(Sl, koffset) { \
-
- \
- for (k = 0; k < Sl; k++) { \
- temp = block[jpeg_natural_order_start[k]]; \
-
- \
- temp2 = temp >> (CHAR_BIT * sizeof(int) - 1); \
- temp ^= temp2; \
- temp -= temp2; \
- temp >>= Al; \
- if (temp != 0) { \
- zerobits |= ((size_t)1U) << k; \
- signbits |= ((size_t)(temp2 + 1)) << k; \
- } \
- absvalues[k] = (JCOEF)temp; \
- if (temp == 1) \
- EOB = k + koffset; \
- } \
- }
- METHODDEF(int)
- encode_mcu_AC_refine_prepare(const JCOEF *block,
- const int *jpeg_natural_order_start, int Sl,
- int Al, JCOEF *absvalues, size_t *bits)
- {
- register int k, temp, temp2;
- int EOB = 0;
- size_t zerobits = 0U, signbits = 0U;
- int Sl0 = Sl;
- #if SIZEOF_SIZE_T == 4
- if (Sl0 > 32)
- Sl0 = 32;
- #endif
- COMPUTE_ABSVALUES_AC_REFINE(Sl0, 0);
- bits[0] = zerobits;
- #if SIZEOF_SIZE_T == 8
- bits[1] = signbits;
- #else
- bits[2] = signbits;
- zerobits = 0U;
- signbits = 0U;
- if (Sl > 32) {
- Sl -= 32;
- jpeg_natural_order_start += 32;
- absvalues += 32;
- COMPUTE_ABSVALUES_AC_REFINE(Sl, 32);
- }
- bits[1] = zerobits;
- bits[3] = signbits;
- #endif
- return EOB;
- }
- #define ENCODE_COEFS_AC_REFINE(label) { \
- while (zerobits) { \
- int idx = count_zeroes(&zerobits); \
- r += idx; \
- cabsvalue += idx; \
- signbits >>= idx; \
- label \
- \
- while (r > 15 && (cabsvalue <= EOBPTR)) { \
- \
- emit_eobrun(entropy); \
- \
- emit_symbol(entropy, entropy->ac_tbl_no, 0xF0); \
- r -= 16; \
- \
- emit_buffered_bits(entropy, BR_buffer, BR); \
- BR_buffer = entropy->bit_buffer; \
- BR = 0; \
- } \
- \
- temp = *cabsvalue++; \
- \
-
- \
- if (temp > 1) { \
- \
- BR_buffer[BR++] = (char)(temp & 1); \
- signbits >>= 1; \
- zerobits >>= 1; \
- continue; \
- } \
- \
- \
- emit_eobrun(entropy); \
- \
- \
- emit_symbol(entropy, entropy->ac_tbl_no, (r << 4) + 1); \
- \
- \
- temp = signbits & 1; \
- emit_bits(entropy, (unsigned int)temp, 1); \
- \
- \
- emit_buffered_bits(entropy, BR_buffer, BR); \
- BR_buffer = entropy->bit_buffer; \
- BR = 0; \
- r = 0; \
- signbits >>= 1; \
- zerobits >>= 1; \
- } \
- }
- METHODDEF(boolean)
- encode_mcu_AC_refine(j_compress_ptr cinfo, JBLOCKROW *MCU_data)
- {
- phuff_entropy_ptr entropy = (phuff_entropy_ptr)cinfo->entropy;
- register int temp, r;
- char *BR_buffer;
- unsigned int BR;
- int Sl = cinfo->Se - cinfo->Ss + 1;
- int Al = cinfo->Al;
- JCOEF absvalues_unaligned[DCTSIZE2 + 15];
- JCOEF *absvalues;
- const JCOEF *cabsvalue, *EOBPTR;
- size_t zerobits, signbits;
- size_t bits[16 / SIZEOF_SIZE_T];
- entropy->next_output_byte = cinfo->dest->next_output_byte;
- entropy->free_in_buffer = cinfo->dest->free_in_buffer;
-
- if (cinfo->restart_interval)
- if (entropy->restarts_to_go == 0)
- emit_restart(entropy, entropy->next_restart_num);
- #ifdef WITH_SIMD
- cabsvalue = absvalues = (JCOEF *)PAD((size_t)absvalues_unaligned, 16);
- #else
-
- cabsvalue = absvalues = absvalues_unaligned;
- #endif
-
- EOBPTR = absvalues +
- entropy->AC_refine_prepare(MCU_data[0][0], jpeg_natural_order + cinfo->Ss,
- Sl, Al, absvalues, bits);
-
- r = 0;
- BR = 0;
- BR_buffer = entropy->bit_buffer + entropy->BE;
- zerobits = bits[0];
- #if SIZEOF_SIZE_T == 8
- signbits = bits[1];
- #else
- signbits = bits[2];
- #endif
- ENCODE_COEFS_AC_REFINE((void)0;);
- #if SIZEOF_SIZE_T == 4
- zerobits = bits[1];
- signbits = bits[3];
- if (zerobits) {
- int diff = ((absvalues + DCTSIZE2 / 2) - cabsvalue);
- int idx = count_zeroes(&zerobits);
- signbits >>= idx;
- idx += diff;
- r += idx;
- cabsvalue += idx;
- goto first_iter_ac_refine;
- }
- ENCODE_COEFS_AC_REFINE(first_iter_ac_refine:);
- #endif
- r |= (int)((absvalues + Sl) - cabsvalue);
- if (r > 0 || BR > 0) {
- entropy->EOBRUN++;
- entropy->BE += BR;
-
- if (entropy->EOBRUN == 0x7FFF ||
- entropy->BE > (MAX_CORR_BITS - DCTSIZE2 + 1))
- emit_eobrun(entropy);
- }
- cinfo->dest->next_output_byte = entropy->next_output_byte;
- cinfo->dest->free_in_buffer = entropy->free_in_buffer;
-
- if (cinfo->restart_interval) {
- if (entropy->restarts_to_go == 0) {
- entropy->restarts_to_go = cinfo->restart_interval;
- entropy->next_restart_num++;
- entropy->next_restart_num &= 7;
- }
- entropy->restarts_to_go--;
- }
- return TRUE;
- }
- METHODDEF(void)
- finish_pass_phuff(j_compress_ptr cinfo)
- {
- phuff_entropy_ptr entropy = (phuff_entropy_ptr)cinfo->entropy;
- entropy->next_output_byte = cinfo->dest->next_output_byte;
- entropy->free_in_buffer = cinfo->dest->free_in_buffer;
-
- emit_eobrun(entropy);
- flush_bits(entropy);
- cinfo->dest->next_output_byte = entropy->next_output_byte;
- cinfo->dest->free_in_buffer = entropy->free_in_buffer;
- }
- METHODDEF(void)
- finish_pass_gather_phuff(j_compress_ptr cinfo)
- {
- phuff_entropy_ptr entropy = (phuff_entropy_ptr)cinfo->entropy;
- boolean is_DC_band;
- int ci, tbl;
- jpeg_component_info *compptr;
- JHUFF_TBL **htblptr;
- boolean did[NUM_HUFF_TBLS];
-
- emit_eobrun(entropy);
- is_DC_band = (cinfo->Ss == 0);
-
- MEMZERO(did, sizeof(did));
- for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
- compptr = cinfo->cur_comp_info[ci];
- if (is_DC_band) {
- if (cinfo->Ah != 0)
- continue;
- tbl = compptr->dc_tbl_no;
- } else {
- tbl = compptr->ac_tbl_no;
- }
- if (!did[tbl]) {
- if (is_DC_band)
- htblptr = &cinfo->dc_huff_tbl_ptrs[tbl];
- else
- htblptr = &cinfo->ac_huff_tbl_ptrs[tbl];
- if (*htblptr == NULL)
- *htblptr = jpeg_alloc_huff_table((j_common_ptr)cinfo);
- jpeg_gen_optimal_table(cinfo, *htblptr, entropy->count_ptrs[tbl]);
- did[tbl] = TRUE;
- }
- }
- }
- GLOBAL(void)
- jinit_phuff_encoder(j_compress_ptr cinfo)
- {
- phuff_entropy_ptr entropy;
- int i;
- entropy = (phuff_entropy_ptr)
- (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
- sizeof(phuff_entropy_encoder));
- cinfo->entropy = (struct jpeg_entropy_encoder *)entropy;
- entropy->pub.start_pass = start_pass_phuff;
-
- for (i = 0; i < NUM_HUFF_TBLS; i++) {
- entropy->derived_tbls[i] = NULL;
- entropy->count_ptrs[i] = NULL;
- }
- entropy->bit_buffer = NULL;
- }
- #endif
|