g3dvl: remove some stale variable increment
authorChristian König <deathsimple@vodafone.de>
Wed, 2 Nov 2011 12:54:05 +0000 (13:54 +0100)
committerChristian König <deathsimple@vodafone.de>
Thu, 3 Nov 2011 12:52:00 +0000 (13:52 +0100)
Incrementing "td" before initializing it is
pointless and just leads to an uninitialized
variable warning with MSVC.

Signed-off-by: Christian König <deathsimple@vodafone.de>
src/gallium/auxiliary/vl/vl_mpeg12_decoder.c

index 7e7fa994b266d04c3d6bad95149d056a2880812f..d4b8ae0417a48c6e19fb95228704488d23e05266 100644 (file)
@@ -340,7 +340,7 @@ UploadYcbcrBlocks(struct vl_mpeg12_decoder *dec,
    intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA ? 1 : 0;
 
    for (y = 0; y < 2; ++y) {
-      for (x = 0; x < 2; ++x, ++tb) {
+      for (x = 0; x < 2; ++x) {
          if (mb->coded_block_pattern & const_empty_block_mask_420[0][y][x]) {
 
             struct vl_ycbcr_block *stream = buf->ycbcr_stream[0];