summaryrefslogtreecommitdiff
path: root/gst/effectv/gstwarp.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/effectv/gstwarp.c')
-rw-r--r--gst/effectv/gstwarp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c
index 72c4eb03d..e5eb7580a 100644
--- a/gst/effectv/gstwarp.c
+++ b/gst/effectv/gstwarp.c
@@ -118,7 +118,7 @@ static void
initSinTable (void)
{
gint32 *tptr, *tsinptr;
- double i;
+ gint i;
tsinptr = tptr = sintable;
@@ -132,7 +132,7 @@ initSinTable (void)
static void
initOffsTable (GstWarpTV * filter)
{
- int y;
+ gint y;
for (y = 0; y < filter->height; y++) {
filter->offstable[y] = y * filter->width;
@@ -143,11 +143,11 @@ static void
initDistTable (GstWarpTV * filter)
{
gint32 halfw, halfh, *distptr;
-
+ gint x, y;
#ifdef PS2
- float x, y, m;
+ float m;
#else
- double x, y, m;
+ float m;
#endif
halfw = filter->width >> 1;