Searched defs:vlc_code_mag (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp137 int vlc_code_mag; local
164 status = PV_VlcDecMV(stream, &vlc_code_mag);
170 mvx += (MOT)vlc_code_mag;
174 status = PV_VlcDecMV(stream, &vlc_code_mag);
180 mvy += (MOT)vlc_code_mag;
191 status = PV_VlcDecMV(stream, &vlc_code_mag);
197 mvx += (MOT)vlc_code_mag;
201 status = PV_VlcDecMV(stream, &vlc_code_mag);
208 mvy += (MOT)vlc_code_mag;
322 int vlc_code_mag, /* <
319 PV_DeScaleMVD( int f_code, int residual, int vlc_code_mag, MOT *vector ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A 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; local
2736 ScaleMVD(f_code, dmv, &residual, &vlc_code_mag);
2738 if (vlc_code_mag < 0)
2739 entry = vlc_code_mag + 65;
2741 entry = vlc_code_mag;
2745 if ((f_code != 1) && (vlc_code_mag != 0))
2759 Int *vlc_code_mag /* --> value to be VLC coded */
2782 *vlc_code_mag = 0;
2787 *vlc_code_mag
[all...]

Completed in 600 milliseconds