From 44dabf1f422b9d3be470be8ead8f15c802939f7f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 18 Sep 2014 14:09:20 +0200 Subject: postproc: simplify forwarding return codes Signed-off-by: Michael Niedermayer --- libpostproc/postprocess.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'libpostproc/postprocess.c') diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 3396f56eb7..691c9bf9f0 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -278,10 +278,7 @@ static inline int isVertMinMaxOk_C(const uint8_t src[], int stride, int QP) static inline int horizClassify_C(const uint8_t src[], int stride, const PPContext *c) { if( isHorizDC_C(src, stride, c) ){ - if( isHorizMinMaxOk_C(src, stride, c->QP) ) - return 1; - else - return 0; + return isHorizMinMaxOk_C(src, stride, c->QP); }else{ return 2; } @@ -290,10 +287,7 @@ static inline int horizClassify_C(const uint8_t src[], int stride, const PPConte static inline int vertClassify_C(const uint8_t src[], int stride, const PPContext *c) { if( isVertDC_C(src, stride, c) ){ - if( isVertMinMaxOk_C(src, stride, c->QP) ) - return 1; - else - return 0; + return isVertMinMaxOk_C(src, stride, c->QP); }else{ return 2; } -- cgit v1.2.3