OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pelu
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
adaptive_smooth_no_mmx.cpp
231
uint8
pelu
;
local
261
/ are saved and used as values of
pelu
when the
264
pelu
= *(Rec_Y_ptr - width); /* assigning value of pelu0 to
pelu
*/
271
*sum_V_ptr++ =
pelu
+ (pelc << 1) + pell; /* weighted sum of pelu0,
275
*sign_V_ptr++ = INDEX(
pelu
, thr) + INDEX(pelc, thr) + INDEX(pell, thr);
278
pelu
= *(Rec_Y_ptr - width); /* assigning value of pelu1 to
pelu
*/
285
*sum_V_ptr++ =
pelu
+ (pelc << 1) + pell; /* weighted sum of pelu1,
289
*sign_V_ptr++ = INDEX(
pelu
, thr) + INDEX(pelc, thr) + INDEX(pell, thr)
[
all
...]
deringing_chroma.cpp
46
uint8
pelu
, pelc, pell;
local
74
pelu
= *(ptr - width);
78
*ptr2++ =
pelu
+ (pelc << 1) + pell;
79
*ptr3++ = INDEX(
pelu
, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
81
pelu
= *(ptr - width);
85
*ptr2++ =
pelu
+ (pelc << 1) + pell;
86
*ptr3++ = INDEX(
pelu
, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
90
pelu
= *(ptr - width);
94
*ptr2 =
pelu
+ (pelc << 1) + pell;
95
*ptr3 = INDEX(
pelu
, thres) + INDEX(pelc, thres) + INDEX(pell, thres)
[
all
...]
Completed in 3119 milliseconds