mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
multiudpsink: return error message on windows too.
This commit is contained in:
parent
d4826d987c
commit
9d6adc8f3c
1 changed files with 13 additions and 1 deletions
|
@ -402,8 +402,20 @@ socket_last_error_code ()
|
|||
static gchar *
|
||||
socket_last_error_message ()
|
||||
{
|
||||
/* TODO: windows version using FormatMessage() */
|
||||
#ifdef G_OS_WIN32
|
||||
int errorcode = WSAGetLastError ();
|
||||
wchar_t buf[1024];
|
||||
DWORD result =
|
||||
FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
|
||||
NULL, errorcode, 0, buf, sizeof (buf) / sizeof (wchar_t), NULL);
|
||||
if (FAILED (result)) {
|
||||
return g_strdup ("failed to get error message from system");
|
||||
} else {
|
||||
return g_convert (buf, "UTF-16", "UTF-8", NULL, NULL, NULL);
|
||||
}
|
||||
#else
|
||||
return g_strdup (g_strerror (errno));
|
||||
#endif
|
||||
}
|
||||
|
||||
static GstFlowReturn
|
||||
|
|
Loading…
Reference in a new issue