diff options
author | Marc-André Lureau <mlureau@flumotion.com> | 2010-05-17 13:54:03 +0200 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-06-15 01:25:32 +0100 |
commit | f7bf4cc90550878a1e73605043c8c77e31d3ec4b (patch) | |
tree | 213fa6ae5a19686343283d50d2c32c29999f2b3f /ext/raw1394 | |
parent | e6ec5cce2ebc86d1086cd068bdf8d19b8e499028 (diff) |
raw1394: remove useless last_time
It seems to me this code is useless: removing it.
https://bugzilla.gnome.org/show_bug.cgi?id=618871
Diffstat (limited to 'ext/raw1394')
-rw-r--r-- | ext/raw1394/gst1394clock.c | 1 | ||||
-rw-r--r-- | ext/raw1394/gst1394clock.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/ext/raw1394/gst1394clock.c b/ext/raw1394/gst1394clock.c index 6f1546adc..b7d4a8f17 100644 --- a/ext/raw1394/gst1394clock.c +++ b/ext/raw1394/gst1394clock.c @@ -82,7 +82,6 @@ gst_1394_clock_class_init (Gst1394ClockClass * klass) static void gst_1394_clock_init (Gst1394Clock * clock) { - clock->last_time = 0; GST_OBJECT_FLAG_SET (clock, GST_CLOCK_FLAG_CAN_SET_MASTER); } diff --git a/ext/raw1394/gst1394clock.h b/ext/raw1394/gst1394clock.h index 98150ff61..ab7594d07 100644 --- a/ext/raw1394/gst1394clock.h +++ b/ext/raw1394/gst1394clock.h @@ -58,7 +58,6 @@ struct _Gst1394Clock { raw1394handle_t handle; - GstClockTime last_time; guint32 cycle_timer_lo; guint32 cycle_timer_hi; }; |