• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:chroma_h_shift

120     avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift, &s->chroma_v_shift);
241 s->input_picture->data[1] + ((x*block_w)>>s->chroma_h_shift) + ((y*uvstride*block_w)>>s->chroma_v_shift),
242 s->input_picture->data[2] + ((x*block_w)>>s->chroma_h_shift) + ((y*uvstride*block_w)>>s->chroma_v_shift)};
367 block_s= block_w*block_w>>(s->chroma_h_shift + s->chroma_v_shift);
368 sum = pix_sum(current_data[1], uvstride, block_w>>s->chroma_h_shift, block_w>>s->chroma_v_shift);
371 sum = pix_sum(current_data[2], uvstride, block_w>>s->chroma_h_shift, block_w>>s->chroma_v_shift);
499 const int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size;
501 const uint8_t *obmc = plane_index ? ff_obmc_tab[s->block_max_depth+s->chroma_h_shift] : ff_obmc_tab[s->block_max_depth];
502 const int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size;
515 av_assert2(s->chroma_h_shift == s->chroma_v_shift); //obmc stuff above
594 const int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size;
596 const int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size;
618 av_assert2(s->chroma_h_shift == s->chroma_v_shift); //obmc and square assumtions below chckinhg only block_w
696 const int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size;
698 const uint8_t *obmc = plane_index ? ff_obmc_tab[s->block_max_depth+s->chroma_h_shift] : ff_obmc_tab[s->block_max_depth];
699 const int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size;
713 av_assert2(s->chroma_h_shift == s->chroma_v_shift); //obmc and square assumtions below
1399 put_symbol(&s->c, s->header_state, s->chroma_h_shift, 0);
1565 int hshift= i ? s->chroma_h_shift : 0;
1661 while( !(width >>(s->chroma_h_shift + s->spatial_decomposition_count))