edgetv: Remove unused but set height variable

GCC 4.6.x spits warnings about such variables.
This commit is contained in:
Robert Swain 2011-04-15 11:16:42 +02:00 committed by Tim-Philipp Müller
parent a0205ecd51
commit 358fa0bc7a

View file

@ -108,7 +108,7 @@ gst_edgetv_transform (GstBaseTransform * trans, GstBuffer * in, GstBuffer * out)
guint32 *src, *dest;
guint32 p, q;
guint32 v0, v1, v2, v3;
gint height, width, map_height, map_width;
gint width, map_height, map_width;
gint video_width_margin;
guint32 *map;
GstFlowReturn ret = GST_FLOW_OK;
@ -118,7 +118,6 @@ gst_edgetv_transform (GstBaseTransform * trans, GstBuffer * in, GstBuffer * out)
GST_OBJECT_LOCK (filter);
map = filter->map;
height = filter->height;
width = filter->width;
map_height = filter->map_height;
map_width = filter->map_width;