OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:max_diff
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
deringing_chroma.cpp
37
int
max_diff
;
local
56
max_diff
= (QP_store[h_blk>>3] >> 2) + 4;
103
if (PV_ABS(*ptr - sum) >
max_diff
)
106
sum = *ptr +
max_diff
;
108
sum = *ptr -
max_diff
;
124
max_diff
= (QP_store[((((int32)v_blk*width)>>3))>>3] >> 2) + 4;
169
if (PV_ABS(*ptr - sum) >
max_diff
)
172
sum = *ptr +
max_diff
;
174
sum = *ptr -
max_diff
;
191
max_diff
= (QP_store[((((int32)v_blk*width)>>3)+h_blk)>>3] >> 2) + 4
[
all
...]
deringing_luma.cpp
37
int
max_diff
;
local
52
max_diff
= (QP_store[(MB_H)>>4] >> 2) + 4;
97
thr, width,
max_diff
);
109
max_diff
= (QP_store[((((int32)MB_V*width)>>4))>>4] >> 2) + 4;
151
thr, width,
max_diff
);
160
max_diff
= (QP_store[((((int32)MB_V*width)>>4)+MB_H)>>4] >> 2) + 4;
213
thr, width,
max_diff
);
216
width, thr,
max_diff
);
chvr_filter.cpp
45
int
max_diff
, thres, v0, h0, min_blk, max_blk;
local
442
max_diff
= (QP >> 2) + 4;
458
DeringAdaptiveSmoothMMX(ptr, width, thres,
max_diff
);
467
AdaptiveSmooth_NoMMX(rec, v0, h0, v0 + 1, h0 + 1, thres, width,
max_diff
);
526
max_diff
= (QP >> 2) + 4;
546
AdaptiveSmooth_NoMMX(rec, v0, h0, v0 - 3, h0 - 3, thres, width,
max_diff
);
Completed in 738 milliseconds