[FFmpeg-cvslog] postprocess: fix another void returning void function.

Michael Niedermayer git at videolan.org
Sun Jun 10 18:27:16 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Jun 10 18:14:51 2012 +0200| [234d42f53bad912290c0c6a5a7fd886bc47007ce] | committer: Michael Niedermayer

postprocess: fix another void returning void function.

lets hope this makes suncc happy finally ...

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=234d42f53bad912290c0c6a5a7fd886bc47007ce
---

 libpostproc/postprocess.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index 1e31cee..62eb3b2 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -624,8 +624,10 @@ static inline void postProcess(const uint8_t src[], int srcStride, uint8_t dst[]
     PPMode *ppMode= (PPMode *)vm;
     c->ppMode= *ppMode; //FIXME
 
-    if(ppMode->lumMode & BITEXACT)
-        return postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);
+    if(ppMode->lumMode & BITEXACT) {
+        postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);
+        return;
+    }
 
     // Using ifs here as they are faster than function pointers although the
     // difference would not be measurable here but it is much better because



More information about the ffmpeg-cvslog mailing list