summaryrefslogtreecommitdiffstats
path: root/gst/goom/ifs.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2008-02-23 02:38:03 +0000
committerBastien Nocera <hadess@hadess.net>2008-02-23 02:38:03 +0000
commite8ef50ac94938ee230dd15642b86a332d365a1f4 (patch)
treea1c0d5bafacc5a855da8c7cc368275d0726434c1 /gst/goom/ifs.c
parenta7bc7485b1a4d7e1b1a12ff593ca4ccb1d59e466 (diff)
gst/goom/Makefile.am: Remove the warnings being disabled, fix linkage on x86, spotted by Sebastian Dröge
Original commit message from CVS: * gst/goom/Makefile.am: Remove the warnings being disabled, fix linkage on x86, spotted by Sebastian Dröge <slomo@circular-chaos.org> * 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)
Diffstat (limited to 'gst/goom/ifs.c')
-rw-r--r--gst/goom/ifs.c4
1 files changed, 3 insertions, 1 deletions
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;
}