Skip to content

Commit

Permalink
Merge pull request neutrinolabs#2952 from metalefty/v0.10-just-log-im…
Browse files Browse the repository at this point in the history
…age-remotefx

[v0.10] Just log Image RemoteFX codec
  • Loading branch information
metalefty authored Feb 20, 2024
2 parents 6272ae6 + 8a1e6f7 commit 12ff5d4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libxrdp/xrdp_caps.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]",
Expand Down

0 comments on commit 12ff5d4

Please sign in to comment.