Searched refs:pmvx (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libstagefright/codecs/avc/common/src/ |
D | deblock.cpp | 737 int16 *ptr, *pmvx, *pmvy; in GetStrength_VerticalEdges() local 765 pmvx = (int16*)(MbQ->mvL0 + 1); // points to 4x4 block #1,not #0 in GetStrength_VerticalEdges() 766 pmvy = pmvx + 1; in GetStrength_VerticalEdges() 790 tmp = *pmvx - *(pmvx - 2); in GetStrength_VerticalEdges() 799 pmvx += 2; in GetStrength_VerticalEdges() 806 tmp = *pmvx - *(pmvx - 2); in GetStrength_VerticalEdges() 815 pmvx += 2; in GetStrength_VerticalEdges() 823 tmp = *pmvx - *(pmvx - 2); in GetStrength_VerticalEdges() 849 pmvx += 4; in GetStrength_VerticalEdges() 856 tmp = *pmvx - *(pmvx - 2); in GetStrength_VerticalEdges() [all …]
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | vlc_encode.cpp | 985 Int pmvx, pmvy; in MBVlcEncodeDataPar_P_VOP() local 1055 find_pmvs(video, 0, &pmvx, &pmvy); /* Get predicted motion vectors */ in MBVlcEncodeDataPar_P_VOP() 1056 …WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].x - pmvx, bs1); /* Write x to … in MBVlcEncodeDataPar_P_VOP() 1063 find_pmvs(video, i, &pmvx, &pmvy); in MBVlcEncodeDataPar_P_VOP() 1064 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].x - pmvx, bs1); in MBVlcEncodeDataPar_P_VOP() 1259 Int pmvx, pmvy; in MBVlcEncodeCombined_P_VOP() local 1342 find_pmvs(video, 0, &pmvx, &pmvy); /* Get predicted motion vectors */ in MBVlcEncodeCombined_P_VOP() 1343 …WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].x - pmvx, bs1); /* Write x to … in MBVlcEncodeCombined_P_VOP() 1350 find_pmvs(video, i, &pmvx, &pmvy); in MBVlcEncodeCombined_P_VOP() 1351 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].x - pmvx, bs1); in MBVlcEncodeCombined_P_VOP()
|