Searched refs:x_pos (Results 1 – 7 of 7) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | dcac_prediction.cpp | 41 int x_pos = video->mbnum_col; in doDCACPrediction() local 52 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in doDCACPrediction() 79 if (!comp && x_pos && !(video->headerInfo.Mode[mbnum-1]&INTRA_MASK)) /* not intra */ in doDCACPrediction() 102 if (x_pos == 0 && y_pos == 0) in doDCACPrediction() 108 else if (x_pos == 0) in doDCACPrediction() 217 int x_pos = video->mbnum_col; in doDCACPrediction_I() local 223 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in doDCACPrediction_I() 261 if (x_pos == 0 && y_pos == 0) in doDCACPrediction_I() 266 else if (x_pos == 0) in doDCACPrediction_I()
|
D | combined_decode.cpp | 350 int x_pos = video->mbnum_col; in GetMBheader() local 352 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in GetMBheader() 548 int x_pos = video->mbnum_col; local 549 int32 offset = (int32)(y_pos << 4) * width + (x_pos << 4); 671 …BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->… 681 …BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->… 707 …BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->… 722 …BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->…
|
D | vlc_dequant.cpp | 61 int x_pos = video->mbnum_col; in VlcDequantMpegIntraBlock() local 62 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in VlcDequantMpegIntraBlock() 512 int x_pos = video->mbnum_col; in VlcDequantH263IntraBlock() local 513 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in VlcDequantH263IntraBlock() 814 int x_pos = video->mbnum_col; in VlcDequantH263IntraBlock_SH() local 815 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in VlcDequantH263IntraBlock_SH()
|
D | block_idct.cpp | 229 int x_pos = video->mbnum_col; in MBlockIDCT() local 235 offset = (int32)(y_pos << 4) * width + (x_pos << 4); in MBlockIDCT() 238 cu_comp = currVop->uChan + (offset >> 2) + (x_pos << 2); in MBlockIDCT() 239 cv_comp = currVop->vChan + (offset >> 2) + (x_pos << 2); in MBlockIDCT()
|
D | datapart_decode.cpp | 630 int x_pos = video->mbnum_col; in GetMBData_DataPart() local 691 offset = (int32)(y_pos << 4) * width + (x_pos << 4); in GetMBData_DataPart() 727 …BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->… in GetMBData_DataPart() 743 …BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->… in GetMBData_DataPart()
|
D | vlc_decode.cpp | 144 int x_pos = video->mbnum_col; in PV_GetMBvectors() local 147 int pos = (x_pos + y_pos * doubleWidth) << 1; in PV_GetMBvectors()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | vlc_encode.cpp | 2026 Int x_pos = video->outputMB->mb_x; /* 5/28/01 */ in DCACPred() local 2084 M4VENC_MEMSET(DCAC_row[x_pos][0], 0, sizeof(Short) << 5); in DCACPred() 2088 if (x_pos > 0) in DCACPred() 2146 if ((x_pos == 0) && y_pos == 0) in DCACPred() 2152 else if (x_pos == 0) in DCACPred() 2210 if ((x_pos == 0) && y_pos == 0) /* top left corner */ in DCACPred() 2239 DCAC = DCAC_row[x_pos][b_xtab]; in DCACPred() 2257 else if (x_pos == 0) /* left edge */ in DCACPred() 2288 DCAC = DCAC_row[x_pos][b_xtab]; in DCACPred() 2336 DCAC = DCAC_row[x_pos][b_xtab]; in DCACPred() [all …]
|