Home
last modified time | relevance | path

Searched refs:fcodeForward (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/codecs/m4v_h263/enc/src/
Dvop.cpp392 status = BitstreamPutBits(stream, 3, currVop->fcodeForward); /* vop_fcode_forward */ in EncodeVOPHeader()
529 fcode = currVop->fcodeForward; in EncodeVideoPacketHeader()
535 fcode = currVop->fcodeForward; in EncodeVideoPacketHeader()
567 /*status = */ BitstreamPutBits(bs, 3, currVop->fcodeForward); in EncodeVideoPacketHeader()
Dvlc_encode.cpp1056 …WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].x - pmvx, bs1); /* Write x to … in MBVlcEncodeDataPar_P_VOP()
1057 …WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].y - pmvy, bs1); /* Write y… in MBVlcEncodeDataPar_P_VOP()
1064 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].x - pmvx, bs1); in MBVlcEncodeDataPar_P_VOP()
1065 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].y - pmvy, bs1); in MBVlcEncodeDataPar_P_VOP()
1343 …WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].x - pmvx, bs1); /* Write x to … in MBVlcEncodeCombined_P_VOP()
1344 …WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][0].y - pmvy, bs1); /* Write y… in MBVlcEncodeCombined_P_VOP()
1351 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].x - pmvx, bs1); in MBVlcEncodeCombined_P_VOP()
1352 WriteMVcomponent(video->currVop->fcodeForward, video->mot[mbnum][i].y - pmvy, bs1); in MBVlcEncodeCombined_P_VOP()
Dmp4lib_int.h63 Int fcodeForward; /* VOP dynamic range of motion vectors */ member
Dmotion_est.cpp517 currVop->fcodeForward = (f_code_p > f_code_n ? f_code_p : f_code_n); in MotionEstimation()
/frameworks/av/media/codecs/m4v_h263/dec/src/
Dvop.cpp983 currVop->fcodeForward = 1; in DecodeVOPHeader()
987 currVop->fcodeForward = tmpvar; in DecodeVOPHeader()
991 currVop->fcodeForward = 0; in DecodeVOPHeader()
1532 currVop->fcodeForward = 1; in DecodeShortHeader()
1534 currVop->fcodeForward = 0; in DecodeShortHeader()
Dmp4lib_int.h71 int fcodeForward; /* VOP dynamic range of motion vectors */ member
Dpacket_util.cpp42 fcode_forward = currVop->fcodeForward; in PV_ReadVideoPacketHeader()
Dcombined_decode.cpp75 resync_marker_length = 16 + currVop->fcodeForward; in DecodeFrameCombinedMode()
Ddatapart_decode.cpp64 resync_marker_length = 16 + currVop->fcodeForward; in DecodeFrameDataPartMode()
Dvlc_decode.cpp136 int f_code_f = video->currVop->fcodeForward; in PV_GetMBvectors()