diff options
author | jstebbins <[email protected]> | 2012-07-02 17:59:31 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-07-02 17:59:31 +0000 |
commit | 1f44d43ccd158506fccb5825a586ab4c404aba5a (patch) | |
tree | 8f7b8333ef4fc158bdb891edae357168a0644274 /libhb/scan.c | |
parent | 23d9b4982fc8c0e5316b870d4f80e74e29f5c2a5 (diff) |
libhb: fix unused variable warning
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4806 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/scan.c')
-rw-r--r-- | libhb/scan.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libhb/scan.c b/libhb/scan.c index 1c402695d..e06f14c5f 100644 --- a/libhb/scan.c +++ b/libhb/scan.c @@ -377,7 +377,6 @@ static int row_all_dark( hb_buffer_t* buf, int row ) static int column_all_dark( hb_buffer_t* buf, int top, int bottom, int col ) { - int width = buf->plane[0].width; int stride = buf->plane[0].stride; int height = buf->plane[0].height - top - bottom; uint8_t *luma = buf->plane[0].data + stride * top + col; |