Index: gst/goom/convolve_fx.c
===================================================================
RCS file: /cvs/gstreamer/gst-plugins-good/gst/goom/convolve_fx.c,v
retrieving revision 1.5
diff -u -r1.5 convolve_fx.c
--- gst/goom/convolve_fx.c	16 Apr 2008 10:31:14 -0000	1.5
+++ gst/goom/convolve_fx.c	17 Apr 2008 17:46:23 -0000
@@ -9,6 +9,9 @@
 //#define CONV_MOTIF_W 32
 //#define CONV_MOTIF_WMASK 0x1f
 
+/* Define if you like the wacky GOOM logo: */
+#undef DRAW_MOTIF
+
 #define CONV_MOTIF_W 128
 #define CONV_MOTIF_WMASK 0x7f
 
@@ -303,10 +306,15 @@
     }
   }
 
+#ifdef DRAW_MOTIF
   if ((ff > 0.98f) && (ff < 1.02f))
     memcpy (dest, src, info->screen.size * sizeof (Pixel));
   else
     create_output_with_brightness (_this, src, dest, info, iff);
+#else
+    memcpy (dest, src, info->screen.size * sizeof (Pixel));
+#endif
+
 /*
 //   Benching suite...
    {

