66 wObjectPool* TilePool;
69 PTP_WORK* workObjects;
70 RFX_TILE_COMPOSE_WORK_PARAM* tileWorkParams;
78 wBufferPool* BufferPool;
81 PROFILER_DEFINE(prof_rfx_decode_rgb)
82 PROFILER_DEFINE(prof_rfx_decode_component)
83 PROFILER_DEFINE(prof_rfx_rlgr_decode)
84 PROFILER_DEFINE(prof_rfx_differential_decode)
85 PROFILER_DEFINE(prof_rfx_quantization_decode)
86 PROFILER_DEFINE(prof_rfx_dwt_2d_decode)
87 PROFILER_DEFINE(prof_rfx_ycbcr_to_rgb)
89 PROFILER_DEFINE(prof_rfx_encode_rgb)
90 PROFILER_DEFINE(prof_rfx_encode_component)
91 PROFILER_DEFINE(prof_rfx_rlgr_encode)
92 PROFILER_DEFINE(prof_rfx_differential_encode)
93 PROFILER_DEFINE(prof_rfx_quantization_encode)
94 PROFILER_DEFINE(prof_rfx_dwt_2d_encode)
95 PROFILER_DEFINE(prof_rfx_rgb_to_ycbcr)
96 PROFILER_DEFINE(prof_rfx_encode_format_rgb)
147 UINT32 codec_version;
163 UINT32 decodedHeaderBlocks;
164 UINT16 expectedDataBlockType;
168 void (*quantization_decode)(INT16* WINPR_RESTRICT buffer,
169 const UINT32* WINPR_RESTRICT quantization_values);
170 void (*quantization_encode)(INT16* WINPR_RESTRICT buffer,
171 const UINT32* WINPR_RESTRICT quantization_values);
172 void (*dwt_2d_decode)(INT16* WINPR_RESTRICT buffer, INT16* WINPR_RESTRICT dwt_buffer);
173 void (*dwt_2d_extrapolate_decode)(INT16* WINPR_RESTRICT src, INT16* WINPR_RESTRICT temp);
174 void (*dwt_2d_encode)(INT16* WINPR_RESTRICT buffer, INT16* WINPR_RESTRICT dwt_buffer);
175 int (*rlgr_decode)(RLGR_MODE mode,
const BYTE* WINPR_RESTRICT data, UINT32 data_size,
176 INT16* WINPR_RESTRICT buffer, UINT32 buffer_size);
177 int (*rlgr_encode)(RLGR_MODE mode,
const INT16* WINPR_RESTRICT data, UINT32 data_size,
178 BYTE* WINPR_RESTRICT buffer, UINT32 buffer_size);
181 RFX_CONTEXT_PRIV* priv;