Searched refs:x_pos (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Ddcac_prediction.cpp41 int x_pos = video->mbnum_col; local
52 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos;
79 if (!comp && x_pos && !(video->headerInfo.Mode[mbnum-1]&INTRA_MASK)) /* not intra */
102 if (x_pos == 0 && y_pos == 0)
108 else if (x_pos == 0)
217 int x_pos = video->mbnum_col; local
223 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos;
261 if (x_pos == 0 && y_pos == 0)
266 else if (x_pos == 0)
H A Dcombined_decode.cpp350 int x_pos = video->mbnum_col; local
352 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos;
554 int x_pos = video->mbnum_col; 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);
707 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4],
731 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5],
785 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4],
809 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5],
H A Ddatapart_decode.cpp630 int x_pos = video->mbnum_col; 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);
755 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4],
775 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5],
H A Dblock_idct.cpp229 int x_pos = video->mbnum_col; local
235 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
238 cu_comp = currVop->uChan + (offset >> 2) + (x_pos << 2);
239 cv_comp = currVop->vChan + (offset >> 2) + (x_pos << 2);
H A Dvlc_dequant.cpp61 int x_pos = video->mbnum_col; local
62 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos;
512 int x_pos = video->mbnum_col; local
513 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos;
814 int x_pos = video->mbnum_col; local
815 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos;
H A Dvlc_decode.cpp144 int x_pos = video->mbnum_col; 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
93 x_pos = (offset_x << 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,
132 dx = x_pos & 3;
134 x_pos = x_pos >> 2; /* round it to full-pel resolution */
141 ref += y_pos * picpitch + x_pos;
121 eLumaMotionComp(uint8 *ref, int picpitch, int picheight, int x_pos, int y_pos, uint8 *pred, int pred_pitch, 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 Davcenc_lib.h417 \param "x_pos" "X-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,
H A Dintra_est.cpp37 int x_pos = (video->mb_x) << 4; local
39 uint8 *orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos;
46 if (((x_pos >> 4) != (int)video->PicWidthInMbs - 1) &&
67 offset = (y_pos >> 2) * picPitch + (x_pos >> 1);
118 int x_pos = (video->mb_x) << 4; local
143 orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos;
211 int x_pos = (video->mb_x) << 4; local
215 int offset = y_pos * pitch + x_pos;
1368 int x_pos = video->mb_x << 3; local
1371 int offset = y_pos * pitch + x_pos;
[all...]
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddeblock.cpp120 int x_pos = video->mb_x; local
127 curL = currPic->Sl + offset + (x_pos << 4);
130 offset += (x_pos << 3);
181 DeblockMb(video, x_pos, y_pos, pred_block + 84, pred_block + 452, pred_block + 596);
206 if (x_pos) /* find the width */
211 if (x_pos == (int)(video->PicWidthInMbs - 1))
248 if (x_pos != (int)(video->PicWidthInMbs - 1)) /* now copy from the right-most 4 columns to the left-most 4 columns */
277 DeblockMb(video, x_pos, y_pos, curL, curCb, curCr);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp2026 Int x_pos = video->outputMB->mb_x; /* 5/28/01 */ local
2081 /* set to 0 DCAC_row[x_pos][0..3] */
2084 M4VENC_MEMSET(DCAC_row[x_pos][0], 0, sizeof(Short) << 5);
2088 if (x_pos > 0)
2100 /* set to 0 DCAC_col[x_pos][0..3] */
2146 if ((x_pos == 0) && y_pos == 0)
2152 else if (x_pos == 0)
2210 if ((x_pos == 0) && y_pos == 0) /* top left corner */
2239 DCAC = DCAC_row[x_pos][b_xtab];
2257 else if (x_pos
[all...]

Completed in 137 milliseconds