audio: Change the remaining "samples" in the ::delay() vfunc docs to "frames"

https://bugzilla.gnome.org/show_bug.cgi?id=748289
This commit is contained in:
Sebastian Dröge 2015-04-27 10:08:17 +02:00
parent 508ae9c2fc
commit 9e480d11a2
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@ struct _GstAudioSinkClass {
gboolean (*close) (GstAudioSink *sink);
/* write samples to the device */
gint (*write) (GstAudioSink *sink, gpointer data, guint length);
/* get number of samples queued in the device */
/* get number of frames queued in the device */
guint (*delay) (GstAudioSink *sink);
/* reset the audio device, unblock from a write */
void (*reset) (GstAudioSink *sink);

View file

@ -87,7 +87,7 @@ struct _GstAudioSrcClass {
/* read samples from the device */
guint (*read) (GstAudioSrc *src, gpointer data, guint length,
GstClockTime *timestamp);
/* get number of samples queued in the device */
/* get number of frames queued in the device */
guint (*delay) (GstAudioSrc *src);
/* reset the audio device, unblock from a write */
void (*reset) (GstAudioSrc *src);