Searched refs:dct_y_offset (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | dnxhddec.c | 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() [all …]
|
D | dnxhdenc.c | 692 int dct_y_offset = ctx->dct_y_offset; in dnxhd_get_blocks() local 727 dct_y_offset = bw * linesize; in dnxhd_get_blocks() 754 dct_y_offset = bw * linesize / 2; in dnxhd_get_blocks() 770 ptr_y + dct_y_offset, in dnxhd_get_blocks() 773 ptr_y + dct_y_offset + bw, in dnxhd_get_blocks() 789 ptr_y + dct_y_offset, linesize); in dnxhd_get_blocks() 791 ptr_y + dct_y_offset + bw, linesize); in dnxhd_get_blocks() 800 pdsp->get_pixels(ctx->blocks[6], ptr_y + dct_y_offset, linesize); in dnxhd_get_blocks() 801 pdsp->get_pixels(ctx->blocks[7], ptr_y + dct_y_offset + bw, linesize); in dnxhd_get_blocks() 1251 ctx->thread[i]->dct_y_offset = ctx->m.linesize *8; in dnxhd_load_picture()
|
D | dnxhdenc.h | 64 unsigned dct_y_offset; member
|