Cosmetic 64 instead 8*8

Originally committed as revision 17279 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ivan Kalvachev 2009-02-14 20:35:10 +00:00
parent ae4dde76d3
commit 6e2803405d
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
// copy blocks only if the codec doesn't support pblocks reordering
if (s->avctx->xvmc_acceleration == 1) {
memcpy(&render->data_blocks[render->next_free_data_block_num*64],
s->pblocks[i], sizeof(short)*8*8);
s->pblocks[i], sizeof(short)*64);
}
render->next_free_data_block_num++;
}