Lines Matching defs:cb_size
1307 int cb_size = 1 << log2_cb_size;
1311 int x_end = FFMIN(x0 + cb_size, s->ps.sps->width);
1312 int y_end = FFMIN(y0 + cb_size, s->ps.sps->height);
1447 int cb_size = 1 << log2_cb_size;
1455 int length = cb_size * cb_size * s->ps.sps->pcm.bit_depth +
1456 (((cb_size >> s->ps.sps->hshift[1]) * (cb_size >> s->ps.sps->vshift[1])) +
1457 ((cb_size >> s->ps.sps->hshift[2]) * (cb_size >> s->ps.sps->vshift[2]))) *
1469 s->hevcdsp.put_pcm(dst0, stride0, cb_size, cb_size, &gb, s->ps.sps->pcm.bit_depth);
1472 cb_size >> s->ps.sps->hshift[1],
1473 cb_size >> s->ps.sps->vshift[1],
1476 cb_size >> s->ps.sps->hshift[2],
1477 cb_size >> s->ps.sps->vshift[2],
2181 int cb_size = 1 << log2_cb_size;
2184 int length = cb_size >> log2_min_cb_size;
2226 hls_prediction_unit(s, x0, y0, cb_size, cb_size, log2_cb_size, 0, idx);
2264 hls_prediction_unit(s, x0, y0, cb_size, cb_size, log2_cb_size, 0, idx);
2267 hls_prediction_unit(s, x0, y0, cb_size, cb_size / 2, log2_cb_size, 0, idx);
2268 hls_prediction_unit(s, x0, y0 + cb_size / 2, cb_size, cb_size / 2, log2_cb_size, 1, idx);
2271 hls_prediction_unit(s, x0, y0, cb_size / 2, cb_size, log2_cb_size, 0, idx - 1);
2272 hls_prediction_unit(s, x0 + cb_size / 2, y0, cb_size / 2, cb_size, log2_cb_size, 1, idx - 1);
2275 hls_prediction_unit(s, x0, y0, cb_size, cb_size / 4, log2_cb_size, 0, idx);
2276 hls_prediction_unit(s, x0, y0 + cb_size / 4, cb_size, cb_size * 3 / 4, log2_cb_size, 1, idx);
2279 hls_prediction_unit(s, x0, y0, cb_size, cb_size * 3 / 4, log2_cb_size, 0, idx);
2280 hls_prediction_unit(s, x0, y0 + cb_size * 3 / 4, cb_size, cb_size / 4, log2_cb_size, 1, idx);
2283 hls_prediction_unit(s, x0, y0, cb_size / 4, cb_size, log2_cb_size, 0, idx - 2);
2284 hls_prediction_unit(s, x0 + cb_size / 4, y0, cb_size * 3 / 4, cb_size, log2_cb_size, 1, idx - 2);
2287 hls_prediction_unit(s, x0, y0, cb_size * 3 / 4, cb_size, log2_cb_size, 0, idx - 2);
2288 hls_prediction_unit(s, x0 + cb_size * 3 / 4, y0, cb_size / 4, cb_size, log2_cb_size, 1, idx - 2);
2291 hls_prediction_unit(s, x0, y0, cb_size / 2, cb_size / 2, log2_cb_size, 0, idx - 1);
2292 hls_prediction_unit(s, x0 + cb_size / 2, y0, cb_size / 2, cb_size / 2, log2_cb_size, 1, idx - 1);
2293 hls_prediction_unit(s, x0, y0 + cb_size / 2, cb_size / 2, cb_size / 2, log2_cb_size, 2, idx - 1);
2294 hls_prediction_unit(s, x0 + cb_size / 2, y0 + cb_size / 2, cb_size / 2, cb_size / 2, log2_cb_size, 3, idx - 1);
2346 const int cb_size = 1 << log2_cb_size;
2351 if (x0 + cb_size <= s->ps.sps->width &&
2352 y0 + cb_size <= s->ps.sps->height &&
2371 const int cb_size_split = cb_size >> 1;
2411 if ((!((x0 + cb_size) %
2413 (x0 + cb_size >= s->ps.sps->width)) &&
2414 (!((y0 + cb_size) %
2416 (y0 + cb_size >= s->ps.sps->height))) {