From 01853745a3acccc94f53137327be6c4b8565df92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimo=20J=C3=A4rvi?= Date: Wed, 17 Oct 2012 22:54:28 +0300 Subject: [PATCH] directsoundsrc: Fix compiler warning https://bugzilla.gnome.org/show_bug.cgi?id=673414 --- sys/directsound/gstdirectsoundsrc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/directsound/gstdirectsoundsrc.c b/sys/directsound/gstdirectsoundsrc.c index a372681d5c..d7023fefe8 100644 --- a/sys/directsound/gstdirectsoundsrc.c +++ b/sys/directsound/gstdirectsoundsrc.c @@ -107,7 +107,7 @@ static GstCaps *gst_directsound_src_getcaps (GstBaseSrc * bsrc, GstCaps * filter); static guint gst_directsound_src_read (GstAudioSrc * asrc, - gpointer data, guint length); + gpointer data, guint length, GstClockTime * timestamp); static void gst_directsound_src_dispose (GObject * object); @@ -464,7 +464,8 @@ gst_directsound_src_unprepare (GstAudioSrc * asrc) /* return number of readed bytes */ static guint -gst_directsound_src_read (GstAudioSrc * asrc, gpointer data, guint length) +gst_directsound_src_read (GstAudioSrc * asrc, gpointer data, guint length, + GstClockTime * timestamp) { GstDirectSoundSrc *dsoundsrc;