goom/filters: Remove dead assignment. Value overwritten just after.
authorEdward Hervey <bilboed@bilboed.com>
Sat, 18 Apr 2009 16:46:12 +0000 (18:46 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 18 Apr 2009 16:51:29 +0000 (18:51 +0200)
gst/goom/filters.c

index 53351f1..e33c4eb 100644 (file)
@@ -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);