diff libmpcodecs/vf_tile.c @ 26754:63630c09e237

cosmetics: Remove pointless parentheses from return calls.
author diego
date Fri, 16 May 2008 00:23:02 +0000
parents 00fff9a3b735
children d5d66bff938a
line wrap: on
line diff
--- a/libmpcodecs/vf_tile.c	Fri May 16 00:13:03 2008 +0000
+++ b/libmpcodecs/vf_tile.c	Fri May 16 00:23:02 2008 +0000
@@ -172,7 +172,7 @@
     }
     else {
         /* Skip the frame */
-        return(0);
+        return 0;
     }
 }
 
@@ -237,7 +237,7 @@
         }
         else if (**s != '\0') {
             /* Error, we got some wrong char */
-            return(1);
+            return 1;
         }
     }
     else {
@@ -245,7 +245,7 @@
     }
 
     *rt = t;
-    return(0);
+    return 0;
 
 }
 
@@ -263,7 +263,7 @@
     /* Private data */
     vf->priv = p = calloc(1, sizeof(struct vf_priv_s));
     if (p == NULL) {
-        return(0);
+        return 0;
     }
 
     if (args == NULL) {
@@ -280,7 +280,7 @@
 
     if (er) {
         mp_msg(MSGT_VFILTER, MSGL_ERR, MSGTR_MPCODECS_ErrorParsingArgument);
-        return(0);
+        return 0;
     }
     /* Load some default */
     if ((p->xytile <= 0) || (p->xytile > p->xtile * p->ytile)) {