mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 13:38:48 +00:00
sunaudio: fix typo in comment
This commit is contained in:
parent
6c3e77964a
commit
53ee37b3d2
2 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ gst_sunaudiosink_init (GstSunAudioSink * sunaudiosink)
|
||||||
audiodev = DEFAULT_DEVICE;
|
audiodev = DEFAULT_DEVICE;
|
||||||
sunaudiosink->device = g_strdup (audiodev);
|
sunaudiosink->device = g_strdup (audiodev);
|
||||||
|
|
||||||
/* mutex and gconf used to control the write method */
|
/* mutex and gcond used to control the write method */
|
||||||
sunaudiosink->write_mutex = g_mutex_new ();
|
sunaudiosink->write_mutex = g_mutex_new ();
|
||||||
sunaudiosink->sleep_cond = g_cond_new ();
|
sunaudiosink->sleep_cond = g_cond_new ();
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,7 @@ struct _GstSunAudioSink {
|
||||||
gint samples_written;
|
gint samples_written;
|
||||||
guint bytes_per_sample;
|
guint bytes_per_sample;
|
||||||
|
|
||||||
/* mutex and gconf used to control the write method */
|
/* mutex and gcond used to control the write method */
|
||||||
GMutex *write_mutex;
|
GMutex *write_mutex;
|
||||||
GCond *sleep_cond;
|
GCond *sleep_cond;
|
||||||
gboolean flushing;
|
gboolean flushing;
|
||||||
|
|
Loading…
Reference in a new issue