comparison dv.c @ 1540:a0086452b9d8 libavcodec

* fix for a trivial 100l declaration typo
author romansh
date Thu, 16 Oct 2003 04:50:54 +0000
parents 6df940415116
children 7542cb99b950
comparison
equal deleted inserted replaced
1539:14d01ccc0081 1540:a0086452b9d8
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 uint64_t aligned_pixels[64/8], *c_ptr, *c_ptr1, *ptr; 488 uint64_t aligned_pixels[64/8];
489 uint8_t *pixels= (uint8_t*)aligned_pixels; 489 uint8_t *pixels= (uint8_t*)aligned_pixels;
490 uint8_t *c_ptr, *c_ptr1, *ptr;
490 int y, linesize; 491 int y, linesize;
491 /* NOTE: at end of line, the macroblock is handled as 420 */ 492 /* NOTE: at end of line, the macroblock is handled as 420 */
492 idct_put(pixels, 8, block); 493 idct_put(pixels, 8, block);
493 linesize = s->picture.linesize[6 - j]; 494 linesize = s->picture.linesize[6 - j];
494 c_ptr = s->picture.data[6 - j] + c_offset; 495 c_ptr = s->picture.data[6 - j] + c_offset;