summaryrefslogtreecommitdiffstats
path: root/gst/goom/ifs.c
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2008-02-26 10:09:38 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2008-02-26 10:09:38 +0000
commitc34fa140d0c16ce688e42947a8668049ce22cdb7 (patch)
treea33f768a8cdc09adec4cc4e9a678b781ffa48adb /gst/goom/ifs.c
parentc99b95d8cb9f95cd0cec8ad736f139b6029d13c9 (diff)
configure.ac: Detect and indicate if GCC inline assembly syntax is available.
Original commit message from CVS: * configure.ac: Detect and indicate if GCC inline assembly syntax is available. * gst/goom/Makefile.am: * gst/goom/convolve_fx.c: * gst/goom/flying_stars_fx.c: * gst/goom/goom_config.h: * gst/goom/goom_core.c: * gst/goom/goomsl.c: * gst/goom/ifs.c: * gst/goom/mmx.c: * gst/goom/plugin_info.c: * gst/goom/xmmx.c: Fix various GCC-isms, and only build the inline assembly with compilers that support GCC inline assembly. Fix a couple of other warnings shown with Forte.
Diffstat (limited to 'gst/goom/ifs.c')
-rw-r--r--gst/goom/ifs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/goom/ifs.c b/gst/goom/ifs.c
index ccadaa7a..1a90e2dd 100644
--- a/gst/goom/ifs.c
+++ b/gst/goom/ifs.c
@@ -470,7 +470,7 @@ static void
ifs_update (PluginInfo * goomInfo, Pixel * data, Pixel * back, int increment,
IfsData * fx_data)
{
- static int couleur = 0xc0c0c0c0;
+ static unsigned int couleur = 0xc0c0c0c0;
static int v[4] = { 2, 4, 3, 2 };
static int col[4] = { 2, 4, 3, 2 };
@@ -486,7 +486,7 @@ ifs_update (PluginInfo * goomInfo, Pixel * data, Pixel * back, int increment,
IFSPoint *points;
int i;
- int couleursl = couleur;
+ unsigned int couleursl = couleur;
int width = goomInfo->screen.width;
int height = goomInfo->screen.height;