From b10dac7e1ce1e177dcfdda5bdb2bab12ad83d1db Mon Sep 17 00:00:00 2001 From: Grigori Goronzy Date: Thu, 29 Jul 2010 02:50:16 +0200 Subject: Remove debugging leftovers --- libass/ass_drawing.c | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/libass/ass_drawing.c b/libass/ass_drawing.c index 6bf9ee1..7833c10 100644 --- a/libass/ass_drawing.c +++ b/libass/ass_drawing.c @@ -118,18 +118,6 @@ static void drawing_finish(ASS_Drawing *drawing, int raw_mode) // Close the last contour drawing_close_shape(drawing); -#if 0 - // Dump points - for (i = 0; i < ol->n_points; i++) { - printf("point (%d, %d)\n", (int) ol->points[i].x, - (int) ol->points[i].y); - } - - // Dump contours - for (i = 0; i < ol->n_contours; i++) - printf("contour %d\n", ol->contours[i]); -#endif - ass_msg(drawing->library, MSGL_V, "Parsed drawing with %d points and %d contours", ol->n_points, ol->n_contours); @@ -230,15 +218,6 @@ static ASS_DrawingToken *drawing_tokenize(char *str) p++; } -#if 0 - // Check tokens - ASS_DrawingToken *t = root; - while(t) { - printf("token %d point (%d, %d)\n", t->type, t->point.x, t->point.y); - t = t->next; - } -#endif - return root; } -- cgit v1.2.3