Add "fast" variants for the bsinc resamplers
[openal-soft.git] / alc / backends / coreaudio.h
blob37b9ebe542a944165d09350579e30705e01e7ae9
1 #ifndef BACKENDS_COREAUDIO_H
2 #define BACKENDS_COREAUDIO_H
4 #include "backends/base.h"
6 struct CoreAudioBackendFactory final : public BackendFactory {
7 public:
8 bool init() override;
10 bool querySupport(BackendType type) override;
12 void probe(DevProbe type, std::string *outnames) override;
14 BackendPtr createBackend(ALCdevice *device, BackendType type) override;
16 static BackendFactory &getFactory();
19 #endif /* BACKENDS_COREAUDIO_H */