Searched refs:y_pos (Results 1 – 10 of 10) sorted by relevance
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | motion_comp.cpp | 48 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 …]
|
D | intra_est.cpp | 38 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 …]
|
D | avcenc_lib.h | 426 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/ |
D | dcac_prediction.cpp | 42 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()
|
D | combined_decode.cpp | 553 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);
|
D | datapart_decode.cpp | 637 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()
|
D | block_idct.cpp | 230 int y_pos = video->mbnum_row; in MBlockIDCT() local 235 offset = (int32)(y_pos << 4) * width + (x_pos << 4); in MBlockIDCT()
|
D | vlc_decode.cpp | 145 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/ |
D | deblock.cpp | 121 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/ |
D | vlc_encode.cpp | 2027 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()
|