Lines Matching defs:mv_bounds
1113 void vp8_decode_mvs(VP8Context *s, VP8mvbounds *mv_bounds, VP8Macroblock *mb,
1184 clamp_mv(mv_bounds, &mb->mv, &near_mv[CNT_ZERO + (cnt[CNT_NEAREST] >= cnt[CNT_ZERO])]);
1198 clamp_mv(mv_bounds, &mb->mv, &near_mv[CNT_NEAR]);
1202 clamp_mv(mv_bounds, &mb->mv, &near_mv[CNT_NEAREST]);
1248 void decode_mb_mode(VP8Context *s, VP8mvbounds *mv_bounds,
1313 vp8_decode_mvs(s, mv_bounds, mb, mb_x, mb_y, layout);
2288 s->mv_bounds.mv_min.y = -MARGIN;
2289 s->mv_bounds.mv_max.y = ((s->mb_height - 1) << 6) + MARGIN;
2297 s->mv_bounds.mv_min.x = -MARGIN;
2298 s->mv_bounds.mv_max.x = ((s->mb_width - 1) << 6) + MARGIN;
2307 decode_mb_mode(s, &s->mv_bounds, mb, mb_x, mb_y, curframe->seg_map->data + mb_xy,
2310 s->mv_bounds.mv_min.x -= 64;
2311 s->mv_bounds.mv_max.x -= 64;
2313 s->mv_bounds.mv_min.y -= 64;
2314 s->mv_bounds.mv_max.y -= 64;
2413 td->mv_bounds.mv_min.x = -MARGIN;
2414 td->mv_bounds.mv_max.x = ((s->mb_width - 1) << 6) + MARGIN;
2438 decode_mb_mode(s, &td->mv_bounds, mb, mb_x, mb_y, curframe->seg_map->data + mb_xy,
2485 td->mv_bounds.mv_min.x -= 64;
2486 td->mv_bounds.mv_max.x -= 64;
2592 td->mv_bounds.mv_min.y = -MARGIN - 64 * threadnr;
2593 td->mv_bounds.mv_max.y = ((s->mb_height - 1) << 6) + MARGIN - 64 * threadnr;
2605 td->mv_bounds.mv_min.y -= 64 * num_jobs;
2606 td->mv_bounds.mv_max.y -= 64 * num_jobs;
2778 s->mv_bounds.mv_min.y = -MARGIN;
2779 s->mv_bounds.mv_max.y = ((s->mb_height - 1) << 6) + MARGIN;