Mercurial > libavcodec.hg
comparison vp3.c @ 11314:5b39547c4ce1 libavcodec
Remove declaration of unused variables.
author | cehoyos |
---|---|
date | Sun, 28 Feb 2010 03:02:25 +0000 |
parents | d53e56a6228b |
children | 0f55f380a1b2 |
comparison
equal
deleted
inserted
replaced
11313:367119ffda3f | 11314:5b39547c4ce1 |
---|---|
253 int current_height = 0; | 253 int current_height = 0; |
254 int right_edge = 0; | 254 int right_edge = 0; |
255 int bottom_edge = 0; | 255 int bottom_edge = 0; |
256 int superblock_row_inc = 0; | 256 int superblock_row_inc = 0; |
257 int mapping_index = 0; | 257 int mapping_index = 0; |
258 | |
259 int current_macroblock; | |
260 int c_fragment; | |
261 | 258 |
262 static const signed char travel_width[16] = { | 259 static const signed char travel_width[16] = { |
263 1, 1, 0, -1, | 260 1, 1, 0, -1, |
264 0, 0, 1, 0, | 261 0, 0, 1, 0, |
265 1, 0, 1, 0, | 262 1, 0, 1, 0, |
662 for (sb_x = 0; sb_x < s->y_superblock_width; sb_x++) { | 659 for (sb_x = 0; sb_x < s->y_superblock_width; sb_x++) { |
663 | 660 |
664 for (j = 0; j < 4; j++) { | 661 for (j = 0; j < 4; j++) { |
665 int mb_x = 2*sb_x + (j>>1); | 662 int mb_x = 2*sb_x + (j>>1); |
666 int mb_y = 2*sb_y + (((j>>1)+j)&1); | 663 int mb_y = 2*sb_y + (((j>>1)+j)&1); |
667 int frags_coded = 0; | |
668 current_macroblock = mb_y * s->macroblock_width + mb_x; | 664 current_macroblock = mb_y * s->macroblock_width + mb_x; |
669 | 665 |
670 if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height) | 666 if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height) |
671 continue; | 667 continue; |
672 | 668 |