comparison i386/fdct_mmx.c @ 3584:8a62cb7e8d0f libavcodec

insufficient alignment
author michael
date Thu, 17 Aug 2006 07:49:22 +0000
parents 96f9bd6a9ea9
children 6717ead176fd
comparison
equal deleted inserted replaced
3583:562758eaf7bf 3584:8a62cb7e8d0f
547 } 547 }
548 } 548 }
549 549
550 void ff_fdct_sse2(int16_t *block) 550 void ff_fdct_sse2(int16_t *block)
551 { 551 {
552 int64_t align_tmp[16] ATTR_ALIGN(8); 552 int64_t align_tmp[16] ATTR_ALIGN(16);
553 int16_t * const block_tmp= (int16_t*)align_tmp; 553 int16_t * const block_tmp= (int16_t*)align_tmp;
554 int16_t *block1; 554 int16_t *block1;
555 555
556 block1 = block_tmp; 556 block1 = block_tmp;
557 fdct_col(block, block1, 0); 557 fdct_col(block, block1, 0);