comparison dv.c @ 1537:6df940415116 libavcodec

align
author michael
date Wed, 15 Oct 2003 16:20:50 +0000
parents 79dddc5cd990
children a0086452b9d8
comparison
equal deleted inserted replaced
1536:992526a710e2 1537:6df940415116
483 idct_put(y_ptr + ((j & 1) * 8) + ((j >> 1) * 8 * s->picture.linesize[0]), 483 idct_put(y_ptr + ((j & 1) * 8) + ((j >> 1) * 8 * s->picture.linesize[0]),
484 s->picture.linesize[0], block); 484 s->picture.linesize[0], block);
485 } 485 }
486 } else { 486 } else {
487 if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) { 487 if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) {
488 uint8_t pixels[64], *c_ptr, *c_ptr1, *ptr; 488 uint64_t aligned_pixels[64/8], *c_ptr, *c_ptr1, *ptr;
489 uint8_t *pixels= (uint8_t*)aligned_pixels;
489 int y, linesize; 490 int y, linesize;
490 /* NOTE: at end of line, the macroblock is handled as 420 */ 491 /* NOTE: at end of line, the macroblock is handled as 420 */
491 idct_put(pixels, 8, block); 492 idct_put(pixels, 8, block);
492 linesize = s->picture.linesize[6 - j]; 493 linesize = s->picture.linesize[6 - j];
493 c_ptr = s->picture.data[6 - j] + c_offset; 494 c_ptr = s->picture.data[6 - j] + c_offset;