Lines Matching refs:obmc
516 const uint8_t *obmc = plane_index ? ff_obmc_tab[s->block_max_depth+s->chroma_h_shift] : ff_obmc_tab[s->block_max_depth];
530 av_assert2(s->chroma_h_shift == s->chroma_v_shift); //obmc stuff above
542 add_yblock(s, 0, NULL, dst + (i&1)*block_w + (i>>1)*obmc_stride*block_h, NULL, obmc,
548 int obmc_v= obmc[index];
550 if(y<0) obmc_v += obmc[index + block_h*obmc_stride];
551 if(x<0) obmc_v += obmc[index + block_w];
552 if(y+block_h>h) obmc_v += obmc[index - block_h*obmc_stride];
553 if(x+block_w>w) obmc_v += obmc[index - block_w];
633 av_assert2(s->chroma_h_shift == s->chroma_v_shift); //obmc and square assumtions below chckinhg only block_w
654 /* copy the regions where obmc[] = (uint8_t)256 */
713 const uint8_t *obmc = plane_index ? ff_obmc_tab[s->block_max_depth+s->chroma_h_shift] : ff_obmc_tab[s->block_max_depth];
728 av_assert2(s->chroma_h_shift == s->chroma_v_shift); //obmc and square assumtions below
736 add_yblock(s, 0, NULL, zero_dst, dst, obmc,