OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PV_ABS
(Results
1 - 13
of
13
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp
190
if (
PV_ABS
(a3_0) < (QP << 3))
198
A3_0 =
PV_ABS
(a3_0) - PV_MIN(
PV_ABS
(a3_1),
PV_ABS
(a3_2));
347
if (
PV_ABS
(a3_0) < (QP << 3))
355
A3_0 =
PV_ABS
(a3_0) - PV_MIN(
PV_ABS
(a3_1),
PV_ABS
(a3_2));
mb_motion_comp.cpp
230
dx = PV_SIGN(xsum) * (roundtab16[(
PV_ABS
(xsum)) & 0xF] +
231
(((
PV_ABS
(xsum)) >> 4) << 1));
237
dy = PV_SIGN(xsum) * (roundtab16[(
PV_ABS
(xsum)) & 0xF] +
238
(((
PV_ABS
(xsum)) >> 4) << 1));
mp4def.h
41
#define
PV_ABS
(x) (((x)<0)? -(x) : (x))
deringing_chroma.cpp
103
if (
PV_ABS
(*ptr - sum) > max_diff)
169
if (
PV_ABS
(*ptr - sum) > max_diff)
dcac_prediction.cpp
136
if ((
PV_ABS
((block_A - block_B))) < (
PV_ABS
((block_B - block_C))))
vlc_decode.cpp
337
diff_vector = ((
PV_ABS
(vlc_code_mag) - 1) << (f_code - 1)) + residual + 1;
[
all
...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp
145
PV_ABS
(mot[0].x + xh) +
PV_ABS
(mot[0].y + yh) <
PV_ABS
(mot[0].x + xhmin[0]) +
PV_ABS
(mot[0].y + yhmin[0]))
motion_est.cpp
916
else if ((d == dmin) &&
PV_ABS
(mvx[k]) +
PV_ABS
(mvy[k]) <
PV_ABS
(i0 - imin) +
PV_ABS
(j0 - jmin))
977
else if ((d == dmin) &&
PV_ABS
(i0 - i) +
PV_ABS
(j0 - j) <
PV_ABS
(i0 - imin) +
PV_ABS
(j0 - jmin))
[
all
...]
mp4def.h
113
#define
PV_ABS
(x) (((x)<0)? -(x) : (x))
sad_halfpel.cpp
84
sad +=
PV_ABS
(temp);
115
sad +=
PV_ABS
(temp);
158
sad +=
PV_ABS
(temp);
189
sad +=
PV_ABS
(temp);
246
sad +=
PV_ABS
(temp);
285
sad +=
PV_ABS
(temp);
320
sad +=
PV_ABS
(temp);
805
sad +=
PV_ABS
(temp);
834
sad +=
PV_ABS
(temp);
rate_control.cpp
638
if (
PV_ABS
(prev_counter_diff) >= rc->max_BitVariance_num ||
PV_ABS
(curr_counter_diff) >= rc->max_BitVariance_num) //
PV_ABS
(curr_counter_diff) >=
PV_ABS
(prev_counter_diff) )
737
PV_ABS
(prev_mad - curr_mad) >
PV_ABS
(pMP->pRDSamples[i][0].mad - curr_mad))
[
all
...]
vlc_encode.cpp
919
dquant = (
PV_ABS
(dquant) + 1);
921
dquant = (
PV_ABS
(dquant) - 1);
1020
dquant = (
PV_ABS
(dquant) + 1);
1022
dquant = (
PV_ABS
(dquant) - 1);
[
all
...]
motion_comp.cpp
173
dx = PV_SIGN(xsum) * (roundtab16[(
PV_ABS
(xsum)) & 0xF] +
174
(((
PV_ABS
(xsum)) >> 4) << 1));
175
dy = PV_SIGN(ysum) * (roundtab16[(
PV_ABS
(ysum)) & 0xF] +
176
(((
PV_ABS
(ysum)) >> 4) << 1));
[
all
...]
Completed in 1713 milliseconds