Home
last modified time | relevance | path

Searched refs:ABS (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_deblocking.c347 else if ( (ABS(mv1 - mv2) >= 4) || (ABS(mv3 - mv4) >= 4) || in InnerBoundaryStrength()
375 if ( (ABS(tmp1 - tmp2) >= 4) || (ABS(tmp3 - tmp4) >= 4) || in InnerBoundaryStrength2()
403 (ABS(mb1->mv[ind1].hor - mb2->mv[ind2].hor) >= 4) || in EdgeBoundaryStrength()
404 (ABS(mb1->mv[ind1].ver - mb2->mv[ind2].ver) >= 4)) in EdgeBoundaryStrength()
437 else if ((ABS(mb1->mv[0].hor - mb2->mv[10].hor) >= 4) || in EdgeBoundaryStrengthTop()
438 (ABS(mb1->mv[0].ver - mb2->mv[10].ver) >= 4) || in EdgeBoundaryStrengthTop()
449 else if ((ABS(mb1->mv[1].hor - mb2->mv[11].hor) >= 4) || in EdgeBoundaryStrengthTop()
450 (ABS(mb1->mv[1].ver - mb2->mv[11].ver) >= 4) || in EdgeBoundaryStrengthTop()
461 else if ((ABS(mb1->mv[4].hor - mb2->mv[14].hor) >= 4) || in EdgeBoundaryStrengthTop()
462 (ABS(mb1->mv[4].ver - mb2->mv[14].ver) >= 4) || in EdgeBoundaryStrengthTop()
[all …]
Dh264bsd_util.h133 #define ABS(a) (((a) < 0) ? -(a) : (a)) macro
/frameworks/av/media/libstagefright/codecs/aacenc/src/
Dbit_cnt.c73 t0=ABS(t0); in count1_2_3_4_5_6_7_8_9_10_11()
74 t1=ABS(t1); in count1_2_3_4_5_6_7_8_9_10_11()
75 t2=ABS(t2); in count1_2_3_4_5_6_7_8_9_10_11()
76 t3=ABS(t3); in count1_2_3_4_5_6_7_8_9_10_11()
146 t0=ABS(t0); in count3_4_5_6_7_8_9_10_11()
147 t1=ABS(t1); in count3_4_5_6_7_8_9_10_11()
148 t2=ABS(t2); in count3_4_5_6_7_8_9_10_11()
149 t3=ABS(t3); in count3_4_5_6_7_8_9_10_11()
214 t0=ABS(t0); in count5_6_7_8_9_10_11()
215 t1=ABS(t1); in count5_6_7_8_9_10_11()
[all …]
/frameworks/base/tools/aapt2/
DPng.cpp230 #define ABS(a) ((a)<0?-(a):(a)) macro
267 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation); in analyze_image()
268 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation); in analyze_image()
269 maxGrayDeviation = MAX(ABS(bb - rr), maxGrayDeviation); in analyze_image()
/frameworks/base/tools/aapt/
DImages.cpp872 #define ABS(a) ((a)<0?-(a):(a)) macro
910 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation); in analyze_image()
911 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation); in analyze_image()
912 maxGrayDeviation = MAX(ABS(bb - rr), maxGrayDeviation); in analyze_image()
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
Dbasic_op.h33 #define ABS(a) ((a) >= 0) ? (a) : (-(a)) macro