From bb8b752553f88e6285e8e4c7e15853eed865dc28 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 4 Sep 2014 03:49:10 +0200 Subject: postproc: use FFMIN/FFMAX where appropriate Signed-off-by: Michael Niedermayer --- libpostproc/postprocess_template.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libpostproc/postprocess_template.c') diff --git a/libpostproc/postprocess_template.c b/libpostproc/postprocess_template.c index 0761c5027a..10b91c3d34 100644 --- a/libpostproc/postprocess_template.c +++ b/libpostproc/postprocess_template.c @@ -1073,11 +1073,11 @@ static inline void RENAME(doVertDefFilter)(uint8_t src[], int stride, PPContext d*= FFSIGN(-middleEnergy); if(q>0){ - d= d<0 ? 0 : d; - d= d>q ? q : d; + d = FFMAX(d, 0); + d = FFMIN(d, q); }else{ - d= d>0 ? 0 : d; - d= d