mirror of
https://github.com/libjpeg-turbo/libjpeg-turbo
synced 2025-03-28 21:13:18 +00:00
Lossless: Fix innocuous UBSan warnings
This commit is contained in:
parent
07129256e0
commit
db9dd93da4
@ -256,8 +256,9 @@ METHODDEF(void)
|
||||
simple_downscale(j_compress_ptr cinfo,
|
||||
_JSAMPROW input_buf, _JSAMPROW output_buf, JDIMENSION width)
|
||||
{
|
||||
while (width--)
|
||||
do {
|
||||
*output_buf++ = (_JSAMPLE)RIGHT_SHIFT(*input_buf++, cinfo->Al);
|
||||
} while (--width);
|
||||
}
|
||||
|
||||
|
||||
|
@ -196,7 +196,8 @@ decompress_data(j_decompress_ptr cinfo, _JSAMPIMAGE output_buf)
|
||||
}
|
||||
|
||||
/* Account for restart interval (no-op if not using restarts) */
|
||||
diff->restart_rows_to_go--;
|
||||
if (cinfo->restart_interval)
|
||||
diff->restart_rows_to_go--;
|
||||
|
||||
/* Completed an MCU row, but perhaps not an iMCU row */
|
||||
diff->MCU_ctr = 0;
|
||||
|
@ -216,16 +216,18 @@ METHODDEF(void)
|
||||
simple_upscale(j_decompress_ptr cinfo,
|
||||
JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
|
||||
{
|
||||
while (width--)
|
||||
do {
|
||||
*output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
|
||||
} while (--width);
|
||||
}
|
||||
|
||||
METHODDEF(void)
|
||||
noscale(j_decompress_ptr cinfo,
|
||||
JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
|
||||
{
|
||||
while (width--)
|
||||
do {
|
||||
*output_buf++ = (_JSAMPLE)(*diff_buf++);
|
||||
} while (--width);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user