[FFmpeg-cvslog] postproc: simplify forwarding return codes
Michael Niedermayer
git at videolan.org
Thu Sep 18 14:55:15 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Sep 18 14:09:20 2014 +0200| [44dabf1f422b9d3be470be8ead8f15c802939f7f] | committer: Michael Niedermayer
postproc: simplify forwarding return codes
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=44dabf1f422b9d3be470be8ead8f15c802939f7f
---
libpostproc/postprocess.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index 3396f56..691c9bf 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;
}
More information about the ffmpeg-cvslog
mailing list