mirror of https://github.com/neutrinolabs/xrdp
Just log Image RemoteFX codec
This commit is contained in:
parent
4c2a7e893b
commit
9ad0d6abb6
|
@ -603,6 +603,12 @@ xrdp_caps_process_codecs(struct xrdp_rdp *self, struct stream *s, int len)
|
|||
g_memcpy(self->client_info.h264_prop, s->p, i1);
|
||||
self->client_info.h264_prop_len = i1;
|
||||
}
|
||||
/* other known codec but not supported yet */
|
||||
else if (g_memcmp(codec_guid, XR_CODEC_GUID_IMAGE_REMOTEFX, 16) == 0)
|
||||
{
|
||||
LOG(LOG_LEVEL_INFO, "xrdp_caps_process_codecs: Image RemoteFX(%s), codec id [%d], properties len [%d]",
|
||||
codec_guid_str, codec_id, codec_properties_length);
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG(LOG_LEVEL_WARNING, "xrdp_caps_process_codecs: unknown(%s), codec id [%d], properties len [%d]",
|
||||
|
|
Loading…
Reference in New Issue