Searched refs:xpred (Results 1 – 6 of 6) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | mb_motion_comp.cpp | 154 int xpred, ypred; in MBMotionComp() local 265 xpred = (int)((xpos << 1) + px[0]); in MBMotionComp() 280 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) && in MBMotionComp() 286 GetPredAdvBTable[ypred&1][xpred&1](c_prev + (xpred >> 1) + ((ypred >> 1)*width), in MBMotionComp() 293 GetPredOutside(xpred, ypred, c_prev, in MBMotionComp() 301 xpred = (int)(((xpos + B_SIZE) << 1) + px[1]); in MBMotionComp() 316 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) && in MBMotionComp() 321 GetPredAdvBTable[ypred&1][xpred&1](c_prev + (xpred >> 1) + ((ypred >> 1)*width), in MBMotionComp() 328 GetPredOutside(xpred, ypred, c_prev, in MBMotionComp() 337 xpred = (int)((xpos << 1) + px[2]); in MBMotionComp() [all …]
|
D | pp_semaphore_luma.cpp | 113 int xpred, /* i */ in pp_semaphore_luma() argument 139 if (xpred >= 0 && xpred <= ((width << 1) - (2*MB_SIZE)) && ypred >= 0 && in pp_semaphore_luma() 153 mmvx = xpred >> 4; in pp_semaphore_luma() 254 mmvx = (xpred + ((kk & 1) << 3)) >> 4; in pp_semaphore_luma()
|
D | pp_semaphore_chroma_inter.cpp | 112 int xpred, /* i */ in pp_semaphore_chroma_inter() argument 137 mmvx = xpred >> 4; /* block x coor */ in pp_semaphore_chroma_inter()
|
D | mp4dec_lib.h | 132 int xpred, /* i */ 145 int xpred, /* i */ 175 int xpred, /* i */ 191 int xpred, /* i */
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | motion_comp.cpp | 110 Int xpred, ypred; in getMotionCompensatedMB() local 138 xpred = (xpos << 1) + dx ; in getMotionCompensatedMB() 142 EncPrediction_INTER(xpred, ypred, c_prev, c_rec, in getMotionCompensatedMB() 151 xpred = xpos + dx; in getMotionCompensatedMB() 157 EncPrediction_Chrom(xpred, ypred, cu_prev, cv_prev, cu_rec, cv_rec, in getMotionCompensatedMB() 179 xpred = xpos + dx; in getMotionCompensatedMB() 181 EncPrediction_Chrom(xpred, ypred, cu_prev, cv_prev, cu_rec, cv_rec, in getMotionCompensatedMB() 201 Int xpred, /* i */ in EncPrediction_INTER() argument 209 c_prev += (xpred >> 1) + ((ypred >> 1) * lx); in EncPrediction_INTER() 211 GetPredAdvBTable[ypred&1][xpred&1](c_prev, c_rec, lx, round1); in EncPrediction_INTER() [all …]
|
D | mp4enc_lib.h | 102 void EncPrediction_INTER(Int xpred, Int ypred, UChar *c_prev, UChar *c_rec, 105 void EncPrediction_INTER4V(Int xpred, Int ypred, MOT *mot, UChar *c_prev, UChar *c_rec, 108 void EncPrediction_Chrom(Int xpred, Int ypred, UChar *cu_prev, UChar *cv_prev, UChar *cu_rec,
|