mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Fix typo.
- Obvious typo. This g_bitdepth - 8 used to be g_bitincrement. Doesn't affect anything yet as we don't actually support bitdepth > 8 yet.
This commit is contained in:
parent
5bebb34787
commit
c142cbba21
|
@ -775,7 +775,7 @@ void itransformskip(int16_t *block,int16_t *coeff, int8_t block_size)
|
|||
*/
|
||||
void transform2d(int16_t *block,int16_t *coeff, int8_t block_size, int32_t mode)
|
||||
{
|
||||
int32_t shift_1st = g_convert_to_bit[block_size] + 1 + (8 - g_bitdepth);
|
||||
int32_t shift_1st = g_convert_to_bit[block_size] + 1 + (g_bitdepth - 8);
|
||||
int32_t shift_2nd = g_convert_to_bit[block_size] + 8;
|
||||
|
||||
int16_t tmp[LCU_WIDTH * LCU_WIDTH];
|
||||
|
|
Loading…
Reference in a new issue