audioclock: No need to get the parent class in class_init, G_DEFINE_TYPE does that for us

This commit is contained in:
Sebastian Dröge 2014-12-13 16:04:40 +01:00
parent 41f1ec1c81
commit cb70d3fdf0

View file

@ -59,8 +59,6 @@ gst_audio_clock_class_init (GstAudioClockClass * klass)
gobject_class = (GObjectClass *) klass;
gstclock_class = (GstClockClass *) klass;
parent_class = g_type_class_peek_parent (klass);
gobject_class->dispose = gst_audio_clock_dispose;
gstclock_class->get_internal_time = gst_audio_clock_get_internal_time;