diff mpegvideo_xvmc.c @ 8886:f873e2b1ac7f libavcodec

cosmetics: Change '8*8' to '64'.
author diego
date Sat, 14 Feb 2009 21:50:46 +0000
parents d3f806fb5f71
children c4f2086d74f8
line wrap: on
line diff
--- a/mpegvideo_xvmc.c	Sat Feb 14 21:49:48 2009 +0000
+++ b/mpegvideo_xvmc.c	Sat Feb 14 21:50:46 2009 +0000
@@ -254,7 +254,7 @@
     if (s->flags & CODEC_FLAG_GRAY) {
         if (s->mb_intra) {                                   // intra frames are always full chroma blocks
             for (i = 4; i < blocks_per_mb; i++) {
-                memset(s->pblocks[i], 0, sizeof(short)*8*8); // so we need to clear them
+                memset(s->pblocks[i], 0, sizeof(short)*64);  // so we need to clear them
                 if (!render->unsigned_intra)
                     s->pblocks[i][0] = 1 << 10;
             }