mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
osxaudio: fix spelling in debug message
https://bugzilla.gnome.org//show_bug.cgi?id=747936
This commit is contained in:
parent
852088db8d
commit
36decd3b39
1 changed files with 2 additions and 2 deletions
|
@ -341,7 +341,7 @@ gst_core_audio_audio_device_get_channel_layout (AudioDeviceID device_id,
|
||||||
status = AudioObjectGetPropertyDataSize (device_id,
|
status = AudioObjectGetPropertyDataSize (device_id,
|
||||||
&channelLayoutAddress, 0, NULL, &propertySize);
|
&channelLayoutAddress, 0, NULL, &propertySize);
|
||||||
if (status != noErr) {
|
if (status != noErr) {
|
||||||
GST_ERROR ("failed to get prefered layout: %d", (int) status);
|
GST_ERROR ("failed to get preferred layout: %d", (int) status);
|
||||||
goto beach;
|
goto beach;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -350,7 +350,7 @@ gst_core_audio_audio_device_get_channel_layout (AudioDeviceID device_id,
|
||||||
status = AudioObjectGetPropertyData (device_id,
|
status = AudioObjectGetPropertyData (device_id,
|
||||||
&channelLayoutAddress, 0, NULL, &propertySize, layout);
|
&channelLayoutAddress, 0, NULL, &propertySize, layout);
|
||||||
if (status != noErr) {
|
if (status != noErr) {
|
||||||
GST_ERROR ("failed to get prefered layout: %d", (int) status);
|
GST_ERROR ("failed to get preferred layout: %d", (int) status);
|
||||||
goto failed;
|
goto failed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue