visual: remove next_ts variable

We can remove the next_ts variable as we don't use it anymore.
This commit is contained in:
Wim Taymans 2009-05-13 19:27:54 +02:00
parent 6eb549ab92
commit 117686abc5

View file

@ -47,7 +47,6 @@ struct _GstVisual
/* pads */ /* pads */
GstPad *sinkpad; GstPad *sinkpad;
GstPad *srcpad; GstPad *srcpad;
GstClockTime next_ts;
GstSegment segment; GstSegment segment;
/* libvisual stuff */ /* libvisual stuff */
@ -256,7 +255,6 @@ gst_visual_dispose (GObject * object)
static void static void
gst_visual_reset (GstVisual * visual) gst_visual_reset (GstVisual * visual)
{ {
visual->next_ts = -1;
gst_adapter_clear (visual->adapter); gst_adapter_clear (visual->adapter);
gst_segment_init (&visual->segment, GST_FORMAT_UNDEFINED); gst_segment_init (&visual->segment, GST_FORMAT_UNDEFINED);