Home | History | Annotate | Download | only in mux

Lines Matching refs:max_v

589 static WEBP_INLINE int clip(int v, int min_v, int max_v) {
590 return (v < min_v) ? min_v : (v > max_v) ? max_v : v;