Merge pull request #2946 from metalefty/codec

Just log Image RemoteFX codec
This commit is contained in:
metalefty 2024-02-15 20:31:54 +09:00 committed by GitHub
commit 422cfb7a9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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]",