mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
osxaudio: Minor spelling fix (unitialize -> uninitialize)
This commit is contained in:
parent
f107f7306b
commit
22f6d62796
3 changed files with 3 additions and 3 deletions
|
@ -248,7 +248,7 @@ gst_osx_audio_ring_buffer_release (GstAudioRingBuffer * buf)
|
|||
|
||||
osxbuf = GST_OSX_AUDIO_RING_BUFFER (buf);
|
||||
|
||||
gst_core_audio_unitialize (osxbuf->core_audio);
|
||||
gst_core_audio_uninitialize (osxbuf->core_audio);
|
||||
|
||||
g_free (buf->memory);
|
||||
buf->memory = NULL;
|
||||
|
|
|
@ -233,7 +233,7 @@ gst_core_audio_initialize (GstCoreAudio * core_audio,
|
|||
}
|
||||
|
||||
void
|
||||
gst_core_audio_unitialize (GstCoreAudio * core_audio)
|
||||
gst_core_audio_uninitialize (GstCoreAudio * core_audio)
|
||||
{
|
||||
buffer_list_free (core_audio->recBufferList);
|
||||
core_audio->recBufferList = NULL;
|
||||
|
|
|
@ -130,7 +130,7 @@ gboolean gst_core_audio_initialize (GstCoreAudio *core
|
|||
GstCaps *caps,
|
||||
gboolean is_passthrough);
|
||||
|
||||
void gst_core_audio_unitialize (GstCoreAudio *core_audio);
|
||||
void gst_core_audio_uninitialize (GstCoreAudio *core_audio);
|
||||
|
||||
gboolean gst_core_audio_start_processing (GstCoreAudio *core_audio);
|
||||
|
||||
|
|
Loading…
Reference in a new issue