Home
last modified time | relevance | path

Searched refs:pelc (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dadaptive_smooth_no_mmx.cpp232 uint8 pelc; in AdaptiveSmooth_NoMMX() local
265 *pelp++ = pelc = *Rec_Y_ptr; /* assigning value of pelc0 to pelc and 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()
279 *pelp++ = pelc = *Rec_Y_ptr; /* assigning value of pelc1 to pelc and 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()
300 *pelp++ = pelc = *Rec_Y_ptr; /* assigning value of pelc2 to pelc 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 …]
Dderinging_chroma.cpp46 uint8 pelu, pelc, pell; in Deringing_Chroma() local
75 pelc = *ptr; 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()
82 pelc = *ptr; 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()
91 pelc = *ptr; 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 …]