FreeRDP
rfx_decode.h
1 
20 #ifndef FREERDP_LIB_CODEC_RFX_DECODE_H
21 #define FREERDP_LIB_CODEC_RFX_DECODE_H
22 
23 #include <winpr/wtypes.h>
24 
25 #include <freerdp/codec/rfx.h>
26 #include <freerdp/api.h>
27 
28 /* stride is bytes between rows in the output buffer. */
29 FREERDP_LOCAL BOOL rfx_decode_rgb(RFX_CONTEXT* WINPR_RESTRICT context,
30  const RFX_TILE* WINPR_RESTRICT tile,
31  BYTE* WINPR_RESTRICT rgb_buffer, UINT32 stride);
32 
33 #endif /* FREERDP_LIB_CODEC_RFX_DECODE_H */
Definition: rfx.h:52