diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-03-22 03:36:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 13:40:37 +0100 |
commit | 53c896770c1c91a6df480ebbef87062040e13e74 (patch) | |
tree | f3bad43b60f30087df89b15f0004b562df609ea7 /libavfilter/bbox.c | |
parent | 8678af542cee11a2bc83165423ee4ae83308d0cc (diff) | |
download | ffmpeg-53c896770c1c91a6df480ebbef87062040e13e74.tar.gz |
bbox: remove superfluous initializations
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/bbox.c')
-rw-r--r-- | libavfilter/bbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/bbox.c b/libavfilter/bbox.c index c29c75873f..be9b2e6b73 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 */ |