comparison vp3.c @ 9591:483ba97736f8 libavcodec

Remove dead assignments found by CSA
author banan
date Sat, 02 May 2009 09:12:03 +0000
parents 0dce4fe6e6f3
children bd3e11b60ccd
comparison
equal deleted inserted replaced
9590:2a52dd5a684a 9591:483ba97736f8
252 int current_width = 0; 252 int current_width = 0;
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 *hilbert = NULL;
258 int mapping_index = 0; 257 int mapping_index = 0;
259 258
260 int current_macroblock; 259 int current_macroblock;
261 int c_fragment; 260 int c_fragment;
262 261
364 bottom_edge = s->macroblock_height; 363 bottom_edge = s->macroblock_height;
365 current_width = -1; 364 current_width = -1;
366 current_height = 0; 365 current_height = 0;
367 superblock_row_inc = s->macroblock_width - 366 superblock_row_inc = s->macroblock_width -
368 (s->y_superblock_width * 2 - s->macroblock_width); 367 (s->y_superblock_width * 2 - s->macroblock_width);
369 hilbert = hilbert_walk_mb;
370 mapping_index = 0; 368 mapping_index = 0;
371 current_macroblock = -1; 369 current_macroblock = -1;
372 for (i = 0; i < s->u_superblock_start; i++) { 370 for (i = 0; i < s->u_superblock_start; i++) {
373 371
374 if (current_width >= right_edge - 1) { 372 if (current_width >= right_edge - 1) {