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

966 static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
972 itype = DC_128_PRED;
974 if(itype == VERT_PRED) itype = HOR_PRED;
975 if(itype == DC_PRED) itype = LEFT_DC_PRED;
977 if(itype == HOR_PRED) itype = VERT_PRED;
978 if(itype == DC_PRED) itype = TOP_DC_PRED;
979 if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
982 if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
983 if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
984 if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
990 r->h.pred4x4[itype](dst, prev, stride);
993 static inline int adjust_pred16(int itype, int up, int left)
996 itype = DC_128_PRED8x8;
998 if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
999 if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
1000 if(itype == DC_PRED8x8) itype = LEFT_DC_PRED8x8;
1002 if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
1003 if(itype == HOR_PRED8x8) itype = VERT_PRED8x8;
1004 if(itype == DC_PRED8x8) itype = TOP_DC_PRED8x8;
1006 return itype;
1034 int i, j, itype, has_ac;
1044 itype = ittrans16[intra_types[0]];
1045 itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1046 r->h.pred16x16[itype](dst, s->linesize);
1067 itype = ittrans16[intra_types[0]];
1068 if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
1069 itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
1076 r->h.pred8x8[itype](dst, s->uvlinesize);
1137 int itype = ittrans[intra_types[i*2+j*2*r->intra_types_stride]];
1138 rv34_pred_4x4_block(r, dst+4*i, s->uvlinesize, itype, acache[-4], acache[-1], !i && !j, acache[-3]);