Home
last modified time | relevance | path

Searched refs:mb_x (Results 1 – 16 of 16) sorted by relevance

/external/opencore/codecs_v2/video/m4v_h263/enc/src/
Dcombined_encode.cpp127 video->outputMB->mb_x = ind_x; /* 5/28/01 */ in EncodeFrameCombinedMode()
276 Int ind_x = video->outputMB->mb_x, ind_y = video->outputMB->mb_y; in EncodeSliceCombinedMode()
397 video->outputMB->mb_x = ind_x; /* 5/28/01, do not remove */ in EncodeSliceCombinedMode()
519 video->outputMB->mb_x++; in EncodeSliceCombinedMode()
520 if (video->outputMB->mb_x >= currVol->nMBPerRow) in EncodeSliceCombinedMode()
522 video->outputMB->mb_x = 0; in EncodeSliceCombinedMode()
584 video->outputMB->mb_x = 0; in EncodeSliceCombinedMode()
Ddatapart_encode.cpp102 video->outputMB->mb_x = ind_x; /* 5/28/01 */ in EncodeFrameDataPartMode()
223 Int ind_x = video->outputMB->mb_x, ind_y = video->outputMB->mb_y; in EncodeSliceDataPartMode()
310 video->outputMB->mb_x = ind_x; /* 5/28/01 */ in EncodeSliceDataPartMode()
Dfastcodemb.cpp76 Int ind_x = video->outputMB->mb_x; in CodeMB_H263()
307 Int ind_x = video->outputMB->mb_x; in CodeMB_MPEG()
Dmp4lib_int.h134 Int mb_x; /* X coordinate */ member
Dvlc_encode.cpp2026 Int x_pos = video->outputMB->mb_x; /* 5/28/01 */ in DCACPred()
/external/opencore/codecs_v2/video/avc_h264/dec/src/
Dpred_intra.cpp44 offset = (video->mb_y << 4) * pitch + (video->mb_x << 4); in IntraMBPrediction()
133 video->pintra_pred_top = video->intra_pred_top + (video->mb_x << 4); in IntraMBPrediction()
223 offset = (offset >> 2) + (video->mb_x << 2); //((video->mb_y << 3)* pitch + (video->mb_x << 3)); in IntraMBPrediction()
228 video->pintra_pred_top_cb = video->intra_pred_top_cb + (video->mb_x << 3); in IntraMBPrediction()
231 video->pintra_pred_top_cr = video->intra_pred_top_cr + (video->mb_x << 3); in IntraMBPrediction()
372 int mb_x = video->mb_x; in SaveNeighborForIntraPred() local
386 offset = (offset << 2) - (mb_x << 4); in SaveNeighborForIntraPred()
391 video->intra_pred_topleft = video->intra_pred_top[(mb_x<<4)+15]; in SaveNeighborForIntraPred()
392 video->intra_pred_topleft_cb = video->intra_pred_top_cb[(mb_x<<3)+7]; in SaveNeighborForIntraPred()
393 video->intra_pred_topleft_cr = video->intra_pred_top_cr[(mb_x<<3)+7]; in SaveNeighborForIntraPred()
[all …]
Dresidual.cpp26 int mb_x, mb_y, offset1; in DecodeIntraPCM() local
31 mb_x = video->mb_x; in DecodeIntraPCM()
38 offset1 = (mb_x << 4) + (mb_y << 4) * video->PicWidthInSamplesL; in DecodeIntraPCM()
93 offset1 = (offset1 >> 2) + (mb_x << 2); in DecodeIntraPCM()
Dslice.cpp67 video->mb_x = CurrMbAddr % video->PicWidthInMbs; in DecodeSlice()
736 video->mb_x = CurrMbAddr % video->PicWidthInMbs; in ConcealSlice()
Dpred_inter.cpp51 int x_position = (video->mb_x << 4); in InterMBPrediction()
/external/opencore/codecs_v2/video/avc_h264/common/src/
Dmb_access.cpp32 if (video->mb_x) in InitNeighborAvailability()
44 if (video->mb_x < (PicWidthInMbs - 1)) in InitNeighborAvailability()
Ddeblock.cpp57 static void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *Src…
118 int x_pos = video->mb_x; in MBInLoopDeblock()
288 void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *SrcV) in DeblockMb() argument
292 int filterLeftMbEdgeFlag = (mb_x != 0); in DeblockMb()
297 int mbNum = mb_y * video->PicWidthInMbs + mb_x; in DeblockMb()
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Dintra_est.cpp38 int x_pos = (video->mb_x) << 4; in IntraDecisionABE()
119 int x_pos = (video->mb_x) << 4; in MBIntraSearch()
212 int x_pos = (video->mb_x) << 4; in intrapred_luma_16x16()
637 int x = video->mb_x << 4; in mb_intra4x4_search()
1369 int x_pos = video->mb_x << 3; in chroma_intra_search()
2019 offset = (video->mb_y << 4) * pitch + (video->mb_x << 4); in MBIntraSearch()
2126 offset = (offset >> 2) + (video->mb_x << 2); in MBIntraSearch()
Dresidual.cpp27 int x_position = (video->mb_x << 4); in EncodeIntraPCM()
Dslice.cpp48 video->mb_x = CurrMbAddr % video->PicWidthInMbs; in AVCEncodeSlice()
169 int x_position = (video->mb_x << 4); in EncodeMB()
Dmotion_comp.cpp54 int x_position = (video->mb_x << 4); in AVCMBMotionComp()
/external/opencore/codecs_v2/video/avc_h264/common/include/
Davcint_common.h683 int mb_x; /* x-coordinate of the current mbNum */ member