mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
audioclock: Fix redundant definitions compiler warning
gstaudioclock.c:51:31: error: redundant redeclaration of 'gst_audio_clock_init' [-Werror=redundant-decls] G_DEFINE_TYPE (GstAudioClock, gst_audio_clock, GST_TYPE_SYSTEM_CLOCK); gstaudioclock.c:51:31: error: redundant redeclaration of 'gst_audio_clock_class_init' [-Werror=redundant-decls] G_DEFINE_TYPE (GstAudioClock, gst_audio_clock, GST_TYPE_SYSTEM_CLOCK);
This commit is contained in:
parent
cb70d3fdf0
commit
f5cf586e77
1 changed files with 0 additions and 3 deletions
|
@ -40,9 +40,6 @@
|
|||
GST_DEBUG_CATEGORY_STATIC (gst_audio_clock_debug);
|
||||
#define GST_CAT_DEFAULT gst_audio_clock_debug
|
||||
|
||||
static void gst_audio_clock_class_init (GstAudioClockClass * klass);
|
||||
static void gst_audio_clock_init (GstAudioClock * clock);
|
||||
|
||||
static void gst_audio_clock_dispose (GObject * object);
|
||||
|
||||
static GstClockTime gst_audio_clock_get_internal_time (GstClock * clock);
|
||||
|
|
Loading…
Reference in a new issue