Home
last modified time | relevance | path

Searched refs:y_pos (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dmotion_comp.cpp48 uint32 x_pos, y_pos; in AVCMBMotionComp() local
94 y_pos = (offset_y << 2) + *mv; /*quarter pel */ in AVCMBMotionComp()
99 eLumaMotionComp(ref_l, picPitch, picHeight, x_pos, y_pos, in AVCMBMotionComp()
104 eChromaMotionComp(ref_Cb, picWidth >> 1, picHeight >> 1, x_pos, y_pos, in AVCMBMotionComp()
107 eChromaMotionComp(ref_Cr, picWidth >> 1, picHeight >> 1, x_pos, y_pos, in AVCMBMotionComp()
122 int x_pos, int y_pos, in eLumaMotionComp() argument
133 dy = y_pos & 3; in eLumaMotionComp()
135 y_pos = y_pos >> 2; in eLumaMotionComp()
141 ref += y_pos * picpitch + x_pos; in eLumaMotionComp()
149 ref += y_pos * picpitch + x_pos; in eLumaMotionComp()
[all …]
Dintra_est.cpp38 int y_pos = (video->mb_y) << 4; in IntraDecisionABE() local
39 uint8 *orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos; in IntraDecisionABE()
47 ((y_pos >> 4) != (int)video->PicHeightInMbs - 1) && in IntraDecisionABE()
67 offset = (y_pos >> 2) * picPitch + (x_pos >> 1); in IntraDecisionABE()
69 orgY_2 = currInput->YCbCr[1] + offset + (y_pos >> 2) * (orgPitch - picPitch); in IntraDecisionABE()
83 orgY_2 = currInput->YCbCr[2] + offset + (y_pos >> 2) * (orgPitch - picPitch); in IntraDecisionABE()
119 int y_pos = (video->mb_y) << 4; in MBIntraSearch() local
143 orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos; in MBIntraSearch()
212 int y_pos = (video->mb_y) << 4; in intrapred_luma_16x16() local
215 int offset = y_pos * pitch + x_pos; in intrapred_luma_16x16()
[all …]
Davcenc_lib.h426 int x_pos, int y_pos,
456 int x_pos, int y_pos, uint8 *pred, int pred_pitch,
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Ddcac_prediction.cpp42 int y_pos = video->mbnum_row; in doDCACPrediction() local
83 if (!comp && y_pos && !(video->headerInfo.Mode[mbnum-nMBPerRow]&INTRA_MASK)) /* not intra */ in doDCACPrediction()
102 if (x_pos == 0 && y_pos == 0) in doDCACPrediction()
116 else if (y_pos == 0) in doDCACPrediction()
218 int y_pos = video->mbnum_row; in doDCACPrediction_I() local
261 if (x_pos == 0 && y_pos == 0) in doDCACPrediction_I()
274 else if (y_pos == 0) in doDCACPrediction_I()
Dcombined_decode.cpp553 int y_pos = video->mbnum_row; local
555 int32 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
563 pp_mod[0] = video->pstprcTypCur + (y_pos << 1) * (MB_in_width << 1) + (x_pos << 1);
Ddatapart_decode.cpp637 int y_pos = video->mbnum_row; in GetMBData_DataPart() local
653 pp_mod[0] = video->pstprcTypCur + (y_pos << 1) * (MB_in_width << 1) + (x_pos << 1); in GetMBData_DataPart()
715 offset = (int32)(y_pos << 4) * width + (x_pos << 4); in GetMBData_DataPart()
Dblock_idct.cpp230 int y_pos = video->mbnum_row; in MBlockIDCT() local
235 offset = (int32)(y_pos << 4) * width + (x_pos << 4); in MBlockIDCT()
Dvlc_decode.cpp145 int y_pos = video->mbnum_row; in PV_GetMBvectors() local
147 int pos = (x_pos + y_pos * doubleWidth) << 1; in PV_GetMBvectors()
/frameworks/av/media/libstagefright/codecs/avc/common/src/
Ddeblock.cpp121 int y_pos = video->mb_y; in MBInLoopDeblock() local
125 offset = (y_pos << 4) * pitch; in MBInLoopDeblock()
139 if (y_pos) /* not the 0th row */ in MBInLoopDeblock()
181 DeblockMb(video, x_pos, y_pos, pred_block + 84, pred_block + 452, pred_block + 596); in MBInLoopDeblock()
188 if (y_pos) /* the first row */ in MBInLoopDeblock()
277 DeblockMb(video, x_pos, y_pos, curL, curCb, curCr); in MBInLoopDeblock()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dvlc_encode.cpp2027 Int y_pos = video->outputMB->mb_y; in DCACPred() local
2069 if (y_pos > 0) in DCACPred()
2146 if ((x_pos == 0) && y_pos == 0) in DCACPred()
2161 else if (y_pos == 0) in DCACPred()
2210 if ((x_pos == 0) && y_pos == 0) /* top left corner */ in DCACPred()
2306 else if (y_pos == 0) /* top row */ in DCACPred()