Commit 6e280340 authored by Ivan Kalvachev's avatar Ivan Kalvachev

Cosmetic 64 instead 8*8

Originally committed as revision 17279 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ae4dde76
......@@ -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++;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment