libhb: fix unused variable warning
authorjstebbins <jstebbins.hb@gmail.com>
Mon, 2 Jul 2012 17:59:31 +0000 (17:59 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Mon, 2 Jul 2012 17:59:31 +0000 (17:59 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4806 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/scan.c

index 1c402695dcfdd51b9d574484d497f0b1c8416989..e06f14c5f536354dcecf3b6a5da8dee93b0f45c8 100644 (file)
@@ -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;