mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-17 12:55:53 +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:
|
info_failed:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (psink, RESOURCE, 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));
|
pa_strerror (pa_context_errno (pbuf->context))), (NULL));
|
||||||
goto unlock;
|
goto unlock;
|
||||||
}
|
}
|
||||||
|
@ -1789,7 +1789,7 @@ no_buffer:
|
||||||
info_failed:
|
info_failed:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (psink, RESOURCE, 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));
|
pa_strerror (pa_context_errno (pbuf->context))), (NULL));
|
||||||
goto unlock;
|
goto unlock;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue