Searched refs:EOBRUN (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jdphuff.c | 40 unsigned int EOBRUN; /* remaining EOBs in EOBRUN */ member 318 entropy->saved.EOBRUN = 0; in start_pass_phuff_decoder() 381 entropy->saved.EOBRUN = 0; in LOCAL() 503 unsigned int EOBRUN; in METHODDEF() local 523 EOBRUN = entropy->saved.EOBRUN; /* only part of saved state we need */ in METHODDEF() 527 if (EOBRUN > 0) /* if it's a band of zeroes... */ in METHODDEF() 528 EOBRUN--; /* ...process it now (we do nothing) */ in METHODDEF() 549 EOBRUN in METHODDEF() 640 unsigned int EOBRUN; METHODDEF() local [all...] |
H A D | jcphuff.c | 107 unsigned int EOBRUN; /* run length of EOBs */ member 286 entropy->EOBRUN = 0; in start_pass_phuff() 418 * Emit any pending EOBRUN symbol. 426 if (entropy->EOBRUN > 0) { /* if there is any pending EOBRUN */ in emit_eobrun() 427 temp = entropy->EOBRUN; in emit_eobrun() 435 emit_bits(entropy, entropy->EOBRUN, nbits); in emit_eobrun() 437 entropy->EOBRUN = 0; in emit_eobrun() 469 entropy->EOBRUN = 0; in emit_restart() 697 /* Emit any pending EOBRUN */ in METHODDEF() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | mjpegdec.c | 879 int ss, int se, int Al, int *EOBRUN) in decode_block_progressive() 884 if (*EOBRUN) { in decode_block_progressive() 885 (*EOBRUN)--; in decode_block_progressive() 935 *EOBRUN = val - 1; in decode_block_progressive() 978 int ss, int se, int Al, int *EOBRUN) in decode_block_refinement() 984 if (*EOBRUN) { in decode_block_refinement() 985 (*EOBRUN)--; in decode_block_refinement() 1018 *EOBRUN = run - 1; in decode_block_refinement() 1557 int EOBRUN = 0; in mjpeg_decode_scan_progressive_ac() local 1588 quant_matrix, ss, se, Al, &EOBRUN); in mjpeg_decode_scan_progressive_ac() 876 decode_block_progressive(MJpegDecodeContext *s, int16_t *block, uint8_t *last_nnz, int ac_index, uint16_t *quant_matrix, int ss, int se, int Al, int *EOBRUN) decode_block_progressive() argument 975 decode_block_refinement(MJpegDecodeContext *s, int16_t *block, uint8_t *last_nnz, int ac_index, uint16_t *quant_matrix, int ss, int se, int Al, int *EOBRUN) decode_block_refinement() argument [all...] |
Completed in 6 milliseconds