20#ifndef FREERDP_LIB_CODEC_RFX_NEON_H
21#define FREERDP_LIB_CODEC_RFX_NEON_H
23#include <winpr/sysinfo.h>
25#include <freerdp/codec/rfx.h>
26#include <freerdp/api.h>
28FREERDP_LOCAL
void rfx_init_neon_int(RFX_CONTEXT* WINPR_RESTRICT context);
29static inline void rfx_init_neon(RFX_CONTEXT* WINPR_RESTRICT context)
31 if (!IsProcessorFeaturePresent(PF_ARM_NEON_INSTRUCTIONS_AVAILABLE))
34 rfx_init_neon_int(context);