-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jpeg: Fix wrong JPEC codec GUID #2402
base: devel
Are you sure you want to change the base?
Conversation
Both FreeRDP and NeutrinoRDP CODEC_GUID_JPEG define: 430C9EED-1BAF-4CE6-869ACB8B37B66237 However, for some reason, xrdp defines it as: 1BAF4CE6-9EED-430C-869ACB8B37B66237 JPEG codec wasn't working at all due to this for years. References: * https://github.com/FreeRDP/FreeRDP/blob/843680e543db0608f5d6d1973ca1ecd3d7a0b817/libfreerdp/core/capabilities.c#L101-L105 * https://github.com/neutrinolabs/NeutrinoRDP/blob/50211223318a02db05b57196d03342edb0207c32/libfreerdp-core/capabilities.c#L65-L66
Are you sure? To me it looks like NeutrinoRDP and xrdp are the same and FreeRDP is different. Although the comment in NeutrinoRDP is wrong.
|
Hmm, you seem to be correct. FreeRDP and NeutrinoRDP comment is wrong. |
What a mess.
|
I created neutrinolabs/NeutrinoRDP#28 to fix the comment for NeutrinoRDP |
@jsorg71 Jay, I think that using a different GUID from FreeRDP/NeutrinoRDP is not intentional but a mere mistake. Because both are very similar. The only difference is order. Can you have a look?
Both FreeRDP and NeutrinoRDP CODEC_GUID_JPEG define:
430C9EED-1BAF-4CE6-869ACB8B37B66237
However, for some reason, xrdp defines it as:
1BAF4CE6-9EED-430C-869ACB8B37B66237
JPEG codec wasn't working at all due to this for years.
References: