Lines Matching refs:dct_y_offset
493 int dct_y_offset, dct_x_offset; in dnxhd_decode_macroblock() local
551 dct_y_offset = interlaced_mb ? frame->linesize[0] : (dct_linesize_luma << 3); in dnxhd_decode_macroblock()
556 ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, row->blocks[4]); in dnxhd_decode_macroblock()
557 ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, row->blocks[5]); in dnxhd_decode_macroblock()
560 dct_y_offset = interlaced_mb ? frame->linesize[1] : (dct_linesize_chroma << 3); in dnxhd_decode_macroblock()
563 ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, row->blocks[6]); in dnxhd_decode_macroblock()
564 ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, row->blocks[7]); in dnxhd_decode_macroblock()
569 ctx->idsp.idct_put(dest_y + dct_y_offset, dct_linesize_luma, row->blocks[6]); in dnxhd_decode_macroblock()
570 ctx->idsp.idct_put(dest_y + dct_y_offset + dct_x_offset, dct_linesize_luma, row->blocks[7]); in dnxhd_decode_macroblock()
573 dct_y_offset = interlaced_mb ? frame->linesize[1] : (dct_linesize_chroma << 3); in dnxhd_decode_macroblock()
576 … ctx->idsp.idct_put(dest_u + dct_y_offset, dct_linesize_chroma, row->blocks[8]); in dnxhd_decode_macroblock()
577 … ctx->idsp.idct_put(dest_u + dct_y_offset + dct_x_offset, dct_linesize_chroma, row->blocks[9]); in dnxhd_decode_macroblock()
580 … ctx->idsp.idct_put(dest_v + dct_y_offset, dct_linesize_chroma, row->blocks[10]); in dnxhd_decode_macroblock()
581 … ctx->idsp.idct_put(dest_v + dct_y_offset + dct_x_offset, dct_linesize_chroma, row->blocks[11]); in dnxhd_decode_macroblock()