Skip to content
Snippets Groups Projects
Commit 6e4b41f8 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

cosmetics: Change '8*8' to '64'.

Originally committed as revision 17285 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cb18fb62
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment