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

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Ddcac_prediction.cpp42 int y_pos = video->mbnum_row; local
83 if (!comp && y_pos && !(video->headerInfo.Mode[mbnum-nMBPerRow]&INTRA_MASK)) /* not intra */
102 if (x_pos == 0 && y_pos == 0)
116 else if (y_pos == 0)
218 int y_pos = video->mbnum_row; local
261 if (x_pos == 0 && y_pos == 0)
274 else if (y_pos == 0)
H A 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);
H A Ddatapart_decode.cpp637 int y_pos = video->mbnum_row; local
653 pp_mod[0] = video->pstprcTypCur + (y_pos << 1) * (MB_in_width << 1) + (x_pos << 1);
715 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
H A Dblock_idct.cpp230 int y_pos = video->mbnum_row; local
235 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
H A Dvlc_decode.cpp145 int y_pos = video->mbnum_row; local
147 int pos = (x_pos + y_pos * doubleWidth) << 1;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp48 uint32 x_pos, y_pos; local
94 y_pos = (offset_y << 2) + *mv; /*quarter pel */
99 eLumaMotionComp(ref_l, picPitch, picHeight, x_pos, y_pos,
104 eChromaMotionComp(ref_Cb, picWidth >> 1, picHeight >> 1, x_pos, y_pos,
107 eChromaMotionComp(ref_Cr, picWidth >> 1, picHeight >> 1, x_pos, y_pos,
122 int x_pos, int y_pos,
133 dy = y_pos & 3;
135 y_pos = y_pos >> 2;
141 ref += y_pos * picpitc
121 eLumaMotionComp(uint8 *ref, int picpitch, int picheight, int x_pos, int y_pos, uint8 *pred, int pred_pitch, int blkwidth, int blkheight) argument
190 eCreateAlign(uint8 *ref, int picpitch, int y_pos, uint8 *out, int blkwidth, int blkheight) argument
1697 ePadChroma(uint8 *ref, int picwidth, int picheight, int picpitch, int x_pos, int y_pos) argument
1805 eChromaMotionComp(uint8 *ref, int picwidth, int picheight, int x_pos, int y_pos, uint8 *pred, int picpitch, int blkwidth, int blkheight) argument
[all...]
H A Dintra_est.cpp38 int y_pos = (video->mb_y) << 4; local
39 uint8 *orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos;
47 ((y_pos >> 4) != (int)video->PicHeightInMbs - 1) &&
67 offset = (y_pos >> 2) * picPitch + (x_pos >> 1);
69 orgY_2 = currInput->YCbCr[1] + offset + (y_pos >> 2) * (orgPitch - picPitch);
83 orgY_2 = currInput->YCbCr[2] + offset + (y_pos >> 2) * (orgPitch - picPitch);
119 int y_pos = (video->mb_y) << 4; local
143 orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos;
212 int y_pos = (video->mb_y) << 4; local
215 int offset = y_pos * pitc
1369 int y_pos = video->mb_y << 3; local
[all...]
H A Davcenc_lib.h418 \param "y_pos" "Y-coordinate of the predicted block in quarter pel resolution."
426 int x_pos, int y_pos,
456 int x_pos, int y_pos, uint8 *pred, int pred_pitch,
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddeblock.cpp121 int y_pos = video->mb_y; local
125 offset = (y_pos << 4) * pitch;
139 if (y_pos) /* not the 0th row */
181 DeblockMb(video, x_pos, y_pos, pred_block + 84, pred_block + 452, pred_block + 596);
188 if (y_pos) /* the first row */
277 DeblockMb(video, x_pos, y_pos, curL, curCb, curCr);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp2027 Int y_pos = video->outputMB->mb_y; local
2069 if (y_pos > 0)
2146 if ((x_pos == 0) && y_pos == 0)
2161 else if (y_pos == 0)
2210 if ((x_pos == 0) && y_pos == 0) /* top left corner */
2306 else if (y_pos == 0) /* top row */

Completed in 205 milliseconds