Lines Matching defs:linesize
385 int y_stride, linesize;
542 y_stride = (s->frame->linesize[0] <<
548 ((mb_y * s->frame->linesize[0] + mb_x) << log2_blocksize);
550 dv100_idct_put_last_row_field_luma(s, y_ptr, s->frame->linesize[0], block);
552 linesize = s->frame->linesize[0] << is_field_mode[mb_index];
553 mb[0].idct_put(y_ptr, linesize, block + 0 * 64);
555 mb[2].idct_put(y_ptr + (1 << log2_blocksize), linesize, block + 2 * 64);
557 mb[1].idct_put(y_ptr + (1 << log2_blocksize), linesize, block + 1 * 64);
558 mb[2].idct_put(y_ptr + y_stride, linesize, block + 2 * 64);
559 mb[3].idct_put(y_ptr + (1 << log2_blocksize) + y_stride, linesize, block + 3 * 64);
566 c_offset = (((mb_y >> (s->sys->pix_fmt == AV_PIX_FMT_YUV420P)) * s->frame->linesize[1] +
576 for (y = 0; y < (1 << log2_blocksize); y++, c_ptr += s->frame->linesize[j], pixels += 8) {
578 c_ptr1 = c_ptr + (s->frame->linesize[j] << log2_blocksize);
588 s->frame->linesize[j] << ((!is_field_mode[mb_index]) * log2_blocksize);
590 dv100_idct_put_last_row_field_chroma(s, c_ptr, s->frame->linesize[j], block);
594 linesize = s->frame->linesize[j] << is_field_mode[mb_index];
595 (mb++)->idct_put(c_ptr, linesize, block);
598 (mb++)->idct_put(c_ptr + y_stride, linesize, block);