/third_party/ffmpeg/libavcodec/ |
H A D | h264dec.h | 399 int b_stride; // FIXME use s->b4_stride member 709 int b_stride, in write_back_motion_list() 715 AV_COPY128(mv_dst + 0 * b_stride, mv_src + 8 * 0); in write_back_motion_list() 716 AV_COPY128(mv_dst + 1 * b_stride, mv_src + 8 * 1); in write_back_motion_list() 717 AV_COPY128(mv_dst + 2 * b_stride, mv_src + 8 * 2); in write_back_motion_list() 718 AV_COPY128(mv_dst + 3 * b_stride, mv_src + 8 * 3); in write_back_motion_list() 747 const int b_stride = h->b_stride; in write_back_motion() local 748 const int b_xy = 4 * sl->mb_x + 4 * sl->mb_y * h->b_stride; // try mb2b(8)_xy in write_back_motion() 752 write_back_motion_list(h, sl, b_stride, b_x in write_back_motion() 707 write_back_motion_list(const H264Context *h, H264SliceContext *sl, int b_stride, int b_xy, int b8_xy, int mb_type, int list) write_back_motion_list() argument [all...] |
H A D | snowenc.c | 521 const int b_stride = s->b_width << s->block_max_depth; in get_dc() local 524 int index= mb_x + mb_y*b_stride; in get_dc() 569 const int b_stride = s->b_width << s->block_max_depth; in get_block_bits() local 571 int index= x + y*b_stride; in get_block_bits() 574 const BlockNode *top = y ? &s->block[index-b_stride] : &null_block; in get_block_bits() 575 const BlockNode *tl = y && x ? &s->block[index-b_stride-1] : left; in get_block_bits() 576 const BlockNode *tr = y && x+w<b_stride ? &s->block[index-b_stride+w] : tl; in get_block_bits() 581 if(x<0 || x>=b_stride || y>=b_height) in get_block_bits() 618 const int b_stride in get_block_rd() local 721 const int b_stride = s->b_width << s->block_max_depth; get_4block_rd() local 904 const int b_stride= s->b_width << s->block_max_depth; check_block() local 950 const int b_stride= s->b_width << s->block_max_depth; check_4block_inter() local 999 const int b_stride= b_width; iterative_me() local [all...] |
H A D | h264_mvpred.h | 51 mv = h->cur_pic_ptr->motion_val[list][h->mb2b_xy[xy] + 3 + y4 * h->b_stride]; \ in fetch_diagonal_mv() 265 int b_stride = h->b_stride; in pred_pskip_motion() local 276 A = mv[h->mb2b_xy[sl->left_mb_xy[LTOP]] + 3 + b_stride * sl->left_block[0]]; in pred_pskip_motion() 289 B = mv[h->mb2b_xy[sl->top_mb_xy] + 3 * b_stride]; in pred_pskip_motion() 305 C = mv[h->mb2b_xy[sl->topright_mb_xy] + 3 * b_stride]; in pred_pskip_motion() 314 C = mv[h->mb2b_xy[sl->topleft_mb_xy] + 3 + b_stride + in pred_pskip_motion() 315 (sl->topleft_partition & 2 * b_stride)]; in pred_pskip_motion() 607 int b_stride = h->b_stride; in fill_decode_caches() local [all...] |
H A D | svq3.c | 124 int b_stride; member 514 (4 * s->mb_y + (i >> 2)) * s->b_stride; in svq3_mc_dir() 607 part_width >> 2, part_height >> 2, s->b_stride, in svq3_mc_dir() 718 const int b_xy = 4 * s->mb_x + 4 * s->mb_y * s->b_stride; in svq3_decode_mb() 765 s->cur_pic->motion_val[m][b_xy - 1 + i * s->b_stride]); in svq3_decode_mb() 772 s->cur_pic->motion_val[m][b_xy - s->b_stride], in svq3_decode_mb() 779 s->cur_pic->motion_val[m][b_xy - s->b_stride + 4]); in svq3_decode_mb() 787 s->cur_pic->motion_val[m][b_xy - s->b_stride - 1]); in svq3_decode_mb() 810 memset(s->cur_pic->motion_val[0][b_xy + i * s->b_stride], in svq3_decode_mb() 818 memset(s->cur_pic->motion_val[1][b_xy + i * s->b_stride], in svq3_decode_mb() [all...] |
H A D | h261dec.c | 231 int b_stride = 2*s->mb_width + 1; in h261_decode_mb_skipped() local 232 int b_xy = 2 * s->mb_x + (2 * s->mb_y) * b_stride; in h261_decode_mb_skipped() 461 int b_stride = 2*s->mb_width + 1; in h261_decode_mb() local 462 int b_xy = 2 * s->mb_x + (2 * s->mb_y) * b_stride; in h261_decode_mb()
|
H A D | h264_slice.c | 366 h->b_stride = h1->b_stride; in ff_h264_update_thread_context() 1096 h->b_stride = h->mb_width * 4; in h264_init_ps() 2338 int b_stride = h->b_stride; in fill_filter_caches_inter() local 2343 const int b_xy = h->mb2b_xy[top_xy] + 3 * b_stride; in fill_filter_caches_inter() 2361 AV_COPY32(mv_dst - 1 + 0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]); in fill_filter_caches_inter() 2362 AV_COPY32(mv_dst - 1 + 8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]); in fill_filter_caches_inter() 2363 AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]); in fill_filter_caches_inter() 2364 AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * in fill_filter_caches_inter() [all...] |
H A D | intrax8dsp.c | 345 const ptrdiff_t b_stride, int quant) in x8_loop_filter() 351 for (i = 0; i < 8; i++, ptr += b_stride) { in x8_loop_filter() 344 x8_loop_filter(uint8_t *ptr, const ptrdiff_t a_stride, const ptrdiff_t b_stride, int quant) x8_loop_filter() argument
|
H A D | snow.h | 286 const int b_stride= b_width; in add_yblock() local 287 BlockNode *lt= &s->block[b_x + b_y*b_stride]; in add_yblock() 289 BlockNode *lb= lt+b_stride; in add_yblock()
|
H A D | h264_direct.c | 203 int b4_stride = h->b_stride; in pred_spatial_direct_motion() 490 int b4_stride = h->b_stride; in pred_temp_direct_motion()
|
H A D | snowdec.c | 92 const int b_stride= b_width; in predict_slice_buffered() local 93 BlockNode *bn= &s->block[mb_x + mb_y*b_stride]; in predict_slice_buffered()
|
H A D | hevcdsp_template.c | 336 int a_stride, b_stride; in sao_edge_filter() local 342 b_stride = pos[eo][1][0] + pos[eo][1][1] * stride_src; in sao_edge_filter() 346 int diff1 = CMP(src[x], src[x + b_stride]); in sao_edge_filter()
|
H A D | h264dec.c | 208 const int b_xy = 4 * x + 4 * y * h->b_stride; in ff_h264_alloc_tables()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | hevcdsp_init_neon.c | 172 int a_stride, int b_stride, int16_t *sao_offset_val, uint8_t *edge_idx); 185 int a_stride, b_stride; in ff_hevc_sao_edge_filter_neon_8_wrapper() local 189 b_stride = pos[eo][1][0] + pos[eo][1][1] * stride_src; in ff_hevc_sao_edge_filter_neon_8_wrapper() 191 ff_hevc_sao_edge_filter_neon_8(dst, src, stride_dst, stride_src, width, height, a_stride, b_stride, sao_offset_val, edge_idx); in ff_hevc_sao_edge_filter_neon_8_wrapper()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | hevc_sao_10bit.asm | 228 cglobal hevc_sao_edge_filter_%2_%1, 4, 9, 16, dst, src, dststride, offset, eo, a_stride, b_stride, height, tmp 236 cglobal hevc_sao_edge_filter_%2_%1, 1, 6, 8, 5*mmsize, dst, src, dststride, a_stride, b_stride, height
|
H A D | hevc_sao.asm | 256 cglobal hevc_sao_edge_filter_%1_8, 4, 9, 8, dst, src, dststride, offset, eo, a_stride, b_stride, height, tmp 262 cglobal hevc_sao_edge_filter_%1_8, 1, 6, 8, dst, src, dststride, a_stride, b_stride, height
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_register_allocation.cpp | 1477 unsigned b_stride = b.info.stride * (b.info.rc.is_subdword() ? 1 : 4); in compact_relocate_vars() 1478 if (a_stride > b_stride) in compact_relocate_vars() 1480 if (a_stride < b_stride) in compact_relocate_vars()
|