[codecs] fix enum warning

This commit is contained in:
Armin Novak 2023-12-05 21:42:59 +01:00 committed by David Fort
parent c7fec578a7
commit a65722166e

View File

@ -44,7 +44,7 @@ typedef enum
FREERDP_CODEC_PROGRESSIVE = 0x00000040,
FREERDP_CODEC_AVC420 = 0x00000080,
FREERDP_CODEC_AVC444 = 0x00000100,
FREERDP_CODEC_ALL = 0xFFFFFFFF
FREERDP_CODEC_ALL = 0x7FFFFFFF /* C enum types are restricted to int */
} FreeRDP_CodecFlags;
#ifdef __cplusplus