From e8ef50ac94938ee230dd15642b86a332d365a1f4 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Sat, 23 Feb 2008 02:38:03 +0000 Subject: gst/goom/Makefile.am: Remove the warnings being disabled, fix linkage on x86, spotted by Sebastian Dröge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original commit message from CVS: * gst/goom/Makefile.am: Remove the warnings being disabled, fix linkage on x86, spotted by Sebastian Dröge * gst/goom/convolve_fx.c (convolve_init), (create_output_with_brightness), (convolve_apply): * gst/goom/filters.c (zoomFilterVisualFXWrapper_create): * gst/goom/goomsl.c: * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create): * gst/goom/plugin_info.c: * gst/goom/tentacle3d.c (tentacle_fx_create): Fix warnings, and disable the motifs in the convolve_fx plugin (they were causing warnings, and they were just "Goom" in funny letterring) --- gst/goom/ifs.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gst/goom/ifs.c') diff --git a/gst/goom/ifs.c b/gst/goom/ifs.c index 8e72548f..ccadaa7a 100644 --- a/gst/goom/ifs.c +++ b/gst/goom/ifs.c @@ -482,7 +482,7 @@ ifs_update (PluginInfo * goomInfo, Pixel * data, Pixel * back, int increment, static int cycle = 0; int cycle10; - int nbpt; + int nbpt = 0; IFSPoint *points; int i; @@ -772,5 +772,7 @@ ifs_visualfx_create (void) vfx.init = ifs_vfx_init; vfx.free = ifs_vfx_free; vfx.apply = ifs_vfx_apply; + vfx.fx_data = NULL; + vfx.params = NULL; return vfx; } -- cgit