mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00:00
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:
parent
8678af542c
commit
53c896770c
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user