mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Removed debug print from context.c
This commit is contained in:
parent
3a9800d07d
commit
12322144f0
|
@ -439,7 +439,6 @@ uint32_t kvz_context_get_sig_coeff_group( uint32_t *sig_coeff_group_flag,
|
||||||
uint32_t uiRight = 0;
|
uint32_t uiRight = 0;
|
||||||
uint32_t uiLower = 0;
|
uint32_t uiLower = 0;
|
||||||
uint32_t position = pos_y * width + pos_x;
|
uint32_t position = pos_y * width + pos_x;
|
||||||
printf("position=%d\n", position);
|
|
||||||
if (pos_x < (uint32_t)(width - 1)) uiRight = sig_coeff_group_flag[position + 1];
|
if (pos_x < (uint32_t)(width - 1)) uiRight = sig_coeff_group_flag[position + 1];
|
||||||
if (pos_y < (uint32_t)(width - 1)) uiLower = sig_coeff_group_flag[position + width];
|
if (pos_y < (uint32_t)(width - 1)) uiLower = sig_coeff_group_flag[position + width];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue