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

49 static inline int sub_left_prediction(HYuvContext *s, uint8_t *dst,
732 lefty = sub_left_prediction(s, s->temp[0], p->data[0], width , 0);
733 leftu = sub_left_prediction(s, s->temp[1], p->data[1], width2, 0);
734 leftv = sub_left_prediction(s, s->temp[2], p->data[2], width2, 0);
742 lefty = sub_left_prediction(s, s->temp[0], p->data[0] + p->linesize[0], width , lefty);
743 leftu = sub_left_prediction(s, s->temp[1], p->data[1] + p->linesize[1], width2, leftu);
744 leftv = sub_left_prediction(s, s->temp[2], p->data[2] + p->linesize[2], width2, leftv);
750 lefty = sub_left_prediction(s, s->temp[0], p->data[0] + fake_ystride, 4, lefty);
751 leftu = sub_left_prediction(s, s->temp[1], p->data[1] + fake_ustride, 2, leftu);
752 leftv = sub_left_prediction(s, s->temp[2], p->data[2] + fake_vstride, 2, leftv);
798 lefty = sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty);
800 lefty = sub_left_prediction(s, s->temp[0], ydst, width , lefty);
816 lefty = sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty);
817 leftu = sub_left_prediction(s, s->temp[1], s->temp[2], width2, leftu);
818 leftv = sub_left_prediction(s, s->temp[2], s->temp[2] + width2, width2, leftv);
820 lefty = sub_left_prediction(s, s->temp[0], ydst, width , lefty);
821 leftu = sub_left_prediction(s, s->temp[1], udst, width2, leftu);
822 leftv = sub_left_prediction(s, s->temp[2], vdst, width2, leftv);
899 left = sub_left_prediction(s, s->temp[0], p->data[plane], w , 0);
907 left = sub_left_prediction(s, s->temp[0], p->data[plane] + p->linesize[plane], w , left);
929 left = sub_left_prediction(s, s->temp[0], s->temp[1], w , left);
931 left = sub_left_prediction(s, s->temp[0], dst, w , left);