diff options
author | Raimo Järvi <raimo.jarvi@gmail.com> | 2012-10-17 22:54:28 +0300 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-10-17 21:01:39 +0100 |
commit | 01853745a3acccc94f53137327be6c4b8565df92 (patch) | |
tree | a72e03c230c7a8492c383409e58ae80aa7375548 /sys/directsound | |
parent | 32ba17cd0f37d407ab810858f356de386c50b7b9 (diff) | |
download | gstreamer-plugins-bad-01853745a3acccc94f53137327be6c4b8565df92.tar.gz |
directsoundsrc: Fix compiler warning
https://bugzilla.gnome.org/show_bug.cgi?id=673414
Diffstat (limited to 'sys/directsound')
-rw-r--r-- | sys/directsound/gstdirectsoundsrc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/directsound/gstdirectsoundsrc.c b/sys/directsound/gstdirectsoundsrc.c index a372681d5..d7023fefe 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; |