From 53c896770c1c91a6df480ebbef87062040e13e74 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 22 Mar 2012 03:36:28 +0000 Subject: bbox: remove superfluous initializations Signed-off-by: Paul B Mahol Signed-off-by: Michael Niedermayer --- libavfilter/bbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/bbox.c b/libavfilter/bbox.c index c29c758..be9b2e6 100644 --- a/libavfilter/bbox.c +++ b/libavfilter/bbox.c @@ -27,8 +27,8 @@ int ff_calculate_bounding_box(FFBoundingBox *bbox, int x, y; int start_x; int start_y; - int end_x = w - 1; - int end_y = h - 1; + int end_x; + int end_y; const uint8_t *line; /* left bound */ -- cgit v1.1