Commit 53c89677 authored by Paul B Mahol's avatar Paul B Mahol Committed by Michael Niedermayer

bbox: remove superfluous initializations

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8678af54
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment