Merge pull request #1160 from bmiklautz/othercodecs

core/capabilities: Enable other codecs when RemoteFX is used
This commit is contained in:
Marc-André Moreau 2013-04-04 14:22:10 -07:00
commit 0161689ab0
1 changed files with 1 additions and 1 deletions

View File

@ -2506,7 +2506,7 @@ void rdp_write_rfx_client_capability_container(wStream* s, rdpSettings* settings
UINT32 captureFlags;
BYTE codecMode;
captureFlags = settings->RemoteFxOnly ? CARDP_CAPS_CAPTURE_NON_CAC : 0;
captureFlags = settings->RemoteFxOnly ? 0 : CARDP_CAPS_CAPTURE_NON_CAC;
codecMode = settings->RemoteFxCodecMode;
stream_write_UINT16(s, 49); /* codecPropertiesLength */