mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
pulsesink: Fix a couple error messages that mentioned incorrect function names.
Fixes #589459.
This commit is contained in:
parent
aa02444768
commit
4efca7b68e
1 changed files with 2 additions and 2 deletions
|
@ -1716,7 +1716,7 @@ no_buffer:
|
|||
info_failed:
|
||||
{
|
||||
GST_ELEMENT_ERROR (psink, RESOURCE, FAILED,
|
||||
("pa_stream_get_sink_input_info() failed: %s",
|
||||
("pa_context_get_sink_input_info() failed: %s",
|
||||
pa_strerror (pa_context_errno (pbuf->context))), (NULL));
|
||||
goto unlock;
|
||||
}
|
||||
|
@ -1789,7 +1789,7 @@ no_buffer:
|
|||
info_failed:
|
||||
{
|
||||
GST_ELEMENT_ERROR (psink, RESOURCE, FAILED,
|
||||
("pa_stream_get_sink_info() failed: %s",
|
||||
("pa_context_get_sink_info_by_index() failed: %s",
|
||||
pa_strerror (pa_context_errno (pbuf->context))), (NULL));
|
||||
goto unlock;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue