• 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 defs:x_ctb

2219 static void hls_decode_neighbour(HEVCContext *s, int x_ctb, int y_ctb,
2233 if (x_ctb == 0 && (y_ctb & (ctb_size - 1)) == 0)
2238 int idxX = s->pps->col_idxX[x_ctb >> s->sps->log2_ctb_size];
2239 lc->end_of_tiles_x = x_ctb + (s->pps->column_width[idxX] << s->sps->log2_ctb_size);
2249 tile_left_boundary = x_ctb > 0 &&
2251 slice_left_boundary = x_ctb > 0 &&
2265 lc->ctb_left_flag = ((x_ctb > 0) && (ctb_addr_in_slice > 0) && !tile_left_boundary);
2268 lc->ctb_up_left_flag = ((x_ctb > 0) && (y_ctb > 0) && (ctb_addr_in_slice-1 >= s->sps->ctb_width) && (s->pps->tile_id[ctb_addr_ts] == s->pps->tile_id[s->pps->ctb_addr_rs_to_ts[ctb_addr_rs-1 - s->sps->ctb_width]]));
2276 int x_ctb = 0;
2296 x_ctb = (ctb_addr_rs % ((s->sps->width + ctb_size - 1) >> s->sps->log2_ctb_size)) << s->sps->log2_ctb_size;
2298 hls_decode_neighbour(s, x_ctb, y_ctb, ctb_addr_ts);
2302 hls_sao_param(s, x_ctb >> s->sps->log2_ctb_size, y_ctb >> s->sps->log2_ctb_size);
2308 more_data = hls_coding_quadtree(s, x_ctb, y_ctb, s->sps->log2_ctb_size, 0);
2317 ff_hevc_hls_filters(s, x_ctb, y_ctb, ctb_size);
2320 if (x_ctb + ctb_size >= s->sps->width &&
2322 ff_hevc_hls_filter(s, x_ctb, y_ctb, ctb_size);
2363 int x_ctb = (ctb_addr_rs % s->sps->ctb_width) << s->sps->log2_ctb_size;
2366 hls_decode_neighbour(s, x_ctb, y_ctb, ctb_addr_ts);
2376 hls_sao_param(s, x_ctb >> s->sps->log2_ctb_size, y_ctb >> s->sps->log2_ctb_size);
2377 more_data = hls_coding_quadtree(s, x_ctb, y_ctb, s->sps->log2_ctb_size, 0);
2388 ff_hevc_hls_filters(s, x_ctb, y_ctb, ctb_size);
2390 if (!more_data && (x_ctb+ctb_size) < s->sps->width && ctb_row != s->sh.num_entry_point_offsets) {
2396 if ((x_ctb+ctb_size) >= s->sps->width && (y_ctb+ctb_size) >= s->sps->height ) {
2397 ff_hevc_hls_filter(s, x_ctb, y_ctb, ctb_size);
2402 x_ctb+=ctb_size;
2404 if(x_ctb >= s->sps->width) {