HomeSort by relevance Sort by last modified time
    Searched defs:CLIP3 (Results 1 - 3 of 3) sorted by null

  /external/libhevc/common/
ihevc_macros.h 40 #define CLIP3(x, min, max) (((x) > max) ? max :(((x) < min)? min:(x)))
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h 136 #define CLIP3(x,y,z) (((z) < (x)) ? (x) : (((z) > (y)) ? (y) : (z)))
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegDecoder.cpp 206 #define CLIP3(a, b, c) (MIN(b, MAX(a, c)))
207 #define CLIP255(a) (CLIP3(0, 255, (a)))
    [all...]

Completed in 112 milliseconds