diff libvo/vo_xvidix.c @ 26755:46f0b4d34fa1

cosmetics: Remove useless parentheses from from return statements.
author diego
date Fri, 16 May 2008 08:33:27 +0000
parents 3aee342be929
children df448e1248b2
line wrap: on
line diff
--- a/libvo/vo_xvidix.c	Fri May 16 00:23:02 2008 +0000
+++ b/libvo/vo_xvidix.c	Fri May 16 08:33:27 2008 +0000
@@ -378,7 +378,7 @@
     if (vo_ontop)
         vo_x11_setlayer(mDisplay, vo_window, vo_ontop);
 
-    return (0);
+    return 0;
 }
 
 static void check_events(void)
@@ -418,7 +418,7 @@
     UNUSED(y);
     mp_msg(MSGT_VO, MSGL_FATAL,
            "[xvidix] error: didn't used vidix draw_slice!\n");
-    return (-1);
+    return -1;
 }
 
 static int draw_frame(uint8_t * src[])
@@ -426,12 +426,12 @@
     UNUSED(src);
     mp_msg(MSGT_VO, MSGL_FATAL,
            "[xvidix] error: didn't used vidix draw_frame!\n");
-    return (-1);
+    return -1;
 }
 
 static int query_format(uint32_t format)
 {
-    return (vidix_query_fourcc(format));
+    return vidix_query_fourcc(format);
 }
 
 static void uninit(void)
@@ -462,12 +462,12 @@
     }
 
     if (!vo_init())
-        return (-1);
+        return -1;
 
     if (vidix_preinit(vidix_name, &video_out_xvidix) != 0)
-        return (1);
+        return 1;
 
-    return (0);
+    return 0;
 }
 
 static int control(uint32_t request, void *data, ...)