bbox: remove superfluous initializations

Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Paul B Mahol 2012-03-22 03:36:28 +00:00 committed by Michael Niedermayer
parent 8678af542c
commit 53c896770c

View File

@ -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 */