mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
goom/filters: Remove dead assignment. Value overwritten just after.
This commit is contained in:
parent
bf9c2067cf
commit
f6458e2c4c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue