• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching defs:b_y

172     int b_x, b_y;
174 for (b_y = 0; b_y < h; b_y++) {
180 mb_index = (b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride;
190 int mb_index_j = (j >> is_luma) + (b_y >> is_luma) * s->mb_stride;
194 color[0] = dc[j + b_y * stride];
202 int mb_index_j = (j >> is_luma) + (b_y >> is_luma) * s->mb_stride;
206 color[1] = dc[j + b_y * stride];
213 for (j = b_y + 1; j < h; j++) {
220 distance[2] = j - b_y;
226 for (j = b_y - 1; j >= 0; j--) {
232 distance[3] = b_y - j;
245 dc[b_x + b_y * stride] = guess;
258 int b_x, b_y, mvx_stride, mvy_stride;
264 for (b_y = 0; b_y < h; b_y++) {
267 int left_status = s->error_status_table[( b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride];
268 int right_status = s->error_status_table[((b_x + 1) >> is_luma) + (b_y >> is_luma) * s->mb_stride];
269 int left_intra = IS_INTRA(s->current_picture.f.mb_type[( b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride]);
270 int right_intra = IS_INTRA(s->current_picture.f.mb_type[((b_x + 1) >> is_luma) + (b_y >> is_luma) * s->mb_stride]);
273 int offset = b_x * 8 + b_y * stride * 8;
274 int16_t *left_mv = s->current_picture.f.motion_val[0][mvy_stride * b_y + mvx_stride * b_x];
275 int16_t *right_mv = s->current_picture.f.motion_val[0][mvy_stride * b_y + mvx_stride * (b_x + 1)];
326 int b_x, b_y, mvx_stride, mvy_stride;
332 for (b_y = 0; b_y < h - 1; b_y++) {
335 int top_status = s->error_status_table[(b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride];
336 int bottom_status = s->error_status_table[(b_x >> is_luma) + ((b_y + 1) >> is_luma) * s->mb_stride];
337 int top_intra = IS_INTRA(s->current_picture.f.mb_type[(b_x >> is_luma) + ( b_y >> is_luma) * s->mb_stride]);
338 int bottom_intra = IS_INTRA(s->current_picture.f.mb_type[(b_x >> is_luma) + ((b_y + 1) >> is_luma) * s->mb_stride]);
341 int offset = b_x * 8 + b_y * stride * 8;
343 int16_t *top_mv = s->current_picture.f.motion_val[0][mvy_stride * b_y + mvx_stride * b_x];
344 int16_t *bottom_mv = s->current_picture.f.motion_val[0][mvy_stride * (b_y + 1) + mvx_stride * b_x];