From 12322144f0f257bdf8f60722adc9644e21434242 Mon Sep 17 00:00:00 2001 From: Sami Ahovainio Date: Thu, 20 Jun 2019 15:18:22 +0300 Subject: [PATCH] Removed debug print from context.c --- src/context.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/context.c b/src/context.c index 459fce16..b7c2ae5a 100644 --- a/src/context.c +++ b/src/context.c @@ -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];