Searched refs:max_diff (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dadaptive_smooth_no_mmx.cpp53 max_diff = value of type int that specifies the value that may be added
220 int max_diff /* i */
327 / sum by more than max_diff, then subract max_diff
329 if ((int)(*Rec_Y_ptr - sum) > max_diff)
331 sum = *Rec_Y_ptr - max_diff;
334 / sum by more than max_diff, then add max_diff
336 else if ((int)(*Rec_Y_ptr - sum) < -max_diff)
338 sum = *Rec_Y_ptr + max_diff;
[all...]
H A Dderinging_chroma.cpp37 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
[all...]
H A Dderinging_luma.cpp37 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);
H A Dchvr_filter.cpp45 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);
H A Dmp4dec_lib.h290 int thr, int width, int max_diff);

Completed in 158 milliseconds