summaryrefslogtreecommitdiffstats
path: root/gst/goom
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 18:46:12 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 18:51:29 +0200
commitf6458e2c4c3328c814eb0bd103d7388c654e6c84 (patch)
treeefb7b3a66e279ea58828d32d46a0b882f54de503 /gst/goom
parentbf9c2067cf181dd99f587ead89b2d820df3f6789 (diff)
goom/filters: Remove dead assignment. Value overwritten just after.
Diffstat (limited to 'gst/goom')
-rw-r--r--gst/goom/filters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/goom/filters.c b/gst/goom/filters.c
index 53351f1b..e33c4ebc 100644
--- a/gst/goom/filters.c
+++ b/gst/goom/filters.c
@@ -281,7 +281,7 @@ makeZoomBufferStripe (ZoomFilterFXWrapperData * data, int INTERLACE_INCR)
Uint x, y;
// Where (verticaly) to stop generating the buffer stripe
- int maxEnd = (data->interlace_start + INTERLACE_INCR);
+ int maxEnd;
// Ratio from pixmap to normalized coordinates
float ratio = 2.0f / ((float) data->prevX);