Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
Dproresdsp.c30 #define CLIP_MIN (1 << 2) ///< minimum value for clipping resulting pixels macro
31 #define CLIP_MAX_10 (1 << 10) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
32 #define CLIP_MAX_12 (1 << 12) - CLIP_MIN - 1 ///< maximum value for clipping resulting pixels
34 #define CLIP_10(x) (av_clip((x), CLIP_MIN, CLIP_MAX_10))
35 #define CLIP_12(x) (av_clip((x), CLIP_MIN, CLIP_MAX_12))