Removed debug print from context.c

This commit is contained in:
Sami Ahovainio 2019-06-20 15:18:22 +03:00
parent 3a9800d07d
commit 12322144f0

View file

@ -439,7 +439,6 @@ uint32_t kvz_context_get_sig_coeff_group( uint32_t *sig_coeff_group_flag,
uint32_t uiRight = 0;
uint32_t uiLower = 0;
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_y < (uint32_t)(width - 1)) uiLower = sig_coeff_group_flag[position + width];