More minor code formatting tweaks
This commit is contained in:
@@ -265,8 +265,8 @@ start_pass_fdctmgr (j_compress_ptr cinfo)
|
|||||||
dtbl = fdct->divisors[qtblno];
|
dtbl = fdct->divisors[qtblno];
|
||||||
for (i = 0; i < DCTSIZE2; i++) {
|
for (i = 0; i < DCTSIZE2; i++) {
|
||||||
#if BITS_IN_JSAMPLE == 8
|
#if BITS_IN_JSAMPLE == 8
|
||||||
if(!compute_reciprocal(qtbl->quantval[i] << 3, &dtbl[i])
|
if (!compute_reciprocal(qtbl->quantval[i] << 3, &dtbl[i]) &&
|
||||||
&& fdct->quantize == jsimd_quantize)
|
fdct->quantize == jsimd_quantize)
|
||||||
fdct->quantize = quantize;
|
fdct->quantize = quantize;
|
||||||
#else
|
#else
|
||||||
dtbl[i] = ((DCTELEM) qtbl->quantval[i]) << 3;
|
dtbl[i] = ((DCTELEM) qtbl->quantval[i]) << 3;
|
||||||
@@ -308,8 +308,8 @@ start_pass_fdctmgr (j_compress_ptr cinfo)
|
|||||||
if (!compute_reciprocal(
|
if (!compute_reciprocal(
|
||||||
DESCALE(MULTIPLY16V16((JLONG) qtbl->quantval[i],
|
DESCALE(MULTIPLY16V16((JLONG) qtbl->quantval[i],
|
||||||
(JLONG) aanscales[i]),
|
(JLONG) aanscales[i]),
|
||||||
CONST_BITS-3), &dtbl[i])
|
CONST_BITS-3), &dtbl[i]) &&
|
||||||
&& fdct->quantize == jsimd_quantize)
|
fdct->quantize == jsimd_quantize)
|
||||||
fdct->quantize = quantize;
|
fdct->quantize = quantize;
|
||||||
#else
|
#else
|
||||||
dtbl[i] = (DCTELEM)
|
dtbl[i] = (DCTELEM)
|
||||||
|
|||||||
Reference in New Issue
Block a user