Avoid a virtual function call to set the decoder width
[openal-soft.git] / alc / backends / pulseaudio.h
blob6690fe8a9f6dcf5eda6a6ab9eb5b9b38ea028b15
1 #ifndef BACKENDS_PULSEAUDIO_H
2 #define BACKENDS_PULSEAUDIO_H
4 #include "base.h"
6 class PulseBackendFactory final : public BackendFactory {
7 public:
8 bool init() override;
10 bool querySupport(BackendType type) override;
12 std::string probe(BackendType type) override;
14 BackendPtr createBackend(DeviceBase *device, BackendType type) override;
16 static BackendFactory &getFactory();
19 #endif /* BACKENDS_PULSEAUDIO_H */