# HG changeset patch # User cehoyos # Date 1267326145 0 # Node ID 5b39547c4ce12910a76c46c7a5f02af03b19f62d # Parent 367119ffda3fd5c28607285dc7f12264ba782ca5 Remove declaration of unused variables. diff -r 367119ffda3f -r 5b39547c4ce1 vp3.c --- a/vp3.c Sun Feb 28 02:44:36 2010 +0000 +++ b/vp3.c Sun Feb 28 03:02:25 2010 +0000 @@ -256,9 +256,6 @@ int superblock_row_inc = 0; int mapping_index = 0; - int current_macroblock; - int c_fragment; - static const signed char travel_width[16] = { 1, 1, 0, -1, 0, 0, 1, 0, @@ -664,7 +661,6 @@ for (j = 0; j < 4; j++) { int mb_x = 2*sb_x + (j>>1); int mb_y = 2*sb_y + (((j>>1)+j)&1); - int frags_coded = 0; current_macroblock = mb_y * s->macroblock_width + mb_x; if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height)