• 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:lc

44     HEVCLocalContext *lc = s->HEVClc;
48 lc->na.cand_up = (lc->ctb_up_flag || y0b);
49 lc->na.cand_left = (lc->ctb_left_flag || x0b);
50 lc->na.cand_up_left = (!x0b && !y0b) ? lc->ctb_up_left_flag : lc->na.cand_left && lc->na.cand_up;
51 lc->na.cand_up_right_sap =
53 lc->ctb_up_right_flag && !y0b : lc->na.cand_up;
54 lc->na.cand_up_right =
56 lc->ctb_up_right_flag && !y0b : lc->na.cand_up )
57 && (x0 + nPbW) < lc->end_of_tiles_x;
58 lc->na.cand_bottom_left = ((y0 + nPbH) >= lc->end_of_tiles_y) ? 0 : lc->na.cand_left;
91 static int same_prediction_block(HEVCLocalContext *lc, int log2_cb_size,
97 lc->cu.x + nPbW > xA1 &&
98 lc->cu.y + nPbH <= yA1);
108 HEVCLocalContext *lc = s->HEVClc;
110 if (lc->cu.x < xA1 && lc->cu.y < yA1 &&
111 (lc->cu.x + (1 << log2_cb_size)) > xA1 &&
112 (lc->cu.y + (1 << log2_cb_size)) > yA1)
113 return same_prediction_block(lc, log2_cb_size, x0, y0,
321 HEVCLocalContext *lc = s->HEVClc;
327 const int cand_bottom_left = lc->na.cand_bottom_left;
328 const int cand_left = lc->na.cand_left;
329 const int cand_up_left = lc->na.cand_up_left;
330 const int cand_up = lc->na.cand_up;
331 const int cand_up_right = lc->na.cand_up_right_sap;
380 (lc->cu.part_mode == PART_Nx2N ||
381 lc->cu.part_mode == PART_nLx2N ||
382 lc->cu.part_mode == PART_nRx2N) ||
397 (lc->cu.part_mode == PART_2NxN ||
398 lc->cu.part_mode == PART_2NxnU ||
399 lc->cu.part_mode == PART_2NxnD) ||
551 HEVCLocalContext *lc = s->HEVClc;
555 x0 = lc->cu.x;
556 y0 = lc->cu.y;
646 HEVCLocalContext *lc = s->HEVClc;
683 int cand_up = (lc->ctb_up_flag || y0b);
684 int cand_left = (lc->ctb_left_flag || x0b);
686 (!x0b && !y0b) ? lc->ctb_up_left_flag : cand_left && cand_up;
689 x0 + nPbW >= lc->end_of_tiles_x) ? lc->ctb_up_right_flag && !y0b
691 int cand_bottom_left = (y0 + nPbH >= lc->end_of_tiles_y) ? 0 : cand_left;