mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
directsoundsrc: Fix compiler warning
https://bugzilla.gnome.org/show_bug.cgi?id=673414
This commit is contained in:
parent
32ba17cd0f
commit
01853745a3
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue