mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +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;
|
||||
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->sleep_cond = g_cond_new ();
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ struct _GstSunAudioSink {
|
|||
gint samples_written;
|
||||
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;
|
||||
GCond *sleep_cond;
|
||||
gboolean flushing;
|
||||
|
|
Loading…
Reference in a new issue