Home
last modified time | relevance | path

Searched refs:vlc_code_mag (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dvlc_decode.cpp137 int vlc_code_mag; in PV_GetMBvectors() local
164 status = PV_VlcDecMV(stream, &vlc_code_mag); in PV_GetMBvectors()
170 mvx += (MOT)vlc_code_mag; in PV_GetMBvectors()
174 status = PV_VlcDecMV(stream, &vlc_code_mag); in PV_GetMBvectors()
180 mvy += (MOT)vlc_code_mag; in PV_GetMBvectors()
191 status = PV_VlcDecMV(stream, &vlc_code_mag); in PV_GetMBvectors()
197 mvx += (MOT)vlc_code_mag; in PV_GetMBvectors()
201 status = PV_VlcDecMV(stream, &vlc_code_mag); in PV_GetMBvectors()
208 mvy += (MOT)vlc_code_mag; in PV_GetMBvectors()
322 int vlc_code_mag, /* <-- part of the MV Diff. VLC coded */ in PV_DeScaleMVD() argument
[all …]
Dvlc_decode.h97 PV_STATUS PV_DeScaleMVD(int f_code, int residual, int vlc_code_mag, MOT *vector);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dvlc_encode.cpp175 Void ScaleMVD(Int f_code, Int diff_vector, Int *residual, Int *vlc_code_mag);
2734 Int residual, vlc_code_mag, bits, entry; in WriteMVcomponent() local
2736 ScaleMVD(f_code, dmv, &residual, &vlc_code_mag); in WriteMVcomponent()
2738 if (vlc_code_mag < 0) in WriteMVcomponent()
2739 entry = vlc_code_mag + 65; in WriteMVcomponent()
2741 entry = vlc_code_mag; in WriteMVcomponent()
2745 if ((f_code != 1) && (vlc_code_mag != 0)) in WriteMVcomponent()
2759 Int *vlc_code_mag /* --> value to be VLC coded */ in ScaleMVD() argument
2782 *vlc_code_mag = 0; in ScaleMVD()
2787 *vlc_code_mag = diff_vector; in ScaleMVD()
[all …]