Searched refs:pelu (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | adaptive_smooth_no_mmx.cpp | 231 uint8 pelu; in AdaptiveSmooth_NoMMX() local 264 pelu = *(Rec_Y_ptr - width); /* assigning value of pelu0 to pelu */ in AdaptiveSmooth_NoMMX() 271 *sum_V_ptr++ = pelu + (pelc << 1) + pell; /* weighted sum of pelu0, in AdaptiveSmooth_NoMMX() 275 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr); in AdaptiveSmooth_NoMMX() 278 pelu = *(Rec_Y_ptr - width); /* assigning value of pelu1 to pelu */ in AdaptiveSmooth_NoMMX() 285 *sum_V_ptr++ = pelu + (pelc << 1) + pell; /* weighted sum of pelu1, in AdaptiveSmooth_NoMMX() 289 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr); in AdaptiveSmooth_NoMMX() 298 pelu = *(Rec_Y_ptr - width); /* assigning value of pelu2 to in AdaptiveSmooth_NoMMX() 307 *sum_V_ptr = pelu + (pelc << 1) + pell; in AdaptiveSmooth_NoMMX() 310 *sign_V_ptr = INDEX(pelu, thr) + INDEX(pelc, thr) + in AdaptiveSmooth_NoMMX() [all …]
|
D | deringing_chroma.cpp | 46 uint8 pelu, pelc, pell; in Deringing_Chroma() local 74 pelu = *(ptr - width); in Deringing_Chroma() 78 *ptr2++ = pelu + (pelc << 1) + pell; in Deringing_Chroma() 79 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres); in Deringing_Chroma() 81 pelu = *(ptr - width); in Deringing_Chroma() 85 *ptr2++ = pelu + (pelc << 1) + pell; in Deringing_Chroma() 86 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres); in Deringing_Chroma() 90 pelu = *(ptr - width); in Deringing_Chroma() 94 *ptr2 = pelu + (pelc << 1) + pell; in Deringing_Chroma() 95 *ptr3 = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres); in Deringing_Chroma() [all …]
|