mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
[isp] Remove unnecessary code from forward dct 32.
This commit is contained in:
parent
9671c4551e
commit
85029fc2ca
|
@ -1435,11 +1435,6 @@ static void fastForwardDCT2_B32(const int16_t* src, int16_t* dst, int32_t shift,
|
||||||
dst += line;
|
dst += line;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (skip_line2) {
|
|
||||||
const int reduced_line = line - skip_line2;
|
|
||||||
dst = p_coef + reduced_line * 32;
|
|
||||||
memset(dst, 0, skip_line2 * 32 * sizeof(coeff_t));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fastInverseDCT2_B32(const int16_t* src, int16_t* dst, int32_t shift, int line, int skip_line, int skip_line2)
|
static void fastInverseDCT2_B32(const int16_t* src, int16_t* dst, int32_t shift, int line, int skip_line, int skip_line2)
|
||||||
|
|
Loading…
Reference in a new issue